/* ═══════════════════════════════════════════════════════════════
   DESIGN-TOKENS
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg:        #0A0D0B;
  --bg-2:      #0F1411;
  --bg-card:   #131A14;
  --bg-elev:   #182019;
  --lime:      #B8E834;
  --lime-soft: #8FB02E;
  --lime-glow: rgba(184, 232, 52, 0.15);
  --orange:      #FF8A1F;       /* Handwerker-Akzent — kräftiges Bauhelm-Orange */
  --orange-soft: #C76A14;
  --orange-glow: rgba(255, 138, 31, 0.15);
  --cream:     #EDEADD;
  --muted:     #8A8D80;
  --warn:      #E85D4F;
  --line:      rgba(237, 234, 221, 0.08);
  --line-2:    rgba(237, 234, 221, 0.16);

  --display: 'Anton', 'Impact', sans-serif;
  --body:    'Inter', system-ui, sans-serif;
  --serif:   'Fraunces', Georgia, serif;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  color-scheme: dark;
  accent-color: var(--lime);
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  /* iOS Safari Bug: overflow-x: hidden bricht position: sticky.
     overflow-x: clip macht dasselbe ohne Bug (Safari 16+ unterstützt).
     Fallback: hidden für sehr alte Browser (akzeptiert den Bug). */
  overflow-x: hidden;
  padding-bottom: 76px; /* Platz für Mobile Sticky-CTA */
}
@supports (overflow: clip) {
  body { overflow-x: clip; }
}
@media (min-width: 880px) { body { padding-bottom: 0; } }
a { color: inherit; text-decoration: none; }
img, picture { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ═══════════════════════════════════════════════════════════════
   TYPO
   ═══════════════════════════════════════════════════════════════ */
.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
}
h1.display { font-size: clamp(3.2rem, 11vw, 8rem); }
h2.display { font-size: clamp(2.4rem, 7vw, 5.2rem); }
h3.display { font-size: clamp(1.8rem, 4vw, 3rem); }

h2:not(.display), h3:not(.display) {
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h2:not(.display) { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3:not(.display) { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.it {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.lime { color: var(--lime); }
.warn { color: var(--warn); }

.kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--lime);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(237, 234, 221, 0.78);
  max-width: 56ch;
  line-height: 1.55;
}

/* Brushstroke underline (matches campaign images) */
.brush {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.brush::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--lime);
  border-radius: 50% 50% 50% 50% / 100% 100% 0 0;
  transform: skew(-8deg) rotate(-1.2deg);
  opacity: 0.85;
  z-index: -1;
}
.brush.warn::after { background: var(--warn); }
.display .brush { line-height: 1.15; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  white-space: nowrap;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%,
    transparent 100%);
  transform: translateX(-110%);
  transition: transform 0.7s ease;
  pointer-events: none;
  z-index: 1;
}
.btn:hover::before {
  transform: translateX(110%);
}
.btn > * { position: relative; z-index: 2; }

.btn-primary {
  background: linear-gradient(135deg, var(--lime) 0%, #C8F454 50%, var(--lime) 100%);
  background-size: 200% 200%;
  color: #0A0D0B;
  box-shadow: 0 4px 14px rgba(184, 232, 52, 0.35),
              0 0 0 0 rgba(184, 232, 52, 0.4);
  animation: btnPulse 2.5s ease-in-out infinite;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  background-position: 100% 100%;
  box-shadow: 0 12px 32px rgba(184, 232, 52, 0.55),
              0 0 0 6px rgba(184, 232, 52, 0.15);
  animation-play-state: paused;
}
.btn-primary:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.1s;
}
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(184, 232, 52, 0.35), 0 0 0 0 rgba(184, 232, 52, 0.4); }
  50%      { box-shadow: 0 4px 18px rgba(184, 232, 52, 0.5),  0 0 0 8px rgba(184, 232, 52, 0); }
}

.btn-ghost {
  border: 1.5px solid var(--line-2);
  color: var(--cream);
  background: rgba(237, 234, 221, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(184, 232, 52, 0.08);
  box-shadow: 0 8px 24px rgba(184, 232, 52, 0.18),
              inset 0 0 0 1px rgba(184, 232, 52, 0.3);
}
.btn-ghost:active {
  transform: translateY(-1px);
  transition-duration: 0.1s;
}

.btn-arrow::after {
  content: "→";
  display: inline-block;
  margin-left: 2px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-weight: 700;
}
.btn-arrow:hover::after {
  transform: translateX(7px);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
  .btn::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10, 13, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  padding: 4px 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 8px rgba(184, 232, 52, 0.35));
  animation: logoSpin 12s linear infinite;
  transform-origin: center center;
  will-change: transform;
}
@keyframes logoSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-mark { animation: none !important; }
}
.logo em { color: var(--lime); font-style: italic; font-weight: 500; font-family: var(--serif); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  opacity: 0.78;
  transition: opacity 0.25s ease, color 0.25s ease;
  position: relative;
  padding: 4px 0;
  font-weight: 500;
}
.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lime);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
  box-shadow: 0 0 8px rgba(184, 232, 52, 0.5);
}
.nav-links a:hover,
.nav-links a.is-active {
  opacity: 1;
  color: var(--lime);
}
.nav-links a:hover::before,
.nav-links a.is-active::before {
  width: 100%;
  left: 0;
}
.nav-links a.is-active { font-weight: 600; }

/* Nav-CTA mit lebendigerem Hover */
.nav-cta {
  padding: 10px 22px;
  font-size: 0.88rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
}
.nav-cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(184, 232, 52, 0.4);
}
.nav-cta:hover::before { left: 100%; }

/* Logo: leichtes Hover-Lift */
.nav .logo {
  transition: transform 0.3s ease;
}
.nav .logo:hover { transform: translateX(2px); }
.nav .logo:hover .logo-mark {
  filter: drop-shadow(0 0 16px rgba(184, 232, 52, 0.6));
}

/* Nav-Sticky-Effekt: Bei Scroll dunkler werden + Backdrop-Blur */
.nav.is-scrolled {
  background: rgba(10, 13, 11, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(184, 232, 52, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
}
.nav-toggle span { position: relative; transition: background 0.2s; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  transition: transform 0.25s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

@media (max-width: 880px) {
  /* ── Mobile-Nav: KOMPLETT robust, kein backdrop-filter (iOS Safari Bug) ── */
  .nav {
    background: rgb(10, 13, 11) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav.is-scrolled {
    background: rgb(10, 13, 11) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-inner {
    padding: 16px var(--pad);
    height: auto;
    min-height: 0;
  }
  .logo {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 8px 0;
    height: auto;
    flex-shrink: 0;
  }
  .logo-mark {
    width: 28px;
    height: 28px;
    animation: none !important;
    filter: drop-shadow(0 0 6px rgba(184, 232, 52, 0.5));
  }
  .fb-back-link { display: none; }
  .nav-links {
    position: fixed;
    inset: 70px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgb(10, 13, 11);
    border-bottom: 1px solid var(--line-2);
    padding: 16px var(--pad) 28px;
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    z-index: 90;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }
  .nav-links a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
    opacity: 1;
    text-align: left;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links { transform: translateY(0); }
  .nav.open .nav-toggle span { background: transparent; }
  .nav.open .nav-toggle span::before { transform: rotate(45deg) translate(5px, 5px); }
  .nav.open .nav-toggle span::after  { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  padding: clamp(56px, 12vh, 120px) 0 clamp(48px, 8vh, 96px);
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      rgba(10, 13, 11, 0.88) 0%,
      rgba(10, 13, 11, 0.72) 32%,
      rgba(10, 13, 11, 0.4) 58%,
      rgba(10, 13, 11, 0.2) 85%,
      rgba(10, 13, 11, 0.45) 100%
    ),
    url('bilder/hero-bg.jpg') center / cover no-repeat,
    var(--bg);
  /* Moderne Browser: WebP-Variante (89% kleiner) */
  background-image:
    linear-gradient(180deg,
      rgba(10, 13, 11, 0.85) 0%,
      rgba(10, 13, 11, 0.6) 25%,
      rgba(10, 13, 11, 0.4) 58%,
      rgba(10, 13, 11, 0.2) 85%,
      rgba(10, 13, 11, 0.45) 100%
    ),
    image-set(url('bilder/hero-bg.webp') type('image/webp'), url('bilder/hero-bg.jpg') type('image/jpeg'));
}
@media (max-width: 760px) {
  .hero {
    background:
      linear-gradient(180deg,
        rgba(10, 13, 11, 0.92) 0%,
        rgba(10, 13, 11, 0.85) 25%,
        rgba(10, 13, 11, 0.7) 50%,
        rgba(10, 13, 11, 0.88) 80%,
        rgba(10, 13, 11, 0.95) 100%
      ),
      url('bilder/hero-bg-mobile.jpg') center / cover no-repeat,
      var(--bg);
    /* Moderne Browser: WebP-Variante */
    background-image:
      linear-gradient(180deg,
        rgba(10, 13, 11, 0.92) 0%,
        rgba(10, 13, 11, 0.85) 25%,
        rgba(10, 13, 11, 0.7) 50%,
        rgba(10, 13, 11, 0.88) 80%,
        rgba(10, 13, 11, 0.95) 100%
      ),
      image-set(url('bilder/hero-bg-mobile.webp') type('image/webp'), url('bilder/hero-bg-mobile.jpg') type('image/jpeg'));
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--lime-glow), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { margin-bottom: 32px; }
.hero h1 .line { display: block; }
.hero h1 .green { color: var(--orange); }
.hero p.lede {
  margin-bottom: 36px;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
  justify-content: flex-start;
}
.trust-item {
  min-width: 120px;
  text-align: center;
  flex: 1 1 120px;
}
.trust-num {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--lime);
  line-height: 0.95;
  display: block;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 24px rgba(184, 232, 52, 0.25);
}
.trust-label {
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: 0.02em;
  font-weight: 500;
  display: block;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION SHELL
   ═══════════════════════════════════════════════════════════════ */
section { padding: clamp(72px, 12vh, 128px) 0; position: relative; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2 { max-width: 14ch; }
.section-head .lede { color: rgba(237, 234, 221, 0.7); }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
}

/* ═══════════════════════════════════════════════════════════════
   PROBLEM-SEKTION (mit Chaos-Bild)
   ═══════════════════════════════════════════════════════════════ */
.problem-hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 56px;
  aspect-ratio: 16 / 9;
}
@media (max-width: 760px) { .problem-hero { aspect-ratio: 3 / 4; } }
.problem-hero img { width: 100%; height: 100%; object-fit: cover; }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.problem-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.problem-num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--warn);
  line-height: 0.95;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 30px rgba(232, 93, 79, 0.25);
}
.problem-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.problem-card p { font-size: 0.93rem; color: rgba(237, 234, 221, 0.72); }

/* ═══════════════════════════════════════════════════════════════
   LÖSUNGS-ÜBERSICHT (3 Säulen)
   ═══════════════════════════════════════════════════════════════ */
.pillars {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  background: var(--bg);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: background 0.3s;
}
.pillar:hover { background: var(--bg-card); }
.pillar-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--lime);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: rgba(237, 234, 221, 0.7); margin-bottom: 24px; flex: 1; }
.pillar-link {
  font-size: 0.88rem;
  color: var(--lime);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-link::after { content: "→"; transition: transform 0.2s; }
.pillar:hover .pillar-link::after { transform: translateX(4px); }
@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { min-height: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   VERLUST-RECHNER
   ═══════════════════════════════════════════════════════════════ */
.calc-section { background: var(--bg); }
.calc {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .calc { grid-template-columns: 1fr; gap: 32px; }
}
.calc-input { margin-bottom: 28px; }
.calc-input:last-child { margin-bottom: 0; }
.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 16px;
}
.calc-label-row label { font-size: 0.92rem; color: rgba(237, 234, 221, 0.85); }
.calc-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--lime);
}
input[type=range] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  height: 28px;
}
input[type=range]::-webkit-slider-runnable-track { height: 2px; background: var(--line-2); border-radius: 2px; }
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  margin-top: -10px;
  cursor: pointer;
  box-shadow: 0 0 0 6px var(--lime-glow);
}
input[type=range]::-moz-range-track { height: 2px; background: var(--line-2); border-radius: 2px; }
input[type=range]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 6px var(--lime-glow);
}
.calc-result {
  text-align: center;
  padding: 32px 24px;
  border-left: 1px solid var(--line);
}
@media (max-width: 880px) {
  .calc-result { border-left: none; border-top: 1px solid var(--line); padding-top: 32px; }
}
.calc-result-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 600;
}
.calc-amount {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 5rem);
  color: var(--lime);
  line-height: 0.95;
  margin-bottom: 6px;
}
.calc-period { color: var(--muted); margin-bottom: 22px; font-size: 0.95rem; }
.calc-year {
  padding: 14px 20px;
  background: rgba(184, 232, 52, 0.08);
  border: 1px solid rgba(184, 232, 52, 0.2);
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.calc-year strong { color: var(--lime); font-weight: 600; }
.calc-disclaimer {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════════
   SCENES (6 Lösungs-Szenen mit Vollbild-Kampagnen-Bildern)
   ═══════════════════════════════════════════════════════════════ */
.scenes { background: var(--bg-2); }
.scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.scene:last-child { margin-bottom: 0; }
.scene-img {
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
}
.scene-img img,
.scene-img picture {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.scene-text {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.scene-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--lime);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.scene-text h3 { margin-bottom: 12px; }
.scene-text p { color: rgba(237, 234, 221, 0.78); margin-bottom: 20px; }
.scene-bullets { list-style: none; }
.scene-bullets li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  padding: 8px 0;
  color: rgba(237, 234, 221, 0.85);
}
.scene-bullets li::before {
  content: "→";
  color: var(--lime);
  flex-shrink: 0;
}
.scene.alt { grid-template-columns: 1fr 1fr; direction: rtl; }
.scene.alt > * { direction: ltr; }
@media (max-width: 880px) {
  .scene, .scene.alt { grid-template-columns: 1fr; direction: ltr; }
  .scene-img { aspect-ratio: 3 / 4; }
}

/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF (Google-Bewertung + Glanzwerk Case Study)
   ═══════════════════════════════════════════════════════════════ */
.proof { background: var(--bg); position: relative; }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 880px) { .proof-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--lime);
  border-radius: var(--radius) 0 0 var(--radius);
}
.review-source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.review-google {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  background: linear-gradient(135deg, #4285F4 0%, #34A853 33%, #FBBC04 66%, #EA4335 100%);
  color: white;
  font-size: 1rem;
  font-family: serif;
  flex-shrink: 0;
  overflow: hidden;
}
img.review-google {
  background: var(--cream);
  object-fit: cover;
  padding: 0;
  border: 1.5px solid rgba(184, 232, 52, 0.3);
}
.review-meta { flex: 1; }
.review-name { font-weight: 600; font-size: 0.95rem; }
.review-time { font-size: 0.8rem; color: var(--muted); }
.review-stars { display: flex; gap: 2px; color: var(--lime); font-size: 1.1rem; }
.review-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--cream);
  flex: 1;
  margin-bottom: 24px;
}
.review-text::before { content: "„"; color: var(--lime); font-size: 2rem; line-height: 0; vertical-align: -0.4em; margin-right: 4px; }
.review-text::after { content: "."; }
.review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-score {
  font-family: var(--display);
  font-size: 2.2rem;
  color: var(--lime);
  line-height: 1;
}
.review-score-label {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
}
.case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--lime);
  color: var(--bg);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  align-self: flex-start;
}
.case-card h3 { margin-bottom: 6px; font-size: 1.4rem; }
.case-domain {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--lime);
  margin-bottom: 24px;
  font-weight: 500;
}
.case-domain a { border-bottom: 1px solid var(--line-2); padding-bottom: 1px; }
.case-domain a:hover { border-color: var(--lime); }
.case-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.case-state {
  padding: 16px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.case-state-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.case-state-value { font-size: 0.95rem; line-height: 1.4; }
.case-state.before .case-state-value { color: rgba(237, 234, 221, 0.6); }
.case-state.after { border-color: var(--lime); background: rgba(184, 232, 52, 0.04); }
.case-state.after .case-state-value { color: var(--cream); font-weight: 500; }
.case-card p { color: rgba(237, 234, 221, 0.78); font-size: 0.93rem; margin-bottom: 24px; flex: 1; }

.proof-cta {
  margin-top: 56px;
  text-align: center;
}
.proof-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(237, 234, 221, 0.78);
  max-width: 50ch;
  margin: 0 auto 20px;
}

/* ═══════════════════════════════════════════════════════════════
   STELLENANZEIGEN-TEASER
   ═══════════════════════════════════════════════════════════════ */
.stellen {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stellen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .stellen-grid { grid-template-columns: 1fr; } }
.stellen-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
@media (min-width: 881px) { .stellen-img { aspect-ratio: 4 / 5; } }
.stellen-img img { width: 100%; height: 100%; object-fit: cover; }
.stellen-text h2 { margin-bottom: 16px; }
.stellen-text p { color: rgba(237, 234, 221, 0.78); margin-bottom: 24px; }
.stellen-features {
  list-style: none;
  margin: 24px 0 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.stellen-features li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.93rem;
  color: rgba(237, 234, 221, 0.85);
}
.stellen-features li::before { content: "→"; color: var(--lime); }

/* ═══════════════════════════════════════════════════════════════
   ÜBER KEVIN
   ═══════════════════════════════════════════════════════════════ */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; } }
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
}
.about-card h2 { margin-bottom: 16px; }
.about-card p { margin-bottom: 16px; color: rgba(237, 234, 221, 0.85); }
.about-card p:last-child { margin-bottom: 0; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--lime);
  line-height: 0.95;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  text-shadow: 0 0 24px rgba(184, 232, 52, 0.2);
}
.about-stat-label {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.78;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.about-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-top: 24px;
}
.about-aside .kicker { margin-top: 8px; }
.about-aside h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }

/* ─── Kevin Frame: Photo wrapped in logo's glowing rings ─── */
.kevin-frame {
  position: relative;
  width: clamp(220px, 28vw, 280px);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kevin-halo {
  position: absolute;
  inset: -28%;
  background: url('bilder/logo.png') center/contain no-repeat;
  opacity: 0.9;
  z-index: 0;
  animation: haloPulse 6s ease-in-out infinite;
  pointer-events: none;
}
.kevin-photo {
  position: relative;
  z-index: 1;
  width: 88%;
  height: 88%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  /* Slight warmth + lime tint via combined filters; keeps face natural */
  filter: grayscale(85%) sepia(28%) hue-rotate(15deg) saturate(0.9) brightness(1.02) contrast(1.05);
  border: 3px solid rgba(184, 232, 52, 0.55);
  box-shadow:
    0 0 0 4px rgba(10, 13, 11, 0.85),
    0 0 60px 8px rgba(184, 232, 52, 0.18);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.kevin-photo:hover {
  filter: grayscale(60%) sepia(20%) hue-rotate(15deg) saturate(1) brightness(1.05) contrast(1.05);
  transform: scale(1.02);
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .kevin-halo { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   PAKETE TEASER
   ═══════════════════════════════════════════════════════════════ */
.pakete { background: var(--bg-2); border-top: 1px solid var(--line); }
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .pakete-grid { grid-template-columns: 1fr; } }

.paket {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.paket:hover { border-color: var(--line-2); transform: translateY(-3px); }
.paket.featured {
  border-color: var(--lime);
  background: linear-gradient(180deg, rgba(184, 232, 52, 0.04) 0%, var(--bg-card) 100%);
}
.paket-badge {
  position: absolute;
  top: -10px; left: 28px;
  background: var(--lime);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.paket-name {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime);
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 0;
  text-shadow: 0 0 16px rgba(184, 232, 52, 0.35);
}
.paket h3 { margin-bottom: 14px; }
.paket-price {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 6px;
}
.paket-period { color: var(--muted); font-size: 0.88rem; margin-bottom: 24px; }
.paket-features {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}
.paket-features li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(237, 234, 221, 0.85);
  border-bottom: 1px solid var(--line);
}
.paket-features li::before { content: "✓"; color: var(--lime); flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════════════ */
.faq { background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  list-style: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--lime); }
.faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--lime);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin-top: 16px;
  color: rgba(237, 234, 221, 0.78);
  line-height: 1.6;
  max-width: 70ch;
}

/* ═══════════════════════════════════════════════════════════════
   KONTAKT
   ═══════════════════════════════════════════════════════════════ */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--lime-glow), transparent 60%);
  pointer-events: none;
  filter: blur(60px);
}
.contact-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.contact h2 { margin-bottom: 20px; }
.contact .lede { margin: 0 auto 36px; }
.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 760px) { .contact-channels { grid-template-columns: 1fr; } }

.channel {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.channel:hover { border-color: var(--lime); transform: translateY(-3px); }
.channel-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--lime);
}
.channel-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px; }
.channel-value { font-weight: 600; font-size: 0.95rem; word-break: break-word; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 56px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
.foot-brand p {
  color: rgba(237, 234, 221, 0.65);
  font-size: 0.9rem;
  margin-top: 12px;
  max-width: 36ch;
  line-height: 1.5;
}
.foot-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 700;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 8px; }
.foot-col a {
  font-size: 0.92rem;
  color: rgba(237, 234, 221, 0.78);
  transition: color 0.2s;
}
.foot-col a:hover { color: var(--lime); }
.foot-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: rgba(10, 13, 11, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2);
  padding: 12px var(--pad);
  display: flex;
  gap: 8px;
}
.sticky-cta .btn { flex: 1; padding: 14px 18px; font-size: 0.9rem; }
.sticky-cta .btn-call {
  flex: 0 0 auto;
  width: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 880px) { .sticky-cta { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS (subtle reveal-on-scroll)
   ═══════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   UTILS
   ═══════════════════════════════════════════════════════════════ */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
/* ═══════════════════════════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   ═══════════════════════════════════════════════════════════════ */

/* Active nav link */
.nav-links a[aria-current="page"] {
  color: var(--lime);
  opacity: 1;
}
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--lime);
  margin-top: 4px;
}
@media (max-width: 880px) {
  .nav-links a[aria-current="page"]::after { display: none; }
}

/* Page Hero — schlanker als der Startseiten-Hero */
.page-hero {
  padding: clamp(48px, 9vh, 96px) 0 clamp(40px, 6vh, 72px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--lime-glow), transparent 60%);
  pointer-events: none;
  filter: blur(40px);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1.display { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: 24px; }
.page-hero .lede { margin-bottom: 0; }
.breadcrumb {
  font-family: var(--body);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--lime); }
.breadcrumb .sep { opacity: 0.4; }

/* Kevin-Teaser Card auf der Startseite */
.kevin-teaser {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.kevin-teaser-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 760px) {
  .kevin-teaser-grid { grid-template-columns: 1fr; text-align: center; }
  .kevin-teaser-grid .kevin-frame { margin: 0 auto; }
  .kevin-teaser-grid .kicker { justify-content: center; }
  .kevin-teaser-grid .kicker::before { display: none; }
}
.kevin-teaser-text h2 { margin-bottom: 16px; }
.kevin-teaser-text .lede { margin-bottom: 24px; }
.kevin-teaser-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
  color: var(--cream);
  margin-bottom: 20px;
  max-width: 26ch;
}
.kevin-teaser-quote .lime { font-style: italic; }

/* CTA-Banner (am Ende jeder Sub-Seite) */
.cta-banner {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(56px, 10vh, 96px) 0;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--lime-glow), transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(50px);
}
.cta-banner-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: rgba(237, 234, 221, 0.78); margin-bottom: 28px; }
.cta-banner-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Pakete-Sub-Sections für pakete.html */
.pakete-section {
  padding: clamp(56px, 10vh, 96px) 0;
}
.pakete-section + .pakete-section {
  padding-top: 0;
}
.pakete-section h2.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 8px;
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pakete-section .section-title-sub {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

/* Werte-Liste auf Über mich */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0;
}
@media (max-width: 760px) { .values-list { grid-template-columns: 1fr; } }
.value-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.value-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.value-item h3::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime-glow);
}
.value-item p { color: rgba(237, 234, 221, 0.75); font-size: 0.93rem; }

/* Vergleichstabelle Agentur vs. Kevin */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 760px) { .compare { grid-template-columns: 1fr; } }
.compare-col {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.compare-col.them {
  background: var(--bg-card);
  opacity: 0.85;
}
.compare-col.us {
  background: var(--bg-card);
  border-color: var(--lime);
  position: relative;
}
.compare-col.us::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--lime);
  border-radius: var(--radius) var(--radius) 0 0;
}
.compare-col h3 { margin-bottom: 4px; font-size: 1.1rem; }
.compare-col .compare-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
  color: rgba(237, 234, 221, 0.85);
}
.compare-col li:first-child { border-top: 0; padding-top: 0; }
.compare-col.them li::before { content: "✕"; color: var(--warn); flex-shrink: 0; }
.compare-col.us li::before { content: "✓"; color: var(--lime); flex-shrink: 0; }

/* Prozess-Schritte */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 880px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.process-step-num {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; color: rgba(237, 234, 221, 0.72); }

/* Direkte Kontakt-Section */
.contact-direct .contact-channels {
  margin: 0 auto 56px;
  max-width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   INTRO-PILL (kleine Kevin-Tagline oben im Hero)
   ═══════════════════════════════════════════════════════════════ */
.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px 6px 6px;
  background: var(--bg-card);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  margin-bottom: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.intro-pill:hover {
  border-color: var(--lime);
  transform: translateY(-1px);
  background: var(--bg-elev);
}
.intro-pill-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 65% center;
  filter: grayscale(100%) brightness(1.05);
  border: 1.5px solid rgba(184, 232, 52, 0.4);
  flex-shrink: 0;
}
.intro-pill-text {
  display: flex;
  flex-direction: column;
  font-size: 0.84rem;
  line-height: 1.3;
}
.intro-pill-name {
  font-weight: 600;
  color: var(--cream);
}
.intro-pill-sub {
  color: var(--muted);
  font-size: 0.78rem;
}
.intro-pill-sub::after {
  content: " →";
  color: var(--lime);
}

/* ═══════════ PROBLEM-BRIDGE auf Lösungen-Seite ═══════════ */
.problem-bridge {
  padding: clamp(40px, 6vh, 72px) 0 clamp(32px, 5vh, 56px);
}
.problem-bridge .problem-hero {
  margin-bottom: 0;
}
.problem-bridge-caption {
  text-align: center;
  margin-top: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--cream);
  opacity: 0.85;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   CHAOS-STATEMENT (full-width Bild zwischen Hero und Problem-Cards)
   ═══════════════════════════════════════════════════════════════ */
.chaos-statement {
  padding: 0;
  background: #000;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.chaos-statement-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   POLISH-PASS v5: Interaktivität, visuelle Tiefe, sauberere Details
   ═══════════════════════════════════════════════════════════════ */

/* ── Problem-Cards: mehr Schmerz, mehr Interaktivität ── */
.problem-card {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.problem-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(232, 93, 79, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 93, 79, 0.45);
  box-shadow: 0 14px 40px -12px rgba(232, 93, 79, 0.25);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(232, 93, 79, 0.04) 100%);
}
.problem-card:hover::after { opacity: 1; }
.problem-num {
  animation: painPulse 4s ease-in-out infinite;
  display: inline-block;
}
.problem-card:hover .problem-num {
  animation-duration: 1.2s;
  text-shadow: 0 0 32px rgba(232, 93, 79, 0.55);
}
@keyframes painPulse {
  0%, 100% { text-shadow: 0 0 0 transparent; }
  50%      { text-shadow: 0 0 24px rgba(232, 93, 79, 0.35); }
}
@media (prefers-reduced-motion: reduce) {
  .problem-num { animation: none; }
}

/* ── Pillar-Cards: optisch optimiert ── */
.pillar {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184, 232, 52, 0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 232, 52, 0.4);
  box-shadow: 0 18px 50px -16px rgba(184, 232, 52, 0.2);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(184, 232, 52, 0.03) 100%);
}
.pillar:hover::before { opacity: 1; }
.pillar-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}
.pillar:hover .pillar-icon {
  transform: scale(1.12) rotate(8deg);
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(184, 232, 52, 0.45);
}
.pillar:hover .pillar-link {
  color: var(--lime);
}
.pillar:hover .pillar-link::after {
  transform: translateX(6px);
}
.pillar-link::after {
  content: " →";
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ── Range-Slider: visueller Track-Fill, Glow-Thumb, größer beim Anfassen ── */
.calc input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    to right,
    var(--lime) 0%,
    var(--lime) var(--val, 50%),
    var(--line-2) var(--val, 50%),
    var(--line-2) 100%
  );
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  transition: background 0.1s ease;
}
/* Webkit Thumb */
.calc input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--bg);
  cursor: grab;
  box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.4),
              0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease,
              box-shadow 0.2s ease;
}
.calc input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(184, 232, 52, 0.18),
              0 4px 16px rgba(0, 0, 0, 0.5);
}
.calc input[type="range"]:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.25);
  box-shadow: 0 0 0 12px rgba(184, 232, 52, 0.28),
              0 6px 24px rgba(184, 232, 52, 0.4);
}
/* Firefox Thumb */
.calc input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--bg);
  cursor: grab;
  box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.4),
              0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.calc input[type="range"]:hover::-moz-range-thumb {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(184, 232, 52, 0.18);
}
.calc input[type="range"]:active::-moz-range-thumb {
  cursor: grabbing;
  transform: scale(1.25);
  box-shadow: 0 0 0 12px rgba(184, 232, 52, 0.28),
              0 6px 24px rgba(184, 232, 52, 0.4);
}
/* Live-Update der Calc-Result-Zahl beim Slider-Bewegen */
.calc-amount {
  transition: text-shadow 0.3s ease;
}
.calc.is-dragging .calc-amount {
  text-shadow: 0 0 32px rgba(184, 232, 52, 0.6);
}
.calc-value {
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.calc.is-dragging .calc-value {
  color: var(--cream);
  transform: scale(1.08);
}

/* ── Review-Quote: typografisch saubere deutsche Anführungszeichen ── */
.review-text {
  position: relative;
  padding-left: 28px;
}
.review-text::before {
  content: "„";
  position: absolute;
  left: -4px;
  top: -8px;
  font-family: var(--serif);
  font-style: normal;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--lime);
  opacity: 0.6;
  pointer-events: none;
}
.review-text::after {
  content: "“";
  font-family: var(--serif);
  font-style: normal;
  color: var(--lime);
  opacity: 0.6;
  margin-left: 2px;
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.3em;
}


/* ═══════════════════════════════════════════════════════════════
   POLISH-PASS v6
   ═══════════════════════════════════════════════════════════════ */

/* ── Section-Übergänge mit Lime-Glow auf JEDEN Übergang ── */
section + section,
header + section,
section + footer {
  position: relative;
}
section + section::before,
header + section::before,
section + footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 800px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 232, 52, 0.55), transparent);
  z-index: 0;
  pointer-events: none;
}
section > .wrap, footer > .wrap { position: relative; z-index: 2; }
section + section::after,
header + section::after,
section + footer::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 80px;
  background: radial-gradient(ellipse at top, rgba(184, 232, 52, 0.18), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

/* Alte spezifische Section-Übergangs-Regeln deaktivieren (überschrieben durch obige) */

/* ── Pakete-Cards: visueller, mehr Schmackes ── */
.paket {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  overflow: visible;
}
.paket::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(184, 232, 52, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}
.paket-badge {
  z-index: 5;
  box-shadow: 0 4px 14px rgba(184, 232, 52, 0.4);
}
.paket:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 232, 52, 0.35);
  box-shadow: 0 20px 50px -16px rgba(184, 232, 52, 0.18);
}
.paket:hover::before { opacity: 1; }
.paket-price {
  text-shadow: 0 0 30px rgba(184, 232, 52, 0.35);
  transition: text-shadow 0.4s ease;
}
.paket:hover .paket-price { text-shadow: 0 0 48px rgba(184, 232, 52, 0.55); }
.paket.featured {
  border-color: rgba(184, 232, 52, 0.5);
  box-shadow: 0 14px 50px -18px rgba(184, 232, 52, 0.3);
  transform: scale(1.02);
}
.paket.featured::before { opacity: 0.6; }
.paket.featured:hover { transform: scale(1.04) translateY(-6px); }
.paket-features li {
  transition: transform 0.2s ease, color 0.2s ease;
}
.paket:hover .paket-features li:hover {
  color: var(--cream);
  transform: translateX(4px);
}

/* ── Kontakt-Cards (channel) viel moderner ── */
.channel {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease;
  overflow: hidden;
}
.channel::after {
  content: "→";
  position: absolute;
  top: 16px; right: 16px;
  font-size: 1.2rem;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.channel:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 232, 52, 0.45);
  box-shadow: 0 16px 44px -14px rgba(184, 232, 52, 0.22);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(184, 232, 52, 0.04) 100%);
}
.channel:hover::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--lime);
}
.channel:hover .channel-icon {
  transform: scale(1.12) rotate(-6deg);
  background: rgba(184, 232, 52, 0.15);
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(184, 232, 52, 0.4);
}
.channel-icon {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

/* ── Sticky-CTA visueller mit Backdrop-Blur ── */
.sticky-cta {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(15, 20, 17, 0.85);
  border-top: 1px solid rgba(184, 232, 52, 0.18);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5),
              0 -1px 0 rgba(184, 232, 52, 0.08);
}
.sticky-cta .btn-primary {
  flex: 1;
  box-shadow: 0 4px 16px rgba(184, 232, 52, 0.3);
}
.sticky-cta .btn-call {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  font-size: 1.3rem;
}

/* ── Pillar-Akkordeon (klickbar, klappt auf) ── */
.pillar {
  cursor: pointer;
  user-select: none;
}
.pillar-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              margin-top 0.4s ease,
              opacity 0.4s ease 0.1s;
  opacity: 0;
}
.pillar.is-open .pillar-details {
  max-height: 500px;
  margin-top: 20px;
  opacity: 1;
}
.pillar-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.pillar-details li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.92rem;
  color: rgba(237, 234, 221, 0.78);
  border-top: 1px solid var(--line);
}
.pillar-details li:first-child { border-top: 0; }
.pillar-details li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 600;
}
.pillar-toggle {
  position: absolute;
  top: 18px; right: 22px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(184, 232, 52, 0.1);
  border: 1px solid var(--line-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--lime);
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
  flex-shrink: 0;
}
.pillar.is-open .pillar-toggle {
  transform: rotate(45deg);
  background: var(--lime);
  color: var(--bg);
}
.pillar-link-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lime);
  font-weight: 500;
  font-size: 0.9rem;
  padding-top: 4px;
  border-top: 1px solid var(--line);
  width: 100%;
  margin-top: 8px;
  padding-top: 16px;
}

/* ── Slogan-Tagline (intelligent eingebaut, ersetzt die Pille) ── */
.hero-slogan,
.page-hero-slogan {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--lime);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  opacity: 0.95;
}
.hero-slogan em,
.page-hero-slogan em {
  font-style: normal;
  color: var(--cream);
}
.page-hero-slogan { margin-top: -8px; margin-bottom: 16px; }

/* ── Mobile-Only Helper für Telefonnummer-Sichtbarkeit ── */
.mobile-only { display: list-item; }
@media (min-width: 768px) {
  .mobile-only { display: none !important; }
  .sticky-cta { display: none; }
  .cta-banner-cta a[href^="tel:"]:not(.btn-primary) { display: none; }
}


/* ═══════════════════════════════════════════════════════════════
   MOBILE-OPTIMIERUNG (final pass)
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 760px) {

  /* Hero — Headline kleiner aber mit Punch */
  .hero { padding: clamp(40px, 8vh, 80px) 0 clamp(32px, 6vh, 64px); }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 3.6rem); }
  .hero p.lede { font-size: 1rem; }

  /* Hero-CTAs vollbreite stacken */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Trust-Stats: 3-Spalten zentriert auf Mobile (alle 3 Items gleichwertig in einer Reihe) */
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 8px;
    padding-top: 24px;
    justify-items: center;
    text-align: center;
  }
  .trust-item {
    min-width: 0;
    flex: none;
    width: 100%;
  }
  .trust-num { font-size: 1.4rem; }
  .trust-num.lime-text { font-size: 1.1rem; }  /* "kostenlos" ist länger – kleiner damit's reinpasst */
  .trust-label { font-size: 0.72rem; line-height: 1.3; }

  /* Slogans dezenter auf Mobile */
  .hero-slogan { font-size: 0.95rem; margin-bottom: 18px; }
  .page-hero-slogan { font-size: 0.85rem; }

  /* Pakete-Cards einspaltig, Featured nicht skalieren auf Mobile */
  .pakete-grid { grid-template-columns: 1fr; gap: 20px; }
  .paket.featured { transform: none; }
  .paket.featured:hover { transform: translateY(-4px); }

  /* Kontakt-Channels einspaltig */
  .contact-channels { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Pillar-Cards: bessere Touch-Targets, Toggle größer */
  .pillar { padding: 28px 22px; min-height: 0; }
  .pillar-toggle {
    width: 40px;
    height: 40px;
    top: 16px;
    right: 18px;
    font-size: 1.4rem;
  }
  .pillars-grid { gap: 16px; }

  /* Problem-Cards (68/30h/87) full-width stacked */
  .problem-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Section-Padding auf Mobile reduziert */
  section { padding: clamp(48px, 8vh, 80px) 0; }

  /* CTA-Banner-Buttons stacken */
  .cta-banner-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .cta-banner-cta .btn { width: 100%; justify-content: center; }

  /* Range-Slider Thumb dicker für Touch */
  .calc input[type="range"]::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
  }
  .calc input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
  }
  .calc input[type="range"] { height: 8px; }
  .calc-inputs { gap: 32px; }

  /* About-Stats kompakter */
  .about-stats { gap: 12px; }
  .about-stat-num { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Über-Mich Hero: Foto und Text untereinander, nicht 2-spaltig */
  .page-hero .wrap[style*="grid-template-columns: auto 1fr"] {
    display: block !important;
  }
  .page-hero .kevin-frame { margin: 0 auto 24px !important; }

  /* Footer: Spalten kompakter */
  .foot-grid { gap: 32px; }

  /* Touch-Target-Mindestgröße: alle Links/Buttons mind. 44×44px */
  .nav-links a,
  .foot-col a,
  .pillar-link-detail {
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Mobile-only Phone-Number im Footer sichtbar machen */
  .foot-col .mobile-only { display: list-item !important; }

  /* Sticky-CTA: Padding-Bottom hinzufügen, damit Content nicht abgeschnitten */
  body { padding-bottom: 80px; }

  /* Display-Headlines auf Mobile besser umbrechen */
  .display { hyphens: auto; word-break: break-word; }

  /* Compare-Spalten (Agentur vs. Kevin) untereinander */
  .compare { grid-template-columns: 1fr; gap: 12px; }

  /* Werte-Liste single column */
  .values-list { grid-template-columns: 1fr; gap: 12px; }

  /* Process: 1 column auf sehr kleinen, 2 auf mittlerem mobile */
  .process { grid-template-columns: 1fr; gap: 12px; }
}

/* Sehr kleine Geräte (alte iPhones, kleine Androids) */
@media (max-width: 380px) {
  .hero h1 { font-size: clamp(2rem, 12vw, 2.8rem); }
  .hero-trust { gap: 16px 12px; }
  .trust-num { font-size: 1.6rem; }
  .display { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .wrap { padding-left: 16px; padding-right: 16px; }
}

/* Tablets: zwischen Mobile und Desktop */
@media (min-width: 761px) and (max-width: 980px) {
  .hero-trust { gap: 20px; }
  .pakete-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .contact-channels { grid-template-columns: repeat(2, 1fr) !important; }
  .pillars-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

/* Sehr breite Bildschirme: Inhalts-Container nicht zu breit */
@media (min-width: 1600px) {
  :root { --maxw: 1320px; }
}


/* ═══════════════════════════════════════════════════════════════
   FOTOBOX-SPECIFIC: 360°-Animation, Anlässe-Cards, Pakete-Polish
   ═══════════════════════════════════════════════════════════════ */

/* 360°-Animation um den Hero (rotierender Kreis aus Lime-Punkten) */
.fb-orbit {
  position: absolute;
  width: clamp(400px, 50vw, 720px);
  height: clamp(400px, 50vw, 720px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}
.fb-orbit::before,
.fb-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(184, 232, 52, 0.25);
  inset: 0;
  animation: fbRotate 28s linear infinite;
}
.fb-orbit::after {
  inset: 12%;
  border-style: dotted;
  border-color: rgba(184, 232, 52, 0.18);
  animation-direction: reverse;
  animation-duration: 38s;
}
.fb-orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(184, 232, 52, 0.7);
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  animation: fbRotateDot 12s linear infinite;
}
@keyframes fbRotate {
  to { transform: rotate(360deg); }
}
@keyframes fbRotateDot {
  to { transform: translateX(-50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .fb-orbit::before, .fb-orbit::after, .fb-orbit-dot { animation: none; }
}

.hero.fotobox-hero {
  background: var(--bg);
  text-align: center;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 14vh, 160px) 0;
}
.hero.fotobox-hero .hero-inner {
  text-align: center; position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
}
.hero.fotobox-hero .display { font-size: clamp(2.6rem, 7vw, 5rem); }
.hero.fotobox-hero p.lede { max-width: 56ch; margin: 0 auto 36px; }
.hero.fotobox-hero .hero-cta { justify-content: center; }

.anlaesse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 880px) { .anlaesse-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .anlaesse-grid { grid-template-columns: 1fr; } }
.anlass {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  background: var(--bg-card);
}
/* Bild-Background-Layer */
.anlass-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.78) saturate(1.05);
}
.anlass:hover .anlass-bg {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1.15);
}
/* Dunkler Verlauf von unten — damit Text lesbar bleibt */
.anlass::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 13, 11, 0.15) 0%,
    rgba(10, 13, 11, 0.55) 55%,
    rgba(10, 13, 11, 0.92) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
/* Lime-Glow im Hover */
.anlass::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184, 232, 52, 0.15), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}
.anlass:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 232, 52, 0.45);
  box-shadow: 0 14px 40px -14px rgba(184, 232, 52, 0.25);
}
.anlass:hover::after { opacity: 1; }

/* Content sitzt drüber */
.anlass-content {
  position: relative;
  z-index: 3;
  padding: 28px 24px 24px;
  margin-top: auto;
}
.anlass-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(184, 232, 52, 0.18);
  border: 1.5px solid rgba(184, 232, 52, 0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease, border-color 0.3s ease;
}
.anlass:hover .anlass-icon {
  transform: scale(1.12) rotate(-8deg);
  background: rgba(184, 232, 52, 0.3);
  border-color: var(--lime);
  box-shadow: 0 0 24px rgba(184, 232, 52, 0.4);
}
.anlass h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--cream);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.anlass p {
  color: rgba(237, 234, 221, 0.85);
  font-size: 0.92rem;
  line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.fb-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-top: 40px; max-width: 720px;
}
@media (max-width: 600px) { .fb-features { grid-template-columns: 1fr; } }
.fb-features li {
  list-style: none;
  padding: 16px 20px 16px 48px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative; font-size: 0.95rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.fb-features li::before {
  content: "✓";
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%; background: var(--lime); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem;
}
.fb-features li:hover {
  transform: translateX(4px);
  border-color: rgba(184, 232, 52, 0.3);
}

.gallery {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 40px;
}
@media (max-width: 880px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-2));
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--lime); opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover { opacity: 0.85; transform: scale(1.02); }

.fb-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: 0.88rem;
  transition: color 0.2s ease;
}
.fb-back-link:hover { color: var(--lime); }
.fb-back-link::before {
  content: "←"; display: inline-block;
  transition: transform 0.3s ease;
}
.fb-back-link:hover::before { transform: translateX(-3px); }

/* ═══════════════════════════════════════════════════════════════
   EVENT-ANIMATIONEN — Pro Card-Typ subtile Themen-Animation
   ═══════════════════════════════════════════════════════════════ */

/* Floating-Particles über jeder Card (subtle, atmosphärisch) */
.anlass-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.anlass-particles span {
  position: absolute;
  display: block;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  font-size: 1.4rem;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  filter: drop-shadow(0 0 4px rgba(184, 232, 52, 0.4));
}

/* Hover: Particles werden sichtbar */
.anlass:hover .anlass-particles span {
  opacity: 0.7;
}

/* Hochzeit — schwebende Herzen */
.anlass-hochzeit .anlass-particles span:nth-child(1) { left: 12%; animation: floatUp 4.5s -0.5s infinite; }
.anlass-hochzeit .anlass-particles span:nth-child(2) { left: 38%; animation: floatUp 5.2s -2.1s infinite; }
.anlass-hochzeit .anlass-particles span:nth-child(3) { left: 65%; animation: floatUp 4.8s -3.2s infinite; }
.anlass-hochzeit .anlass-particles span:nth-child(4) { left: 88%; animation: floatUp 5.5s -1.4s infinite; }

/* Geburtstag — fallende Konfetti */
.anlass-geburtstag .anlass-particles span:nth-child(1) { left: 18%; animation: confettiFall 3.8s -0.3s infinite; }
.anlass-geburtstag .anlass-particles span:nth-child(2) { left: 42%; animation: confettiFall 4.2s -1.8s infinite; }
.anlass-geburtstag .anlass-particles span:nth-child(3) { left: 70%; animation: confettiFall 3.5s -2.7s infinite; }
.anlass-geburtstag .anlass-particles span:nth-child(4) { left: 92%; animation: confettiFall 4.5s -1.1s infinite; }

/* Abiball — schwebende Sterne */
.anlass-abiball .anlass-particles span:nth-child(1) { left: 15%; animation: twinkle 3.2s -0.5s infinite, floatUp 6s -0.5s infinite; }
.anlass-abiball .anlass-particles span:nth-child(2) { left: 45%; animation: twinkle 2.8s -1.5s infinite, floatUp 7s -1.5s infinite; }
.anlass-abiball .anlass-particles span:nth-child(3) { left: 75%; animation: twinkle 3.5s -2.2s infinite, floatUp 6.5s -2.2s infinite; }

/* Firmenfeier — Funken / Lichtblitze */
.anlass-firmenfeier .anlass-particles span:nth-child(1) { left: 20%; animation: spark 2.5s -0.2s infinite; }
.anlass-firmenfeier .anlass-particles span:nth-child(2) { left: 55%; animation: spark 2.8s -1.4s infinite; }
.anlass-firmenfeier .anlass-particles span:nth-child(3) { left: 82%; animation: spark 2.2s -0.8s infinite; }

/* Messe — Pulsierende Glow-Punkte */
.anlass-messe .anlass-particles span:nth-child(1) { left: 25%; animation: pulse 2.8s -0.5s infinite; }
.anlass-messe .anlass-particles span:nth-child(2) { left: 55%; animation: pulse 3.2s -1.5s infinite; }
.anlass-messe .anlass-particles span:nth-child(3) { left: 80%; animation: pulse 2.5s -2.1s infinite; }

/* Privatparty — bouncende Emojis */
.anlass-privat .anlass-particles span:nth-child(1) { left: 14%; animation: bounce 2.2s -0.4s infinite; }
.anlass-privat .anlass-particles span:nth-child(2) { left: 42%; animation: bounce 2.6s -1.5s infinite; }
.anlass-privat .anlass-particles span:nth-child(3) { left: 70%; animation: bounce 2.4s -0.9s infinite; }
.anlass-privat .anlass-particles span:nth-child(4) { left: 90%; animation: bounce 2.8s -2.0s infinite; }

/* Keyframes */
@keyframes floatUp {
  0%   { transform: translateY(110%) scale(0.7); opacity: 0; }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(-30%) scale(1.1); opacity: 0; }
}
@keyframes confettiFall {
  0%   { transform: translateY(-30%) rotate(0deg) scale(0.8); opacity: 0; }
  15%  { opacity: 0.85; }
  85%  { opacity: 0.6; }
  100% { transform: translateY(110%) rotate(360deg) scale(1); opacity: 0; }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.2); }
}
@keyframes spark {
  0%   { transform: translateY(80%) scale(0.4); opacity: 0; }
  30%  { opacity: 1; transform: translateY(40%) scale(1.1); }
  60%  { opacity: 0.6; }
  100% { transform: translateY(-20%) scale(0.6); opacity: 0; }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.4); opacity: 0.9; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(60%) scale(1); opacity: 0.6; }
  50%      { transform: translateY(20%) scale(1.15); opacity: 0.95; }
}

@media (prefers-reduced-motion: reduce) {
  .anlass-particles span { animation: none !important; opacity: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   PAKETE — Section-Header Tabs (Vorschau auf 3 Pakete)
   ═══════════════════════════════════════════════════════════════ */
.pakete-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pakete-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--cream);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.pakete-tab:hover {
  border-color: rgba(184, 232, 52, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -10px rgba(184, 232, 52, 0.25);
}
.pakete-tab-num {
  font-family: var(--display);
  font-size: 1.1rem;
  color: var(--lime);
  letter-spacing: 0.05em;
  line-height: 1;
}
.pakete-tab-label { font-weight: 600; }
.pakete-tab-price {
  font-weight: 700;
  color: var(--lime);
  margin-left: 4px;
}
.pakete-tab-featured {
  background: rgba(184, 232, 52, 0.08);
  border-color: rgba(184, 232, 52, 0.4);
}
.pakete-tab-featured:hover {
  background: rgba(184, 232, 52, 0.12);
}
@media (max-width: 660px) {
  .pakete-tabs { gap: 8px; }
  .pakete-tab { padding: 8px 14px; font-size: 0.85rem; }
}

/* ═══════════════════════════════════════════════════════════════
   CUSTOM-CONFIG-BOX (Pakete individuell möglich) — visualler
   ═══════════════════════════════════════════════════════════════ */
.custom-config-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.08) 0%,
    rgba(184, 232, 52, 0.03) 50%,
    var(--bg-card) 100%);
  border: 1px solid rgba(184, 232, 52, 0.25);
  border-radius: 20px;
  padding: 32px 36px;
  margin: 64px auto 0;
  max-width: 820px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease, box-shadow 0.3s ease;
}
.custom-config-box::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(184, 232, 52, 0.15), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: customGlow 6s ease-in-out infinite alternate;
}
@keyframes customGlow {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(-30px, 20px) scale(1.15); opacity: 1; }
}
.custom-config-box:hover {
  border-color: rgba(184, 232, 52, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 18px 50px -16px rgba(184, 232, 52, 0.3);
}

.custom-config-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(184, 232, 52, 0.15);
  border: 1.5px solid rgba(184, 232, 52, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  position: relative;
  z-index: 2;
  animation: configPulse 3s ease-in-out infinite;
}
.custom-config-icon svg { width: 38px; height: 38px; }
@keyframes configPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(184, 232, 52, 0.4),
                0 0 24px rgba(184, 232, 52, 0.25);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(184, 232, 52, 0),
                0 0 32px rgba(184, 232, 52, 0.4);
  }
}
.custom-config-box:hover .custom-config-icon {
  transform: rotate(15deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.custom-config-content { position: relative; z-index: 2; }
.custom-config-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lime);
  padding: 4px 12px;
  background: rgba(184, 232, 52, 0.12);
  border: 1px solid rgba(184, 232, 52, 0.3);
  border-radius: 999px;
  margin-bottom: 14px;
  font-weight: 700;
}
.custom-config-content h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  margin-bottom: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
}
.custom-config-content p {
  color: rgba(237, 234, 221, 0.85);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.custom-config-content p strong {
  color: var(--cream);
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(184, 232, 52, 0.18) 60%);
  padding: 0 2px;
}
.custom-config-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.custom-config-hint {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 660px) {
  .custom-config-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
  }
  .custom-config-icon { margin: 0 auto; width: 64px; height: 64px; }
  .custom-config-icon svg { width: 32px; height: 32px; }
  .custom-config-cta { justify-content: center; }
  .custom-config-content h3 { font-size: 1.25rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ANLASS-TAG (statt Emoji-Icon) + CSS-only Light-Particles
   ═══════════════════════════════════════════════════════════════ */
.anlass-tag {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: var(--lime);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(184, 232, 52, 0.12);
  border: 1px solid rgba(184, 232, 52, 0.35);
  border-radius: 999px;
  text-shadow: 0 0 8px rgba(184, 232, 52, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.4s ease, background 0.3s ease;
}
.anlass:hover .anlass-tag {
  transform: scale(1.05);
  background: rgba(184, 232, 52, 0.2);
}

/* Particles als kleine Lime-Lichter (KEINE Emojis mehr) */
.anlass-particles span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(184, 232, 52, 0.8),
              0 0 24px rgba(184, 232, 52, 0.4);
  font-size: 0;  /* falls noch Text drin wäre */
}

/* Spezielle Größen pro Theme — etwas Variation */
.anlass-hochzeit .anlass-particles span { width: 10px; height: 10px; }
.anlass-abiball .anlass-particles span { width: 12px; height: 12px; }
.anlass-firmenfeier .anlass-particles span { width: 6px; height: 6px; }
.anlass-messe .anlass-particles span { width: 10px; height: 10px; }
.anlass-privat .anlass-particles span { width: 9px; height: 9px; }

/* ═══════════════════════════════════════════════════════════════
   STYLE-PATCH · DreiHundertSechzig
   Stand: April 2026 · Anhängen an style.css (kein Replace nötig)
   ═══════════════════════════════════════════════════════════════
   Behebt:
   ✓ Umlaut-Clipping in .display Headlines
   ✓ Schwebender grauer Kasten in section-head ohne Kicker
   ✓ Kicker zu schwach (Pill-Form, Glow, Pulse-Punkt)
   ✓ Buttons mit Light-Sweep + Lime-Halo
   ✓ Beliebt-Badge mit Neon-Pulse
   ✓ FAQ-Fragen in Anton-Font + animiertes Plus-Icon
   ✓ Process-Section auf ueber-mich.html als Timeline
   ✓ Credential-Hero "14 Jahre" für Stellenanzeigen-Block
   ═══════════════════════════════════════════════════════════════ */

/* ─── 1) UMLAUT-FIX FÜR DISPLAY-HEADLINES ─────────────────── */
.display {
  line-height: 1.12;
}
.cta-banner .display,
.page-hero .display {
  line-height: 1.10;
}
/* Helper für Wörter mit Umlauten in der zweiten/dritten Zeile.
   Verwendung: <span class="umlaut">klären</span> */
.display .umlaut {
  display: inline-block;
  padding-top: 0.08em;
}

/* ─── 2) LEERES SECTION-HEAD ELEMENT VERSTECKEN ─────────────
   Falls ein .section-head keinen .kicker enthält, wird das
   Dekor-Element (Strich/Quadrat) des ::before unterdrückt.
   Funktioniert in allen modernen Browsern (Chrome 105+, Safari 16+, FF 121+).
   Für ältere Browser: explizit .no-kicker Klasse setzen. */
.section-head:not(:has(.kicker))::before,
.section-head.no-kicker::before {
  display: none !important;
  content: none !important;
}

/* ─── 3) BIGGER, GLOWING KICKER ─────────────────────────────
   Override des bestehenden .kicker mit Pill + Pulse-Dot. */
.kicker {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  font-size: 0.95rem !important;
  font-weight: 700;
  letter-spacing: 0.22em !important;
  color: var(--lime);
  background: rgba(197, 232, 102, 0.08);
  border: 1px solid rgba(197, 232, 102, 0.28);
  border-radius: 100px;
  margin-bottom: 22px !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-transform: uppercase;
}
/* Den ursprünglichen Strich-Indikator durch einen Pulse-Punkt ersetzen */
.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime), 0 0 16px rgba(197, 232, 102, 0.6);
  animation: kicker-pulse 2s ease-in-out infinite;
  margin: 0 !important;
  flex-shrink: 0;
}
.kicker::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(197, 232, 102, 0.25),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.kicker:hover::after { opacity: 1; }
@keyframes kicker-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px var(--lime), 0 0 16px rgba(197, 232, 102, 0.6);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 12px var(--lime), 0 0 24px rgba(197, 232, 102, 0.85);
  }
}

/* ─── 4) BUTTON-INTERAKTIONEN ───────────────────────────────
   Light-Sweep auf primary, Lime-Border-Lift auf ghost. */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-primary {
  box-shadow:
    0 4px 14px rgba(197, 232, 102, 0.25),
    0 0 0 0 rgba(197, 232, 102, 0.4);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: translateX(-150%);
  transition: transform 0.6s ease;
  z-index: -1;
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 28px rgba(197, 232, 102, 0.4),
    0 0 0 6px rgba(197, 232, 102, 0.12);
}
.btn-primary:hover::before {
  transform: translateX(150%);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(237, 231, 217, 0.05);
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 8px 22px rgba(197, 232, 102, 0.12);
}
.btn-arrow::after {
  transition: transform 0.25s ease;
}
.btn-arrow:hover::after {
  transform: translateX(5px);
}

/* ─── 5) PULSING „BELIEBT" / „EMPFEHLUNG" / „KLASSIKER" BADGE ─
   Sitzt jetzt zentriert oben außerhalb der Karte. */
.paket {
  overflow: visible;
  position: relative;
}
.pakete-grid {
  padding-top: 24px;
}
.paket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: #0A0D0B;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 7px 16px;
  border-radius: 100px;
  z-index: 5;
  white-space: nowrap;
  animation: badge-pulse 2.4s ease-in-out infinite;
  box-shadow:
    0 4px 14px rgba(197, 232, 102, 0.35),
    0 0 0 0 rgba(197, 232, 102, 0.6);
}
@keyframes badge-pulse {
  0%, 100% {
    box-shadow:
      0 4px 14px rgba(197, 232, 102, 0.35),
      0 0 0 0 rgba(197, 232, 102, 0.7),
      0 0 18px 2px rgba(197, 232, 102, 0.3);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow:
      0 4px 18px rgba(197, 232, 102, 0.55),
      0 0 0 12px rgba(197, 232, 102, 0),
      0 0 28px 6px rgba(197, 232, 102, 0.55);
    transform: translateX(-50%) scale(1.04);
  }
}
/* Featured-Karte hebt sich leicht ab */
.paket.featured {
  transform: translateY(-12px);
  border-color: rgba(197, 232, 102, 0.45) !important;
  box-shadow: 0 20px 48px rgba(197, 232, 102, 0.08);
}
.paket.featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 26px 60px rgba(197, 232, 102, 0.14);
}
@media (max-width: 760px) {
  .paket.featured {
    transform: none;
    order: -1;
  }
  .paket.featured:hover {
    transform: translateY(-6px);
  }
}

/* Preis-individuell-Hinweis statt Preis */
.paket-individual {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--lime);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.paket-individual::before {
  content: "→";
  font-family: 'Anton', sans-serif;
  transition: transform 0.3s ease;
}
.paket:hover .paket-individual::before {
  transform: translateX(4px);
}
.paket-individual-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--cream-soft, rgba(237,231,217,0.6));
  margin-top: 4px;
  letter-spacing: 0;
}

/* ─── 6) FAQ IN ANTON-FONT + LIME-PLUS-CIRCLE ───────────────
   Greift überall wo .faq-list summary verwendet wird. */
.faq-list details {
  border-top: 1px solid var(--line);
  transition: border-color 0.3s ease;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list details:hover {
  border-color: rgba(197, 232, 102, 0.35);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(22px, 2.4vw, 30px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Anton', sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(20px, 2vw, 26px) !important;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--cream);
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; }
/* Plus-Circle als Icon, ersetzt Standard-Marker */
.faq-list summary::after {
  content: "+";
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 232, 102, 0.4);
  color: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(.2, .8, .2, 1), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.faq-list details:hover summary {
  color: var(--lime);
  transform: translateX(6px);
}
.faq-list details:hover summary::after {
  background: rgba(197, 232, 102, 0.10);
  border-color: var(--lime);
}
.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: var(--lime);
  color: #0A0D0B;
  border-color: var(--lime);
}
.faq-list details > p,
.faq-list details > div:not([class]) {
  padding: 0 0 clamp(22px, 2.4vw, 30px);
  font-family: 'Inter', sans-serif;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.7;
  color: var(--cream-soft, rgba(237,231,217,0.78));
  max-width: 760px;
}

/* ─── 7) PROCESS-SECTION ALS TIMELINE ───────────────────────
   Greift auf .process auf ueber-mich.html. */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
}
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 232, 102, 0.18) 8%,
    rgba(197, 232, 102, 0.35) 50%,
    rgba(197, 232, 102, 0.18) 92%,
    transparent
  );
  z-index: 0;
  pointer-events: none;
}
.process::after {
  content: "";
  position: absolute;
  top: 32px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(197, 232, 102, 0.18), transparent 70%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
}
.process-step {
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(.2, .8, .2, 1);
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--lime);
  color: var(--lime);
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 18px;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.process-step:hover .process-step-num {
  background: var(--lime);
  color: #0A0D0B;
  box-shadow: 0 0 24px rgba(197, 232, 102, 0.45);
}
.process-step:hover {
  transform: translateY(-4px);
}
@media (max-width: 760px) {
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before, .process::after { display: none; }
}

/* ─── 8) CREDENTIAL-HERO „14 JAHRE" ─────────────────────────
   Block für loesungen.html / pakete.html über den Stellenanzeigen-Karten. */
.credential-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: clamp(36px, 5vw, 60px) clamp(28px, 4.5vw, 56px);
  background:
    linear-gradient(135deg, rgba(197, 232, 102, 0.07), rgba(255, 255, 255, 0.015) 60%),
    var(--bg-2, #11150F);
  border: 1px solid rgba(197, 232, 102, 0.20);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.credential-hero::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(197, 232, 102, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.credential-badge {
  display: flex;
  align-items: stretch;
  gap: 22px;
  position: relative;
  z-index: 1;
}
.credential-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(108px, 17vw, 200px);
  line-height: 0.82;
  background: linear-gradient(180deg, var(--lime) 0%, #93B83A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 32px rgba(197, 232, 102, 0.30));
  letter-spacing: -0.05em;
}
.credential-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--lime);
  padding-left: 20px;
  gap: 6px;
}
.credential-label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--cream);
}
.credential-detail {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--lime);
}
.credential-quote {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.65;
  color: rgba(237, 231, 217, 0.92);
  position: relative;
  z-index: 1;
}
.credential-quote em {
  font-style: normal;
  color: var(--lime);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .credential-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 26px;
  }
}

/* ─── 9) JS-OPTIONAL: MAUSPOSITION FÜR KICKER-GLOW ───────── */
/* Falls du den Hover-Glow folgen lassen willst, ergänze in script.js:

   document.querySelectorAll('.kicker').forEach(el => {
     el.addEventListener('mousemove', e => {
       const r = el.getBoundingClientRect();
       el.style.setProperty('--mx', ((e.clientX - r.left) / r.width * 100) + '%');
       el.style.setProperty('--my', ((e.clientY - r.top) / r.height * 100) + '%');
     });
   });

   Funktioniert auch ohne — der Glow rendert dann zentriert. */


/* ─── 10) BURGER-MENÜ MOBILE: SOLIDER HINTERGRUND ─────────────
   Bug aus Screenshot 11:33: Mobile-Menü ist transparent,
   Footer-Inhalt scheint durch das Menü hindurch.
   Fix: solider dunkler Hintergrund + hoher z-index. */
@media (max-width: 760px) {
  /* Den eigentlichen Menü-Container voll abdecken lassen.
     Greift auf .nav-links egal wie das Open-Toggle gesetzt wird
     (open-Klasse, data-attribute, oder via display:flex/none-Toggle). */
  .nav-links {
    background-color: var(--bg, #0A0D0B) !important;
    background-image: linear-gradient(180deg, rgba(10, 13, 11, 1) 0%, rgba(10, 13, 11, 0.98) 100%) !important;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 999 !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  }

  /* Falls das Menü ein Off-Canvas-Panel ist (von rechts/oben), 
     sicherstellen dass es 100% der Viewport-Breite oder 
     mind. 75% einnimmt und alles dahinter abdeckt. */
  .nav.open .nav-links,
  .nav-links.open,
  .nav-links[data-open="true"],
  .nav-links[aria-expanded="true"] {
    background-color: var(--bg, #0A0D0B) !important;
    /* Vollflächiges dunkles Panel ohne Durchscheinen */
    opacity: 1 !important;
  }

  /* Body-Scroll während Menü offen verhindern (optional, klassisches Pattern) */
  body.menu-open {
    overflow: hidden;
  }

  /* Burger-Button selbst über dem Menü-Layer halten */
  .nav-toggle {
    z-index: 1000 !important;
    position: relative;
  }
}


/* ─── 11) STELLENANZEIGEN-CARDS AUF MOBILE ────────────────────
   Bug aus Screenshot loesungen.html mobile: 
   3 .stellen-card-Boxen rendern auf Mobile OHNE Card-Optik —
   alles fließt ineinander, "Beliebt"-Label hängt frei in der Luft.
   Fix: explizites Card-Layout für die Mobile-Ansicht. */
@media (max-width: 760px) {
  .stellen-pricing {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 28px !important;
  }
  .stellen-card {
    background: var(--bg-card, rgba(19, 22, 19, 0.95)) !important;
    border: 1px solid var(--line, #1F2520) !important;
    border-left: 3px solid var(--lime-deep, #7E9D32) !important;
    padding: 22px 24px 18px 24px !important;
    border-radius: 10px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    overflow: visible !important;
  }
  .stellen-card.popular {
    border-color: var(--lime, #C5E866) !important;
    border-left-color: var(--lime, #C5E866) !important;
    background: rgba(197, 232, 102, 0.05) !important;
    box-shadow: 0 4px 22px rgba(197, 232, 102, 0.15);
  }
  .stellen-card-tag {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 0.78rem !important;
    color: var(--lime, #C5E866);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .stellen-card-title {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.005em;
    line-height: 1.05;
    color: var(--cream, #EDEADD);
    margin: 2px 0 4px 0;
  }
  .stellen-card-desc {
    font-size: 0.92rem;
    color: rgba(237, 234, 221, 0.72);
    line-height: 1.5;
    margin-bottom: 8px;
  }
  /* Alte Preis-Variante (falls noch vorhanden) — optisch eindämmen */
  .stellen-card-price {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 1.3rem !important;
    color: var(--lime, #C5E866);
    letter-spacing: 0.01em;
    margin-top: 4px;
  }
  /* Neue Preis-Strategie: "Preis individuell" Markup */
  .stellen-card-individual {
    font-family: var(--display, "Anton", sans-serif);
    font-size: 1.05rem !important;
    color: var(--lime, #C5E866);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 6px;
  }
  .stellen-card-individual-sub {
    font-family: var(--serif, "Fraunces", serif);
    font-style: italic;
    font-size: 0.82rem;
    color: rgba(237, 234, 221, 0.6);
    line-height: 1.45;
    margin-top: 2px;
  }
  /* Beliebt-Badge oben mittig schweben statt frei in der Luft */
  .stellen-card-badge {
    position: absolute !important;
    top: -12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: var(--lime, #C5E866) !important;
    color: var(--ink, #0A0D0B) !important;
    font-family: var(--display, "Anton", sans-serif) !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
    padding: 5px 14px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 16px rgba(197, 232, 102, 0.4);
    animation: badge-pulse 2.4s ease-in-out infinite;
    z-index: 5;
  }
  @keyframes badge-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%      { transform: translateX(-50%) scale(1.06); }
  }
}


/* ═══════════════════════════════════════════════════════════════
   ENDE STYLE-PATCH
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   12) REVEAL-SAFETY-NET · 27. April 2026
   Behebt: Inhalte mit Klasse .reveal blieben auf Mobile unsichtbar,
   wenn IntersectionObserver verzögert lud. Jetzt: nach 1.5s sind
   sie GARANTIERT sichtbar — ob JS gefeuert hat oder nicht.
   ═══════════════════════════════════════════════════════════════ */
.reveal {
  animation: revealSafetyNet 0s ease 1.5s forwards;
}
@keyframes revealSafetyNet {
  to { opacity: 1; transform: translateY(0); }
}
/* Wenn JS eingreift: Original-Transition übernimmt, Animation aus */
.reveal.in {
  animation: none;
}


/* ═══════════════════════════════════════════════════════════════
   13) STELLENANZEIGEN-CARDS · DEFAULT-STYLING
   In der Original style.css fehlten .stellen-card-Regeln komplett —
   die Cards rendern ungestylt als Text-Liste. Hier kommt das volle
   Card-Layout (Desktop + Mobile).
   ═══════════════════════════════════════════════════════════════ */

.stellen-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.stellen-card {
  background: rgba(19, 22, 19, 0.65);
  border: 1px solid var(--line, #1F2520);
  border-left: 3px solid var(--lime-deep, #7E9D32);
  border-radius: 12px;
  padding: 24px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.stellen-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 232, 52, 0.45);
  box-shadow: 0 14px 40px -14px rgba(184, 232, 52, 0.25);
}
.stellen-card.popular {
  border-color: var(--lime, #C5E866);
  border-left-color: var(--lime, #C5E866);
  background: rgba(184, 232, 52, 0.05);
  box-shadow: 0 6px 28px rgba(184, 232, 52, 0.18);
}

.stellen-card-tag {
  font-family: var(--display, "Anton", "DejaVu Sans Condensed", sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime, #C5E866);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.stellen-card-title {
  font-family: var(--display, "Anton", "DejaVu Sans Condensed", sans-serif);
  font-size: 1.55rem;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.05;
  color: var(--cream, #EDEADD);
  margin: 4px 0 6px 0;
}

.stellen-card-desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(237, 234, 221, 0.72);
  margin-bottom: 10px;
  flex-grow: 1;
}

.stellen-card-individual {
  font-family: var(--display, "Anton", "DejaVu Sans Condensed", sans-serif);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime, #C5E866);
  margin-top: 8px;
}

.stellen-card-individual-sub {
  font-family: var(--serif, "Fraunces", "DejaVu Serif", serif);
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(237, 234, 221, 0.6);
  margin-top: 2px;
}

/* Beliebt-Badge: schwebt zentriert oben auf der mittleren Card */
.stellen-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime, #C5E866);
  color: var(--ink, #0A0D0B);
  font-family: var(--display, "Anton", "DejaVu Sans Condensed", sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(184, 232, 52, 0.4);
  animation: stellenBadgePulse 2.4s ease-in-out infinite;
  z-index: 5;
}
@keyframes stellenBadgePulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.06); }
}

/* Tablet (760-880px): 2-Spalten als Zwischenstufe */
@media (max-width: 880px) {
  .stellen-pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (≤760px): 1-Spalte */
@media (max-width: 760px) {
  .stellen-pricing {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 28px;
  }
  .stellen-card {
    padding: 22px 24px 20px 24px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   14) MEIN-VERSPRECHEN-BANNER · prominent über den Paketen
   ═══════════════════════════════════════════════════════════════ */
.versprechen-banner {
  padding: 32px 0 12px;
}
.versprechen-card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.10) 0%,
    rgba(184, 232, 52, 0.04) 50%,
    rgba(19, 22, 19, 0.95) 100%);
  border: 1px solid rgba(184, 232, 52, 0.4);
  border-left: 4px solid var(--lime, #C5E866);
  border-radius: 14px;
  padding: 28px 36px 26px;
  overflow: hidden;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
}
.versprechen-card::before {
  content: "";
  position: absolute;
  top: -20%; right: -5%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(184, 232, 52, 0.10), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
  /* Animation entfernt – sah unscharf aus auf Mobile */
}
@keyframes versprechenGlow {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(-30px, 20px) scale(1.15); opacity: 1; }
}

.versprechen-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime, #C5E866);
  color: var(--ink, #0A0D0B);
  font-family: var(--display, "Anton", sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 4px 18px rgba(184, 232, 52, 0.45);
}
.versprechen-badge svg {
  flex-shrink: 0;
}

.versprechen-text {
  font-family: var(--body, "Inter", -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
  color: var(--cream, #EDEADD);
  margin: 0 0 12px 0;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
.versprechen-text strong {
  color: var(--lime, #C5E866);
  font-weight: 800;
  font-style: normal;
}
.versprechen-text em {
  color: var(--lime, #C5E866);
  font-weight: 700;
  font-style: normal;
}

.versprechen-sub {
  font-size: 0.88rem;
  color: rgba(237, 234, 221, 0.65);
  letter-spacing: 0.04em;
  margin: 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 660px) {
  .versprechen-card {
    padding: 24px 22px 22px;
    border-radius: 10px;
  }
  .versprechen-badge {
    font-size: 0.74rem;
    padding: 6px 13px;
    margin-bottom: 14px;
  }
  .versprechen-text {
    font-size: 1.08rem;
  }
  .versprechen-sub {
    font-size: 0.82rem;
  }
}


/* ═══════════════════════════════════════════════════════════════
   15) BRUSH-STROKE · ANIMIERT BEIM REVEAL
   Default: Strich startet "nicht gezeichnet" (scaleX 0).
   Bei .reveal.in (oder durch Safety-Net): wird von links nach
   rechts "gezeichnet" — wirkt wie Pinselstrich beim ersten Sehen.
   ═══════════════════════════════════════════════════════════════ */
.reveal .brush::after {
  transform: skew(-8deg) rotate(-1.2deg) scaleX(0);
  transform-origin: left center;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.25s;
}
.reveal.in .brush::after {
  transform: skew(-8deg) rotate(-1.2deg) scaleX(1);
}
/* Wenn das .reveal-Element selbst ein .brush enthält und durch das
   Safety-Net (Sektion 12) eingeblendet wird, läuft die Brush-Animation
   parallel mit — der scaleX wird durch das Hinzufügen von .in getriggert. */



/* ═══════════════════════════════════════════════════════════════
   16) FOOTER · BRAND-BLOCK MOBILE-ALIGNMENT
   Tagline "KI-Lösungen mit 360°-Weitblick..." stand auf Mobile am
   Container-Rand, während "DreiHundertSechzig" durch das Eclipse-
   Icon nach rechts versetzt war — wirkte verrutscht. Jetzt: Tagline
   wird mit dem Brand-Text aligned.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 760px) {
  .foot-brand .logo {
    margin-bottom: 14px;
  }
  .foot-brand p {
    /* logo-mark Mobile = 28px Breite + 10px gap zum Brand-Text */
    padding-left: 38px;
    line-height: 1.55;
  }
}


/* ═══════════════════════════════════════════════════════════════
   17) SZENEN-BILDER · IM STIL DES STELLENANZEIGEN-BILDES
   Bild = Foto-Frame im 4:5 Portrait wie .stellen-img.
   Card-Border um die ganze .scene aufgehoben, Gap zwischen
   Bild und Text. Vorhang-Reveal nach 7s.
   ═══════════════════════════════════════════════════════════════ */

/* Scene als Editorial-Layout statt Card mit Border */
.scenes .scene,
.scenes .scene.alt {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 88px);
}

/* Bild im Stellen-Stil: Portrait 4:5, runde Ecken, voll bedeckend */
.scenes .scene-img {
  aspect-ratio: 4 / 5 !important;
  height: auto !important;
  min-height: unset !important;
  border-radius: var(--radius);
  overflow: hidden;
}
.scenes .scene-img img,
.scenes .scene-img picture {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Mobile: gestapelt, Bild im 3:4 Hochformat */
@media (max-width: 880px) {
  .scenes .scene-img {
    aspect-ratio: 3 / 4 !important;
  }
  .scenes .scene .scene-text {
    padding: 0 !important;
  }
}

/* Vorhang-Animation */
.scenes .scene-img {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
              clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1),
              -webkit-clip-path 1.4s cubic-bezier(0.65, 0, 0.35, 1);
  /* Safety-Net: Falls JS hängt, Bild ist nach 9.5s sichtbar */
  animation: sceneImgCurtain 0s ease 9.5s forwards;
}
.scene.reveal.in .scene-img {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  transition-delay: 7s;
  animation: none;
}
@keyframes sceneImgCurtain {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/* Auf .scene.alt (rtl-Layout) öffnet sich der Vorhang von rechts nach links —
   passt zur visuellen Spalten-Position des Bildes */
.scenes .scene.alt .scene-img {
  clip-path: inset(0 0 0 100%);
  -webkit-clip-path: inset(0 0 0 100%);
}
.scenes .scene.alt.reveal.in .scene-img {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

/* Wer reduzierte Bewegung präferiert: Bild erscheint sofort */
@media (prefers-reduced-motion: reduce) {
  .scenes .scene-img,
  .scenes .scene.alt .scene-img {
    opacity: 1;
    clip-path: none;
    -webkit-clip-path: none;
    animation: none;
    transition: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   18) VERLUST-RECHNER · ROT ALS SCHOCK-EFFEKT
   Vorher: alles in Lime — wirkte wie "Erfolg" statt Verlust.
   Jetzt: Monatszahl + Jahreszahl in Warn-Rot. Box mit rötlichem
   Tint und Border. Bleibt visuell konsistent mit Brand-Stimme,
   aber die Zahlen sind unmissverständlich Verlust.
   ═══════════════════════════════════════════════════════════════ */
.calc-amount {
  color: var(--warn, #E85D4F) !important;
  text-shadow: 0 0 32px rgba(232, 93, 79, 0.25);
}
/* Calc-Result: symmetrisches Layout für Monat & Jahr, Jahres-Zahl fetter */
.calc-amount-year {
  margin-top: 18px;
  font-size: clamp(3.4rem, 7.5vw, 5.4rem) !important;
  /* Anton fetter machen via dickerem text-stroke */
  -webkit-text-stroke: 1.2px var(--warn, #E85D4F);
  text-stroke: 1.2px var(--warn, #E85D4F);
  text-shadow:
    0 0 1px var(--warn, #E85D4F),
    0 0 40px rgba(232, 93, 79, 0.5),
    0 0 80px rgba(232, 93, 79, 0.25);
}
.calc-period-year {
  margin-bottom: 28px !important;
}


/* ═══════════════════════════════════════════════════════════════
   19) MOBILE-HEADER · DAUERHAFT OBEN FIXIERT
   Vorher: position:sticky — funktionierte auf manchen Mobile-
   Browsern (iOS Safari Quirks) nicht zuverlässig. Jetzt: fixed
   auf allen Mobile-Geräten. Logo und Burger immer sichtbar.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  .nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100 !important;
  }
  /* Damit der Inhalt nicht unter dem fixed Header verschwindet */
  body {
    padding-top: 76px;
  }
}



/* ═══════════════════════════════════════════════════════════════
   20) HERO-HEADLINE · MOBILE-OPTIMIERUNG
   Auf engen Bildschirmen ist die Display-Headline so groß, dass
   sie auf 3 unruhige Zeilen umbricht. Jetzt: bisschen kleiner,
   engere Line-Height, "im Handwerk helfen?" passt sauber.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1.display {
    font-size: clamp(2.1rem, 8.2vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-wrap: balance;
    -webkit-hyphens: none;
    hyphens: none;
    word-break: keep-all;
  }
  /* .line nicht mehr als block — Browser darf optimal umbrechen */
  .hero h1 .line {
    display: inline;
  }
  /* Lime-Wort zusammenhalten */
  .hero h1 .green {
    white-space: nowrap;
  }
}

/* Kleine Tablets / breitere Phones zwischen 481-760px */
@media (min-width: 481px) and (max-width: 760px) {
  .hero h1.display {
    font-size: clamp(2.6rem, 8vw, 3.6rem);
    line-height: 1.05;
    text-wrap: balance;
  }
}


/* ═══════════════════════════════════════════════════════════════
   21) MOBILE-BURGER · GRÖSSER + TIEFER POSITIONIERT
   Vorher: Striche 22×1.5px, sehr dünn. Container an der oberen
   Kante. Jetzt: Striche 30×2.5px, 9px Abstand. Container 52×52px,
   etwas mehr Top-Spacing damit's nicht am Statusbar klebt.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  /* Header bekommt etwas mehr Atemraum oben */
  .nav-inner {
    padding-top: 18px !important;
    padding-bottom: 14px !important;
  }
  /* Body padding entsprechend angepasst */
  body {
    padding-top: 84px;
  }

  /* Burger-Container größer */
  .nav-toggle {
    width: 52px !important;
    height: 52px !important;
  }
  /* Striche dicker und länger */
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    width: 30px !important;
    height: 2.5px !important;
    border-radius: 2px;
  }
  /* Größerer Abstand zwischen den Strichen */
  .nav-toggle span::before { top: -9px !important; }
  .nav-toggle span::after  { top: 9px !important; }
}


/* ═══════════════════════════════════════════════════════════════
   23) PAKETE · SECTION-TITLES INTERAKTIV (KI-Begleitung etc.)
   ───────────────────────────────────────────────────────────────
   Die drei Bereichs-Headlines (KI-Begleitung, Website-Pflege,
   Stellenanzeigen) bekommen den gleichen Lime-Treatment wie die
   Scene-Numbers auf der Lösungsseite:
   - Lime-Farbe mit subtilem Text-Glow
   - Underline-Animation beim Reveal (von links nach rechts)
   - Idle-Pulse-Glow auf der Underline
   - Hover: Underline länger, Glow intensiver
   ═══════════════════════════════════════════════════════════════ */

.pakete-section .section-title {
  color: var(--lime);
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
  margin-bottom: 24px;
  text-shadow: 0 0 28px rgba(184, 232, 52, 0.18);
  transition: text-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

/* Animierter Underline (default 80px, wächst beim Reveal) */
.pakete-section .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 80px;
  background: var(--lime);
  border-radius: 2px;
  box-shadow:
    0 0 8px var(--lime),
    0 0 16px rgba(184, 232, 52, 0.55);
  transform-origin: left center;
  animation: pakete-title-pulse 3s ease-in-out infinite;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Idle Pulse-Glow auf dem Underline */
@keyframes pakete-title-pulse {
  0%, 100% {
    box-shadow:
      0 0 8px var(--lime),
      0 0 16px rgba(184, 232, 52, 0.45);
  }
  50% {
    box-shadow:
      0 0 12px var(--lime),
      0 0 24px rgba(184, 232, 52, 0.7),
      0 0 36px rgba(184, 232, 52, 0.25);
  }
}

/* Reveal-Animation: Underline wächst von 0 auf 80px,
   wenn die section-head reveal-Klasse "in" bekommt */
.pakete-section .section-head .section-title::after {
  width: 0;
  transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s,
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pakete-section .section-head.in .section-title::after {
  width: 80px;
}

/* Hover-Interaktion auf der Headline-Section:
   Underline wird länger, Glow intensiver, Title bekommt Lift */
@media (hover: hover) and (pointer: fine) {
  .pakete-section .section-head:hover .section-title {
    text-shadow:
      0 0 32px rgba(184, 232, 52, 0.4),
      0 0 64px rgba(184, 232, 52, 0.2);
    transform: translateX(4px);
  }
  .pakete-section .section-head:hover .section-title::after,
  .pakete-section .section-head.in:hover .section-title::after {
    width: 140px;
    box-shadow:
      0 0 12px var(--lime),
      0 0 28px rgba(184, 232, 52, 0.8),
      0 0 48px rgba(184, 232, 52, 0.35);
    animation-play-state: paused;
  }
}

/* Reduced-motion respektieren */
@media (prefers-reduced-motion: reduce) {
  .pakete-section .section-title,
  .pakete-section .section-title::after {
    animation: none !important;
    transition: none !important;
  }
  .pakete-section .section-head .section-title::after {
    width: 80px !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   24) HEADLINE-WRAP-FIX, FLOATING STICKY-CTA, MODERNISIERTE KICKER
   ───────────────────────────────────────────────────────────────
   Sammelt mehrere April-2026-Optimierungen:
   - Headlines: text-wrap balance verhindert isolierte Satzzeichen
   - .nowrap: manuelle Override-Klasse
   - Sticky-CTA: schwebende Pill statt Voll-Bündig (mobile)
   - Kicker: Glassmorphism + intensiver Glow
   ═══════════════════════════════════════════════════════════════ */

/* ─── Headline-Wrap ─── */
.display, h1, h2, h3 {
  text-wrap: balance;
}
.nowrap {
  white-space: nowrap;
  display: inline-block;
}

/* ─── Sticky-CTA als schwebende Pill (Mobile) ─── */
@media (max-width: 879px) {
  .sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100% - 24px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid rgba(184, 232, 52, 0.25);
    border-top: 1px solid rgba(184, 232, 52, 0.25);
    background: rgba(10, 13, 11, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow:
      0 16px 48px rgba(0, 0, 0, 0.55),
      0 4px 24px rgba(184, 232, 52, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 70;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
  }
  .sticky-cta:hover,
  .sticky-cta:focus-within {
    transform: translateX(-50%) translateY(-2px);
    box-shadow:
      0 20px 56px rgba(0, 0, 0, 0.6),
      0 6px 32px rgba(184, 232, 52, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .sticky-cta .btn {
    flex: 1 1 auto;
    border-radius: 999px;
    padding: 14px 24px;
    font-size: 0.92rem;
    white-space: nowrap;
  }
  .sticky-cta .btn-primary {
    flex: 1 1 auto;
    box-shadow: 0 4px 14px rgba(184, 232, 52, 0.35);
  }
  .sticky-cta .btn-call {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  @supports (bottom: env(safe-area-inset-bottom)) {
    .sticky-cta {
      bottom: max(16px, env(safe-area-inset-bottom));
    }
  }
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

/* ─── Kicker modernisiert (Glassmorphism + Hover-Lift) ─── */
.kicker {
  background: linear-gradient(
    135deg,
    rgba(184, 232, 52, 0.14) 0%,
    rgba(184, 232, 52, 0.06) 100%
  ) !important;
  border: 1px solid rgba(184, 232, 52, 0.32) !important;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  box-shadow:
    0 4px 20px rgba(184, 232, 52, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.kicker:hover {
  transform: translateY(-1px);
  border-color: rgba(184, 232, 52, 0.5) !important;
  box-shadow:
    0 8px 28px rgba(184, 232, 52, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.kicker::before {
  width: 9px !important;
  height: 9px !important;
  box-shadow:
    0 0 10px var(--lime),
    0 0 20px rgba(184, 232, 52, 0.7),
    0 0 30px rgba(184, 232, 52, 0.3) !important;
}

@media (prefers-reduced-motion: reduce) {
  .kicker, .sticky-cta {
    transition: none !important;
  }
  .kicker::before {
    animation: none !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   25) iOS NOTCH FIX · DEFINITIVE LÖSUNG (V3 - getestet)
   ───────────────────────────────────────────────────────────────
   calc(18px + env()) auf nav-inner statt env() auf .nav.
   Robust auf allen iOS-Versionen, getestet und live.
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  .nav {
    background: rgb(10, 13, 11) !important;
  }
  .nav .nav-inner {
    padding-top: calc(18px + env(safe-area-inset-top, 0px)) !important;
    padding-bottom: 14px !important;
    padding-left: max(var(--pad), env(safe-area-inset-left, 0px)) !important;
    padding-right: max(var(--pad), env(safe-area-inset-right, 0px)) !important;
  }
  body {
    padding-top: calc(84px + env(safe-area-inset-top, 0px)) !important;
  }
  .nav-links {
    inset: calc(84px + env(safe-area-inset-top, 0px)) 0 auto 0 !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   26) PAKET · "PREIS BESPRECHEN WIR" MITTIG
   ───────────────────────────────────────────────────────────────
   Greift sowohl auf den Pakete-Seite (.paket-individual) als auch
   auf die Stellenanzeigen-Cards in loesungen.html
   (.stellen-card-individual). Konsistente zentrierte Darstellung.
   ═══════════════════════════════════════════════════════════════ */
.paket-individual,
.stellen-card-individual {
  justify-content: center !important;
  text-align: center;
}
.paket-individual-sub,
.stellen-card-individual-sub {
  text-align: center !important;
}


/* ═══════════════════════════════════════════════════════════════
   27) VERSPRECHEN · EYECATCHER (V2 - dramatisch interaktiv)
   ───────────────────────────────────────────────────────────────
   Aus dem ruhigen Banner wird ein echter Aufmerksamkeits-Magnet:
   - Atmungs-Glow (dezenter idle pulse, 4s loop)
   - Conic-Gradient Light-Sweep auf der Border (Lauflicht-Effekt)
   - "5-fache" wird visuell hervorgehoben: größer, eigene Pulse
   - Hover: starker Lift, intensiver Glow, Badge-Icon rotiert
   - Reveal mit Scale-In Animation
   ═══════════════════════════════════════════════════════════════ */

/* CSS Houdini Property für rotierenden Conic-Gradient */
@property --versprechen-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ─── Card: Atmungs-Glow im Idle, dramatisch bei Hover ─── */
.versprechen-banner {
  padding: clamp(40px, 7vh, 64px) 0 clamp(28px, 5vh, 40px) !important;
}

.versprechen-card {
  cursor: default;
  isolation: isolate;
  animation: versprechen-breathe 4s ease-in-out infinite;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

@keyframes versprechen-breathe {
  0%, 100% {
    box-shadow:
      0 8px 32px -8px rgba(184, 232, 52, 0.18),
      0 0 0 0 rgba(184, 232, 52, 0.4);
  }
  50% {
    box-shadow:
      0 14px 52px -8px rgba(184, 232, 52, 0.32),
      0 0 0 6px rgba(184, 232, 52, 0.06);
  }
}

/* ─── Conic-Gradient Lauflicht (Light-Sweep auf der Border) ─── */
.versprechen-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--versprechen-angle),
    transparent 0deg,
    transparent 270deg,
    rgba(184, 232, 52, 0.4) 310deg,
    rgba(184, 232, 52, 1) 340deg,
    rgba(184, 232, 52, 0.4) 360deg
  );
  /* Mask: nur den Border-Bereich anzeigen, nicht das Innere */
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: versprechen-rotate 7s linear infinite;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

@keyframes versprechen-rotate {
  to { --versprechen-angle: 360deg; }
}

/* Fallback für Browser ohne @property (älteres Safari/Firefox):
   Card bekommt dann nur statische Border + breathe-Glow */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .versprechen-card::after {
    display: none;
  }
}

/* ─── Hover-Interaktion: stark, dramatisch, mit Lift ─── */
@media (hover: hover) and (pointer: fine) {
  .versprechen-card:hover {
    transform: translateY(-6px) scale(1.008);
    border-color: rgba(184, 232, 52, 0.6) !important;
    box-shadow:
      0 28px 72px -12px rgba(184, 232, 52, 0.4),
      0 12px 36px -8px rgba(184, 232, 52, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    animation-play-state: paused;
  }
  .versprechen-card:hover::after {
    opacity: 1;
    animation-duration: 3.5s;  /* schneller drehen bei hover */
  }
}

/* ─── Badge: subtile Hover-Animation, Icon dreht sich ─── */
.versprechen-badge {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
  position: relative;
  z-index: 2;
}
.versprechen-badge svg {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .versprechen-card:hover .versprechen-badge {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
      0 8px 28px rgba(184, 232, 52, 0.65),
      0 0 32px rgba(184, 232, 52, 0.3);
  }
  .versprechen-card:hover .versprechen-badge svg {
    transform: rotate(-12deg) scale(1.15);
  }
}

/* ─── "5-fache" als prominenter Pulse-Eyecatcher ─── */
.versprechen-text strong {
  font-size: 1.3em !important;
  display: inline-block;
  position: relative;
  text-shadow:
    0 0 24px rgba(184, 232, 52, 0.5),
    0 0 48px rgba(184, 232, 52, 0.25);
  animation: versprechen-five-pulse 3s ease-in-out infinite;
  transition: text-shadow 0.4s ease, transform 0.4s ease;
}

@keyframes versprechen-five-pulse {
  0%, 100% {
    text-shadow:
      0 0 24px rgba(184, 232, 52, 0.5),
      0 0 48px rgba(184, 232, 52, 0.25);
  }
  50% {
    text-shadow:
      0 0 32px rgba(184, 232, 52, 0.85),
      0 0 64px rgba(184, 232, 52, 0.45),
      0 0 96px rgba(184, 232, 52, 0.2);
  }
}

@media (hover: hover) and (pointer: fine) {
  .versprechen-card:hover .versprechen-text strong {
    transform: scale(1.06);
    text-shadow:
      0 0 40px rgba(184, 232, 52, 0.95),
      0 0 80px rgba(184, 232, 52, 0.55),
      0 0 120px rgba(184, 232, 52, 0.3);
    animation-play-state: paused;
  }
}

/* ─── "feuerst du mich" — subtiler Lift bei Hover ─── */
.versprechen-text em {
  display: inline-block;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
}
@media (hover: hover) and (pointer: fine) {
  .versprechen-card:hover .versprechen-text em {
    transform: translateY(-1px);
    text-shadow: 0 0 24px rgba(184, 232, 52, 0.7);
  }
}

/* ─── Reveal-Animation: Card kommt mit Scale + Fade rein ─── */
@media (prefers-reduced-motion: no-preference) {
  .js .versprechen-banner.reveal .versprechen-card {
    opacity: 0;
    transform: translateY(40px) scale(0.94);
    transition:
      opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .js .versprechen-banner.reveal.in .versprechen-card {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ─── Reduced-Motion respektieren ─── */
@media (prefers-reduced-motion: reduce) {
  .versprechen-card,
  .versprechen-card::after,
  .versprechen-text strong,
  .versprechen-badge,
  .versprechen-badge svg,
  .versprechen-text em {
    animation: none !important;
    transition: none !important;
  }
}

/* ─── Mobile: weniger dramatisch (kein Hover möglich) ─── */
@media (max-width: 760px) {
  .versprechen-card {
    animation-duration: 5s;  /* langsamer auf Mobile, weniger störend */
  }
  .versprechen-text strong {
    font-size: 1.2em !important;  /* nicht ganz so groß auf kleinen Screens */
  }
  .versprechen-card::after {
    opacity: 0.6;  /* dezenter auf Mobile */
  }
}


/* ═══════════════════════════════════════════════════════════════
   28) KEVIN-FRAME · INTERAKTIVER EYECATCHER (Web + Mobile)
   ───────────────────────────────────────────────────────────────
   Aus dem ruhigen Profilbild wird ein lebendiges Element:
   - Idle: Halo rotiert langsam, Atmungs-Glow, Color-Pulse
   - Hover (Web): Bild wird FARBIG, dramatischer Glow, scale
   - Mobile: Always-on Animation, Tap-Effekt
   - Conic-Gradient Lauflicht-Ring um das Foto
   ═══════════════════════════════════════════════════════════════ */

/* CSS Houdini Property für rotierenden Conic-Gradient */
@property --kevin-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ─── Frame: Container für alle Effekte ─── */
.kevin-frame {
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Halo: rotiert kontinuierlich + pulsiert sanft (kombinierte Animation) ─── */
.kevin-halo {
  animation: kevin-halo-spin 30s linear infinite !important;
}
@keyframes kevin-halo-spin {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.85;
  }
  25% {
    transform: rotate(90deg) scale(1.025);
    opacity: 1;
  }
  50% {
    transform: rotate(180deg) scale(1.03);
    opacity: 0.95;
  }
  75% {
    transform: rotate(270deg) scale(1.025);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0.85;
  }
}
@keyframes kevin-halo-rotate {
  to { transform: rotate(360deg); }
}

/* ─── Lauflicht-Ring (conic-gradient mit mask) ─── */
.kevin-frame::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(
    from var(--kevin-angle),
    transparent 0deg,
    transparent 240deg,
    rgba(184, 232, 52, 0.3) 290deg,
    rgba(184, 232, 52, 1) 340deg,
    rgba(184, 232, 52, 0.3) 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: kevin-ring-rotate 8s linear infinite;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
  transition: opacity 0.5s ease;
}
@keyframes kevin-ring-rotate {
  to { --kevin-angle: 360deg; }
}

/* Fallback für Browser ohne @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .kevin-frame::before { display: none; }
}

/* ─── Outer Glow-Pulse (Lime-Aura, atmend) ─── */
.kevin-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: kevin-glow-pulse 3.5s ease-in-out infinite;
}
@keyframes kevin-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 40px 4px rgba(184, 232, 52, 0.18),
      0 0 80px 12px rgba(184, 232, 52, 0.08);
  }
  50% {
    box-shadow:
      0 0 60px 8px rgba(184, 232, 52, 0.32),
      0 0 120px 20px rgba(184, 232, 52, 0.15);
  }
}

/* ─── Photo: Atmungs-Animation im Idle ─── */
.kevin-photo {
  animation: kevin-photo-breathe 5s ease-in-out infinite;
  transition:
    filter 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.6s ease,
    box-shadow 0.6s ease !important;
}
@keyframes kevin-photo-breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.015); }
}

/* ─── Hover (Web): Bild wird FARBIG, dramatischer Glow, scale ─── */
@media (hover: hover) and (pointer: fine) {
  .kevin-frame:hover {
    transform: scale(1.02);
  }
  .kevin-frame:hover .kevin-photo {
    /* Voll-farbiges Reveal — der Wow-Moment */
    filter: grayscale(0%) sepia(0%) saturate(1.05) brightness(1.05) contrast(1.05) !important;
    transform: scale(1.06);
    border-color: rgba(184, 232, 52, 0.85) !important;
    box-shadow:
      0 0 0 4px rgba(10, 13, 11, 0.9),
      0 0 80px 12px rgba(184, 232, 52, 0.45),
      0 0 160px 24px rgba(184, 232, 52, 0.2) !important;
    animation-play-state: paused;
  }
  /* Lauflicht schneller bei Hover */
  .kevin-frame:hover::before {
    opacity: 1;
    animation-duration: 4s;
  }
  /* Halo rotiert schneller bei Hover */
  .kevin-frame:hover .kevin-halo {
    animation-duration: 3s, 20s !important;
  }
}

/* ─── Mobile: Always-on Effekt (kein Hover möglich) ─── */
@media (hover: none), (max-width: 760px) {
  /* Foto pulsiert subtil farb-ein und farb-aus statt Hover-Reveal */
  .kevin-photo {
    animation:
      kevin-photo-breathe 5s ease-in-out infinite,
      kevin-photo-color-cycle 8s ease-in-out infinite;
  }
  @keyframes kevin-photo-color-cycle {
    0%, 100% {
      filter: grayscale(85%) sepia(28%) hue-rotate(15deg) saturate(0.9) brightness(1.02) contrast(1.05);
    }
    50% {
      filter: grayscale(40%) sepia(15%) hue-rotate(15deg) saturate(1.1) brightness(1.06) contrast(1.05);
    }
  }
  /* Lauflicht-Ring etwas dezenter auf Mobile */
  .kevin-frame::before {
    opacity: 0.65;
  }
  /* Tap-Effekt: kurzer Glow + scale */
  .kevin-frame:active {
    transform: scale(0.98);
  }
  .kevin-frame:active .kevin-photo {
    filter: grayscale(0%) saturate(1.1) brightness(1.08) !important;
    border-color: rgba(184, 232, 52, 0.9) !important;
    box-shadow:
      0 0 0 4px rgba(10, 13, 11, 0.9),
      0 0 80px 16px rgba(184, 232, 52, 0.5) !important;
  }
}

/* ─── Reduced-Motion respektieren ─── */
@media (prefers-reduced-motion: reduce) {
  .kevin-frame,
  .kevin-frame::before,
  .kevin-frame::after,
  .kevin-halo,
  .kevin-photo {
    animation: none !important;
    transition: opacity 0.3s ease !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   28) MOBILE-ONLY HERO-VARIATION (nur auf der Startseite)
   ───────────────────────────────────────────────────────────────
   Auf Mobile bekommt der Hero kürzeren, direkteren Text:
   - Slogan fetter, mit direkter Du-Ansprache
   - Lede kompakt
   - Hero-Banner gekürzt
   Desktop bleibt unverändert.
   ═══════════════════════════════════════════════════════════════ */

/* Visibility-Klassen */
.hide-desktop { display: none !important; }
@media (max-width: 760px) {
  .hide-mobile { display: none !important; }
  /* Re-aktivieren mit korrektem display-Wert je nach Element-Typ */
  .hero-slogan.hide-desktop,
  p.hide-desktop,
  div.hide-desktop {
    display: block !important;
  }
  span.hide-desktop {
    display: inline-block !important;
  }
}

/* Mobile-Slogan: maximal fett, größer, direkter */
@media (max-width: 760px) {
  .hero-slogan-strong {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important;
    line-height: 1.05 !important;
    letter-spacing: 0.003em !important;
    color: var(--lime) !important;
    opacity: 1 !important;
    margin-bottom: 22px !important;
    /* Anton hat nur weight 400 — text-stroke macht Buchstaben dicker */
    -webkit-text-stroke: 0.8px var(--lime);
    text-stroke: 0.8px var(--lime);
    /* Glow + leichter Shadow für mehr Präsenz */
    text-shadow:
      0 0 1px var(--lime),
      0 0 36px rgba(184, 232, 52, 0.3),
      0 2px 12px rgba(0, 0, 0, 0.4);
  }
}


/* ═══════════════════════════════════════════════════════════════
   29) CHATBOT · "Kevin's Bot" Floating-Bubble + Chat-Window
   ───────────────────────────────────────────────────────────────
   Farben & Schriften 100% brand-konform:
   - Background: --bg / --bg-card
   - Akzente: --lime
   - Display-Font: Anton, Body: Inter
   - Bot-Bubbles: dezenter Card-Stil, User-Bubbles: Lime
   ═══════════════════════════════════════════════════════════════ */

/* ─── Floating Action Button (FAB) mit Kevin-Foto ─── */
.chatbot-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lime);
  border: 3px solid var(--lime);
  cursor: pointer;
  padding: 0;
  z-index: 90;
  box-shadow:
    0 8px 32px rgba(184, 232, 52, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
  overflow: visible;
}
.chatbot-fab-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
/* Chat-Badge: kleines Symbol unten rechts an der Bubble */
.chatbot-fab-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: var(--lime);
  color: var(--bg);
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.chatbot-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 12px 40px rgba(184, 232, 52, 0.55),
    0 6px 20px rgba(0, 0, 0, 0.6);
}
.chatbot-fab:active {
  transform: translateY(-1px) scale(1.02);
}

/* Pulse-Ring um den FAB (idle) */
.chatbot-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--lime);
  animation: chatbot-fab-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes chatbot-fab-pulse {
  0%   { transform: scale(1);    opacity: 0.7; }
  100% { transform: scale(1.5);  opacity: 0; }
}

/* FAB ausblenden wenn Chat offen */
body.chatbot-active .chatbot-fab {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

/* iOS-safe-area Berücksichtigung */
@supports (bottom: env(safe-area-inset-bottom)) {
  .chatbot-fab {
    bottom: max(20px, env(safe-area-inset-bottom));
  }
}

/* Mobile: Floating Pill (Sticky-CTA) gibt's auch unten — Bot oberhalb */
@media (max-width: 879px) {
  .chatbot-fab {
    bottom: 92px;  /* Über der Sticky-CTA */
    right: 14px;
    width: 60px;
    height: 60px;
    border-width: 2.5px;
  }
  .chatbot-fab-badge {
    width: 22px;
    height: 22px;
  }
  @supports (bottom: env(safe-area-inset-bottom)) {
    .chatbot-fab {
      bottom: calc(92px + env(safe-area-inset-bottom));
    }
  }
}

/* ─── Backdrop (dunkler Layer hinter Chat) ─── */
.chatbot-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 11, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 95;
}
.chatbot-backdrop.chatbot-backdrop-open {
  opacity: 1;
  pointer-events: auto;
}

/* ─── Chat-Window ─── */
.chatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 380px;
  height: min(640px, calc(100vh - 40px));
  background: var(--bg-card, #131A14);
  border: 1px solid rgba(184, 232, 52, 0.18);
  border-radius: 18px;
  box-shadow:
    0 24px 64px -8px rgba(0, 0, 0, 0.7),
    0 8px 24px rgba(184, 232, 52, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--body, 'Inter', sans-serif);
}
.chatbot.chatbot-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@media (max-width: 879px) {
  .chatbot {
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    border: none;
  }
}

/* ─── Header ─── */
.chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.08) 0%,
    rgba(19, 26, 20, 0.95) 100%);
  border-bottom: 1px solid rgba(184, 232, 52, 0.12);
  flex-shrink: 0;
}
.chatbot-head-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(184, 232, 52, 0.3);
  overflow: hidden;
  border: 2px solid var(--lime);
}
.chatbot-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.chatbot-title {
  font-family: var(--display, 'Anton', sans-serif);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1.2;
}
.chatbot-status {
  font-size: 0.74rem;
  color: rgba(237, 234, 221, 0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.chatbot-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 6px var(--lime);
  animation: chatbot-status-pulse 2s ease-in-out infinite;
}
@keyframes chatbot-status-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.chatbot-close {
  background: transparent;
  border: none;
  color: rgba(237, 234, 221, 0.6);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
}

/* ─── Body / Chat-Verlauf ─── */
.chatbot-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chatbot-body::-webkit-scrollbar {
  width: 6px;
}
.chatbot-body::-webkit-scrollbar-thumb {
  background: rgba(184, 232, 52, 0.2);
  border-radius: 3px;
}
.chatbot-body::-webkit-scrollbar-thumb:hover {
  background: rgba(184, 232, 52, 0.35);
}

/* ─── Bubbles ─── */
.chatbot-bubble {
  max-width: 82%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: chatbot-bubble-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
@keyframes chatbot-bubble-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.chatbot-bubble-bot {
  align-self: flex-start;
}
.chatbot-bubble-user {
  align-self: flex-end;
}
.chatbot-bubble-text {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  word-wrap: break-word;
}
.chatbot-bubble-bot .chatbot-bubble-text {
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: 4px;
}
.chatbot-bubble-user .chatbot-bubble-text {
  background: var(--lime);
  color: var(--bg);
  font-weight: 500;
  border-bottom-right-radius: 4px;
}

/* Typing-Indikator */
.chatbot-typing .chatbot-bubble-text {
  display: inline-flex;
  gap: 4px;
  padding: 14px 16px;
}
.chatbot-typing .chatbot-bubble-text span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(237, 234, 221, 0.5);
  animation: chatbot-typing-dot 1.2s ease-in-out infinite;
}
.chatbot-typing .chatbot-bubble-text span:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing .chatbot-bubble-text span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chatbot-typing-dot {
  0%, 60%, 100% { transform: scale(1); opacity: 0.5; }
  30% { transform: scale(1.3); opacity: 1; }
}

/* In-Bubble Buttons (CTAs) */
.chatbot-bubble-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.chatbot-bubble-btn {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  border: 1px solid rgba(184, 232, 52, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.chatbot-bubble-btn:hover {
  background: rgba(184, 232, 52, 0.1);
  border-color: rgba(184, 232, 52, 0.5);
  transform: translateY(-1px);
}
.chatbot-bubble-btn-primary {
  background: var(--lime);
  color: var(--bg);
  border-color: var(--lime);
  font-weight: 600;
}
.chatbot-bubble-btn-primary:hover {
  background: var(--lime);
  filter: brightness(1.05);
  box-shadow: 0 4px 14px rgba(184, 232, 52, 0.35);
}

/* ─── Quick-Replies (oberhalb Input) ─── */
.chatbot-quickreplies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 8px;
  flex-shrink: 0;
}
.chatbot-quickreply {
  background: rgba(184, 232, 52, 0.08);
  color: var(--lime);
  border: 1px solid rgba(184, 232, 52, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-family: var(--body, 'Inter', sans-serif);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}
.chatbot-quickreply:hover {
  background: rgba(184, 232, 52, 0.18);
  transform: translateY(-1px);
}

/* ─── Input-Form ─── */
.chatbot-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}
@supports (padding: env(safe-area-inset-bottom)) {
  .chatbot-input {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}
.chatbot-input input {
  flex: 1 1 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--cream);
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.chatbot-input input::placeholder {
  color: rgba(237, 234, 221, 0.4);
}
.chatbot-input input:focus {
  border-color: rgba(184, 232, 52, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.chatbot-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(184, 232, 52, 0.3);
}
.chatbot-send:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(184, 232, 52, 0.5);
}
.chatbot-send:active {
  transform: scale(0.96);
}

/* ─── Reduced-Motion respektieren ─── */
@media (prefers-reduced-motion: reduce) {
  .chatbot,
  .chatbot-fab,
  .chatbot-fab-pulse,
  .chatbot-status-dot,
  .chatbot-bubble,
  .chatbot-typing .chatbot-bubble-text span {
    animation: none !important;
    transition: opacity 0.2s ease !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   30) PROBLEME · KNALLROT MIT DRAMA (V2)
   ───────────────────────────────────────────────────────────────
   Die drei Stat-Cards (68%, 30h, 87%) bekommen visuell mehr
   Härte: roter Akzent-Streifen, knalligere Zahl mit text-stroke,
   stärkerer Pulse-Glow, kraftvollere Hover-Reaktion.
   ═══════════════════════════════════════════════════════════════ */

.problem-card {
  border-left: 3px solid var(--warn, #E85D4F) !important;
  background: linear-gradient(
    135deg,
    rgba(232, 93, 79, 0.05) 0%,
    var(--bg-card, #131A14) 65%
  ) !important;
  position: relative;
}

/* Roter Glow oben links der Card (Akzent) */
.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle at top left,
    rgba(232, 93, 79, 0.18),
    transparent 70%
  );
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.problem-card:hover::before {
  opacity: 1;
}

/* Zahl: deutlich fetter via text-stroke, größer, mit dramatischem Pulse */
.problem-num {
  font-size: clamp(2.6rem, 4.5vw, 3.6rem) !important;
  -webkit-text-stroke: 1px var(--warn, #E85D4F);
  text-stroke: 1px var(--warn, #E85D4F);
  text-shadow:
    0 0 1px var(--warn, #E85D4F),
    0 0 32px rgba(232, 93, 79, 0.45);
  animation: painPulseStrong 3s ease-in-out infinite !important;
}

@keyframes painPulseStrong {
  0%, 100% {
    text-shadow:
      0 0 1px var(--warn, #E85D4F),
      0 0 24px rgba(232, 93, 79, 0.45);
  }
  50% {
    text-shadow:
      0 0 1px var(--warn, #E85D4F),
      0 0 44px rgba(232, 93, 79, 0.75),
      0 0 80px rgba(232, 93, 79, 0.3);
  }
}

/* Hover: Pulse pausiert, Card stark hervorgehoben, alles knalliger */
.problem-card:hover {
  border-color: rgba(232, 93, 79, 0.7) !important;
  border-left-color: var(--warn, #E85D4F) !important;
  border-left-width: 4px !important;
  box-shadow:
    0 18px 48px -12px rgba(232, 93, 79, 0.4),
    0 6px 24px rgba(232, 93, 79, 0.2) !important;
}
.problem-card:hover .problem-num {
  animation-play-state: paused !important;
  text-shadow:
    0 0 1px var(--warn, #E85D4F),
    0 0 48px rgba(232, 93, 79, 0.85),
    0 0 96px rgba(232, 93, 79, 0.35) !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .problem-num { animation: none !important; }
}


/* ═══════════════════════════════════════════════════════════════
   31) DREI HEBEL · PREMIUM-EYECATCHER (V2)
   ───────────────────────────────────────────────────────────────
   Pillar-Cards bekommen:
   - Animierter Conic-Gradient Lauflicht-Border (idle subtil)
   - Nummern (01/02/03) groß, prominent mit Lime-Glow
   - Icon (A/B/S) größer mit atmendem Pulse-Glow
   - Lime Akzent-Linie unten beim Reveal (animiert)
   - Stärkere Hover-Interaktion mit Glow-Explosion
   ═══════════════════════════════════════════════════════════════ */

/* CSS Houdini Property für rotierenden Pillar-Border */
@property --pillar-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.pillar {
  position: relative !important;
  isolation: isolate;
  border: 1px solid rgba(184, 232, 52, 0.14) !important;
  border-radius: 14px !important;
  background: linear-gradient(
    180deg,
    var(--bg-card, #131A14) 0%,
    rgba(184, 232, 52, 0.02) 100%
  ) !important;
  padding: 36px 28px 32px !important;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease !important;
}

/* Subtle Lauflicht-Border (idle, nur sichtbar bei Hover stark) */
.pillar::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  padding: 1.5px !important;
  background: conic-gradient(
    from var(--pillar-angle),
    transparent 0deg,
    transparent 290deg,
    rgba(184, 232, 52, 0.4) 320deg,
    rgba(184, 232, 52, 1) 340deg,
    rgba(184, 232, 52, 0.4) 360deg
  ) !important;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: pillar-rotate 8s linear infinite;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

@keyframes pillar-rotate {
  to { --pillar-angle: 360deg; }
}

/* Fallback für Browser ohne @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .pillar::after { display: none !important; }
}

/* Pillar Inhalt z-index sicherstellen */
.pillar > * {
  position: relative;
  z-index: 1;
}

/* ─── Pillar-Number (01/02/03) prominent ─── */
.pillar-number {
  position: absolute !important;
  top: 24px !important;
  left: 28px !important;
  font-family: var(--display, 'Anton', sans-serif) !important;
  font-size: clamp(2.2rem, 4vw, 3rem) !important;
  color: var(--lime, #B8E834) !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-shadow:
    0 0 20px rgba(184, 232, 52, 0.35),
    0 0 40px rgba(184, 232, 52, 0.15);
  animation: pillar-num-pulse 4s ease-in-out infinite;
  z-index: 2 !important;
}

@keyframes pillar-num-pulse {
  0%, 100% {
    text-shadow:
      0 0 20px rgba(184, 232, 52, 0.35),
      0 0 40px rgba(184, 232, 52, 0.15);
  }
  50% {
    text-shadow:
      0 0 28px rgba(184, 232, 52, 0.55),
      0 0 56px rgba(184, 232, 52, 0.3),
      0 0 80px rgba(184, 232, 52, 0.15);
  }
}

/* Pillar-Number Underline beim Reveal */
.pillar-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--lime, #B8E834);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--lime, #B8E834);
  transition: width 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.4s;
}
.pillar.in .pillar-number::after,
.reveal.in .pillar .pillar-number::after,
.pillars-grid.in .pillar .pillar-number::after {
  width: 60%;
}

/* ─── Pillar-Icon (A/B/S) deutlich größer + atmender Glow ─── */
.pillar-icon {
  width: 64px !important;
  height: 64px !important;
  border-width: 2px !important;
  border-color: rgba(184, 232, 52, 0.6) !important;
  font-size: 1.7rem !important;
  margin-top: 56px !important; /* Platz für Number oben */
  margin-bottom: 24px !important;
  box-shadow:
    0 0 0 4px rgba(184, 232, 52, 0.04),
    0 0 20px rgba(184, 232, 52, 0.2),
    inset 0 0 12px rgba(184, 232, 52, 0.08);
  animation: pillar-icon-breathe 4s ease-in-out infinite;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease !important;
}

@keyframes pillar-icon-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(184, 232, 52, 0.04),
      0 0 20px rgba(184, 232, 52, 0.2),
      inset 0 0 12px rgba(184, 232, 52, 0.08);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(184, 232, 52, 0.08),
      0 0 30px rgba(184, 232, 52, 0.4),
      inset 0 0 16px rgba(184, 232, 52, 0.12);
  }
}

/* ─── Toggle-Button (+) modernisiert ─── */
.pillar-toggle {
  width: 36px !important;
  height: 36px !important;
  border: 1px solid rgba(184, 232, 52, 0.4) !important;
  background: rgba(184, 232, 52, 0.08) !important;
  color: var(--lime, #B8E834) !important;
  font-size: 1.3rem !important;
  font-weight: 400 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: absolute !important;
  top: 24px !important;
  right: 24px !important;
  cursor: pointer !important;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease !important;
  z-index: 2 !important;
}
.pillar-toggle:hover {
  background: rgba(184, 232, 52, 0.18) !important;
  border-color: var(--lime, #B8E834) !important;
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 16px rgba(184, 232, 52, 0.4);
}

/* ─── HOVER: Card kommt zum Leben ─── */
@media (hover: hover) and (pointer: fine) {
  .pillar:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(184, 232, 52, 0.45) !important;
    box-shadow:
      0 28px 64px -12px rgba(184, 232, 52, 0.35),
      0 12px 36px -8px rgba(184, 232, 52, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
    background: linear-gradient(
      180deg,
      var(--bg-card, #131A14) 0%,
      rgba(184, 232, 52, 0.06) 100%
    ) !important;
  }
  .pillar:hover::after {
    opacity: 1 !important;
    animation-duration: 4s !important;
  }
  .pillar:hover .pillar-icon {
    transform: scale(1.1) rotate(-6deg) !important;
    border-color: var(--lime, #B8E834) !important;
    box-shadow:
      0 0 0 6px rgba(184, 232, 52, 0.1),
      0 0 36px rgba(184, 232, 52, 0.55),
      inset 0 0 20px rgba(184, 232, 52, 0.18) !important;
    animation-play-state: paused;
  }
  .pillar:hover .pillar-number {
    animation-play-state: paused;
    text-shadow:
      0 0 32px rgba(184, 232, 52, 0.7),
      0 0 64px rgba(184, 232, 52, 0.4),
      0 0 96px rgba(184, 232, 52, 0.2);
  }
}

/* ─── Reveal: alle Animationen pausieren wenn nicht in viewport ─── */
@media (prefers-reduced-motion: reduce) {
  .pillar::after,
  .pillar-number,
  .pillar-icon {
    animation: none !important;
  }
}

/* ─── Mobile: weniger dramatisch ─── */
@media (max-width: 760px) {
  .pillar {
    padding: 32px 24px 28px !important;
  }
  .pillar-number {
    top: 20px !important;
    left: 24px !important;
  }
  .pillar-toggle {
    top: 20px !important;
    right: 20px !important;
  }
  .pillar-icon {
    margin-top: 48px !important;
    width: 56px !important;
    height: 56px !important;
    font-size: 1.5rem !important;
  }
  .pillar::after {
    opacity: 0.35 !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   32) STARTSEITE MOBILE: NUR DER BOT — alle anderen CTAs aus
   ───────────────────────────────────────────────────────────────
   Auf der Startseite (body.has-chatbot) wird auf Mobile alles
   andere als der Chat-Bot ausgeblendet:
   - Hero-CTA-Buttons ("Frag mich was" + "Lieber anrufen") → aus
   - Sticky-CTA ("Termin buchen" + Phone) → aus
   - Body-Padding zurück auf 0
   Die Bot-Bubble bleibt als einziger CTA und übernimmt
   alle Conversion-Wege intern.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 879px) {
  /* Hero-CTA Buttons komplett aus */
  body.has-chatbot .hero-cta {
    display: none !important;
  }
  /* Sticky-CTA komplett aus */
  body.has-chatbot .sticky-cta {
    display: none !important;
  }
  /* Body-Padding zurücksetzen */
  body.has-chatbot {
    padding-bottom: 0 !important;
  }
  /* Bot tiefer positioniert (kein Sticky drüber) */
  body.has-chatbot .chatbot-fab {
    bottom: 20px !important;
    right: 20px !important;
    width: 64px !important;
    height: 64px !important;
  }
  @supports (bottom: env(safe-area-inset-bottom)) {
    body.has-chatbot .chatbot-fab {
      bottom: max(20px, env(safe-area-inset-bottom)) !important;
    }
  }
  /* Bot stärker pulsen lassen, weil er jetzt einziger CTA ist */
  body.has-chatbot .chatbot-fab-pulse {
    border-width: 3px;
    animation-duration: 1.8s !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   33) BOT · MEHR AUFMERKSAMKEIT (V2)
   ───────────────────────────────────────────────────────────────
   - Doppel-Pulse-Ring (versetzte Phase)
   - Periodischer Bounce alle 8 Sekunden
   - Tooltip "Hi 👋 Frag mich!" zeigt 4x, dann pause
   - Stärkerer Glow drumherum
   ═══════════════════════════════════════════════════════════════ */

/* ─── FAB: stärkerer Glow ─── */
.chatbot-fab {
  animation: chatbot-fab-bounce 8s ease-in-out infinite !important;
  box-shadow:
    0 8px 32px rgba(184, 232, 52, 0.5),
    0 0 0 0 rgba(184, 232, 52, 0.4),
    0 4px 16px rgba(0, 0, 0, 0.5) !important;
}

/* Periodischer Bounce: alle 8 Sekunden ein kleines "Hopp" */
@keyframes chatbot-fab-bounce {
  0%, 84%, 100% {
    transform: translateY(0) scale(1);
  }
  86% {
    transform: translateY(-10px) scale(1.06);
  }
  90% {
    transform: translateY(-2px) scale(1.02);
  }
  94% {
    transform: translateY(-6px) scale(1.04);
  }
  98% {
    transform: translateY(0) scale(1);
  }
}

/* Hover: Bounce-Animation pausieren, eigener Lift übernimmt */
.chatbot-fab:hover {
  animation-play-state: paused !important;
}

/* ─── Zweiter Pulse-Ring (versetzte Phase) ─── */
.chatbot-fab-pulse,
.chatbot-fab-pulse-2 {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid var(--lime, #B8E834);
  animation: chatbot-fab-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
.chatbot-fab-pulse-2 {
  animation-delay: 1.1s;
}
@keyframes chatbot-fab-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
    border-width: 3px;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
    border-width: 1px;
  }
}

/* ─── Begrüßungs-Tooltip ─── */
.chatbot-fab-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card, #131A14);
  color: var(--cream, #EDEADD);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--lime, #B8E834);
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  max-width: 240px;
  width: max-content;
  white-space: normal;
  text-align: left;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(184, 232, 52, 0.3);
  pointer-events: none;
  opacity: 0;
  /* Animation: 4 Zyklen, dann hört auf */
  animation: chatbot-tooltip-cycle 9s ease-in-out 2s 4;
  z-index: 91;
}

/* Pfeil-Spitze (rechts vom Tooltip → zeigt auf Bot) */
.chatbot-fab-tooltip::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 12px;
  height: 12px;
  background: var(--bg-card, #131A14);
  border-right: 1.5px solid var(--lime, #B8E834);
  border-top: 1.5px solid var(--lime, #B8E834);
  transform: translateY(-50%) rotate(45deg);
}

@keyframes chatbot-tooltip-cycle {
  0% {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
  8% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
  58% {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
  }
}

/* Wenn Chat offen oder mal geklickt → Tooltip sofort weg */
body.chatbot-active .chatbot-fab-tooltip,
.chatbot-fab.chat-was-opened .chatbot-fab-tooltip {
  animation: none !important;
  opacity: 0 !important;
  display: none !important;
}

/* ─── Reduced motion respektieren ─── */
@media (prefers-reduced-motion: reduce) {
  .chatbot-fab,
  .chatbot-fab-pulse,
  .chatbot-fab-pulse-2,
  .chatbot-fab-tooltip {
    animation: none !important;
  }
}

/* ─── Mobile: Tooltip etwas kleiner, alle Effekte aktiv ─── */
@media (max-width: 760px) {
  .chatbot-fab-tooltip {
    font-size: 0.82rem;
    padding: 10px 14px;
    right: calc(100% + 12px);
    max-width: 200px;
  }
}
@media (max-width: 380px) {
  .chatbot-fab-tooltip {
    max-width: 170px;
    font-size: 0.78rem;
  }
}


/* ═══════════════════════════════════════════════════════════════
   34) STICKY-CTA · KOMPLETT AUS (Bot ist überall)
   ───────────────────────────────────────────────────────────────
   Da der Bot jetzt auf allen Seiten verfügbar ist, brauchen wir
   keine zusätzliche Sticky-CTA mehr. Termin-buchen-Buttons
   bleiben am Ende jeder Seite (CTA-Banner) erhalten.
   ═══════════════════════════════════════════════════════════════ */
.sticky-cta {
  display: none !important;
}
body {
  padding-bottom: 0 !important;
}


/* ═══════════════════════════════════════════════════════════════
   35) "KEVIN" · 3× WEISSE UNTERSTREICHUNG (Hero-Slogan)
   ───────────────────────────────────────────────────────────────
   Das <em>ein Kevin</em> im Hero-Slogan bekommt eine animierte
   Unterstreichung in Weiß, die 3x schnell hintereinander
   pinselt — als optischer Eyecatcher beim Page-Load.
   ═══════════════════════════════════════════════════════════════ */
.hero-slogan em,
.page-hero-slogan em {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: var(--cream);
}

.hero-slogan em::after,
.page-hero-slogan em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2.5px;
  width: 100%;
  background: var(--cream, #EDEADD);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  /* 3 schnelle Pulse mit 1.5s Delay nach Pageload */
  animation: kevin-underline-3x 0.55s cubic-bezier(0.22, 1, 0.36, 1) 1.5s 3 forwards;
  pointer-events: none;
}

@keyframes kevin-underline-3x {
  0%   { transform: scaleX(0); transform-origin: left; }
  40%  { transform: scaleX(1); transform-origin: left; }
  60%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slogan em::after,
  .page-hero-slogan em::after {
    animation: none !important;
    transform: scaleX(0) !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   36) IMPRESSUM · TRUST-BADGE "Geprüft von IT-Recht-Kanzlei"
   ───────────────────────────────────────────────────────────────
   Sichtbarer Vertrauens-Block oben im Impressum mit Schild-Icon
   und Kanzlei-Verweis. Fügt rechtliche Glaubwürdigkeit hinzu.
   ═══════════════════════════════════════════════════════════════ */
.impressum-trust {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg,
    rgba(184, 232, 52, 0.08) 0%,
    rgba(19, 26, 20, 0.95) 100%);
  border: 1px solid rgba(184, 232, 52, 0.3);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px -8px rgba(184, 232, 52, 0.12);
}

.impressum-trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime, #B8E834);
  color: var(--bg, #0A0D0B);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(184, 232, 52, 0.3);
}

.impressum-trust strong {
  display: block;
  font-family: var(--display, 'Anton', sans-serif);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--lime, #B8E834);
  margin-bottom: 4px;
}

.impressum-trust p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(237, 234, 221, 0.85);
}

.impressum-trust a {
  color: var(--lime, #B8E834);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s ease;
}

.impressum-trust a:hover {
  opacity: 0.8;
}

@media (max-width: 540px) {
  .impressum-trust {
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   37) COOKIE-CONSENT-BANNER · brand-konform
   ───────────────────────────────────────────────────────────────
   - Banner unten am Bildschirm, slidet von unten ein
   - Lime Akzente, Dark-Theme, Anton + Inter
   - Mobile: bottom sheet style
   - Detail-View mit Toggle-Switches für jede Kategorie
   ═══════════════════════════════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 88;
  pointer-events: none;
  transform: translateY(100%);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  padding: 16px;
}

.cookie-banner-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg-card, #131A14);
  border: 1px solid rgba(184, 232, 52, 0.25);
  border-radius: 16px;
  padding: 24px;
  box-shadow:
    0 24px 64px -8px rgba(0, 0, 0, 0.7),
    0 8px 24px rgba(184, 232, 52, 0.08);
  font-family: var(--body, 'Inter', sans-serif);
}

@supports (padding: env(safe-area-inset-bottom)) {
  .cookie-banner {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* ─── Main View (initial) ─── */
.cookie-banner-main {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}

.cookie-banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime, #B8E834);
  color: var(--bg, #0A0D0B);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(184, 232, 52, 0.3);
  grid-row: span 2;
}

.cookie-banner-text strong {
  display: block;
  font-family: var(--display, 'Anton', sans-serif);
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--cream, #EDEADD);
  margin-bottom: 6px;
}

.cookie-banner-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(237, 234, 221, 0.8);
}

.cookie-banner-text a {
  color: var(--lime, #B8E834);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  justify-content: flex-end;
}

/* ─── Buttons ─── */
.cookie-btn {
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(184, 232, 52, 0.25);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.cookie-btn-ghost {
  background: transparent;
  color: var(--cream, #EDEADD);
}
.cookie-btn-ghost:hover {
  background: rgba(184, 232, 52, 0.08);
  border-color: rgba(184, 232, 52, 0.5);
}

.cookie-btn-primary {
  background: var(--lime, #B8E834);
  color: var(--bg, #0A0D0B);
  border-color: var(--lime, #B8E834);
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(184, 232, 52, 0.3);
}
.cookie-btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(184, 232, 52, 0.45);
}

.cookie-btn:active {
  transform: translateY(0) scale(0.98);
}

/* ─── Detail View (Customize) ─── */
.cookie-back {
  background: transparent;
  border: none;
  color: rgba(237, 234, 221, 0.65);
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 4px 0;
  margin-bottom: 16px;
  transition: color 0.2s ease;
}
.cookie-back:hover {
  color: var(--cream, #EDEADD);
}

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.cookie-cat {
  display: block;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}
.cookie-cat:hover {
  border-color: rgba(184, 232, 52, 0.2);
}

.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.cookie-cat-head strong {
  font-family: var(--body, 'Inter', sans-serif);
  font-size: 0.98rem;
  color: var(--cream, #EDEADD);
  font-weight: 600;
}

.cookie-cat-always {
  font-size: 0.78rem;
  color: rgba(184, 232, 52, 0.7);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(184, 232, 52, 0.08);
  border: 1px solid rgba(184, 232, 52, 0.2);
}

.cookie-cat p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(237, 234, 221, 0.7);
}

/* ─── Toggle-Switch ─── */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.cookie-toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(237, 234, 221, 0.85);
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: rgba(184, 232, 52, 0.25);
  border-color: var(--lime, #B8E834);
}
.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateY(-50%) translateX(18px);
  background: var(--lime, #B8E834);
  box-shadow: 0 0 10px rgba(184, 232, 52, 0.5);
}

/* ─── Mobile ─── */
@media (max-width: 760px) {
  .cookie-banner {
    padding: 12px;
  }
  .cookie-banner-inner {
    padding: 20px;
    border-radius: 14px;
  }
  .cookie-banner-main {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .cookie-banner-icon {
    grid-row: auto;
  }
  .cookie-banner-text strong {
    font-size: 1.05rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
  }
  .cookie-btn {
    width: 100%;
    text-align: center;
    padding: 12px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-toggle-slider,
  .cookie-toggle-slider::before,
  .cookie-btn {
    transition: opacity 0.2s ease !important;
  }
}


/* ===============================================================
   28) NAV-INNER ALWAYS-VISIBLE (28.04.2026)  [MARKER: NAV-V2]
   ---------------------------------------------------------------
   Alle Unterseiten der Hauptseite sollen oben links Logo +
   "DreiHundertSechzig" zeigen, oben rechts den Burger. Beides
   IMMER sichtbar - egal ob Menue offen oder geschlossen.
   
   Bisher: Im closed state war .nav-links zwar nach oben weg-
   translatet, aber dessen Unterkante ragte mit "Kontakt"
   (letzter Menue-Eintrag) noch in den Viewport rein. Die nav-inner
   Inhalte (Logo, Burger) wurden vom Geist-Element verdeckt.
   
   Fix:
   1. nav-inner bekommt eigene Stacking-Schicht (z-index 100)
      mit solidem Hintergrund - alles was dahinter liegt wird
      verdeckt.
   2. Logo + alle Kinder werden mit !important auf sichtbar
      und cream-Farbe gezwungen.
   3. nav-links bekommt visibility:hidden im closed state als
      zusaetzlicher Schutz.
   =============================================================== */

@media (max-width: 880px) {
  /* nav-inner: eigene Stacking-Schicht ueber nav-links */
  nav#nav .nav-inner {
    position: relative !important;
    z-index: 100 !important;
    background: rgb(10, 13, 11) !important;
  }
  
  /* Logo: immer sichtbar, cream-Farbe, mit allen Kindern */
  nav#nav .nav-inner > a.logo {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--cream) !important;
  }
  nav#nav .nav-inner > a.logo > span {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: var(--cream) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
  }
  nav#nav .nav-inner > a.logo > span > em {
    color: var(--lime) !important;
    font-style: italic !important;
    font-weight: 500 !important;
  }
  nav#nav .nav-inner > a.logo .logo-mark {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 28px !important;
    height: 28px !important;
  }
  
  /* Burger: immer sichtbar rechts */
  nav#nav .nav-inner > .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* nav-links: doppelter Schutz gegen Geist-Element */
  .nav-links {
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav.open .nav-links {
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s linear 0s;
  }
}

/* ═══════════════════════════════════════════════════════════════
   LOGO 360° — transparent, rotierend, "schwebend"
   ═══════════════════════════════════════════════════════════════ */
.logo .logo-mark {
  /* Sanfte permanente 360°-Rotation — passt zur Marke DreiHundertSechzig */
  animation: logo-rotate-360 60s linear infinite;
  transform-origin: 50% 50%;
  /* Leichter Lime-Glow um das Halo verstärkt das "Schweben" */
  filter: drop-shadow(0 0 6px rgba(184, 232, 52, 0.35));
  transition: filter 0.4s ease, animation-duration 0.4s ease;
  will-change: transform;
}
/* Beim Hover über den Logo-Link: schneller drehen + stärkerer Glow */
.logo:hover .logo-mark {
  animation-duration: 3s;
  filter: drop-shadow(0 0 12px rgba(184, 232, 52, 0.7));
}
/* Initial-Boost: erste 1.5s nach Page-Load schneller drehen — Aufmerksamkeit */
.logo .logo-mark {
  animation: logo-rotate-360 1.5s linear, logo-rotate-360 60s linear 1.5s infinite;
}
@keyframes logo-rotate-360 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* Accessibility: Wer Bewegung reduzieren will, bekommt statisches Logo */
@media (prefers-reduced-motion: reduce) {
  .logo .logo-mark {
    animation: none !important;
    filter: drop-shadow(0 0 4px rgba(184, 232, 52, 0.25));
  }
  .logo:hover .logo-mark {
    animation: none !important;
    filter: drop-shadow(0 0 8px rgba(184, 232, 52, 0.5));
  }
}

/* ═══════════════════════════════════════════════════════════════
   ZWEIFARBIGES SYSTEM — Lime (Kevin) + Orange (Handwerker)
   ═══════════════════════════════════════════════════════════════ */
/* Orange-Variante der .brush-Underline — für Handwerker-bezogene Begriffe */
.brush-orange {
  position: relative;
  display: inline-block;
  z-index: 0;
}
.brush-orange::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0.05em;
  height: 0.18em;
  background: var(--orange);
  border-radius: 50% 50% 50% 50% / 100% 100% 0 0;
  transform: skew(-8deg) rotate(-1.2deg);
  opacity: 0.85;
  z-index: -1;
}
.display .brush-orange { line-height: 1.15; }

/* Direkter Orange-Text */
.orange  { color: var(--orange); }
.green   { color: var(--orange); }   /* Override: vorhandene `.green` Klasse → jetzt orange (Handwerker-Begriffe in Headline) */

/* Erweitert: lime-fett, orange-fett für Inline-Hervorhebungen ohne brush */
strong.lime, .lime strong  { color: var(--lime); }
strong.orange, .orange strong { color: var(--orange); }


/* ═══════════════════════════════════════════════════════════════
   HERO-SLOGAN CLEAN — kürzer, sauberere Absätze (Bild 1)
   ═══════════════════════════════════════════════════════════════ */
.hero-slogan-clean {
  font-family: var(--ff-sans);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--cream);
  margin: 18px 0 28px;
  max-width: 720px;
  letter-spacing: -0.005em;
}
.hero-slogan-clean strong {
  color: var(--cream);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hero-slogan-clean em {
  font-family: var(--ff-serif, 'Fraunces', serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.08em;
}
@media (max-width: 760px) {
  .hero-slogan-clean { font-size: 1.05rem; line-height: 1.5; margin: 14px 0 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO-STATS — pulsierende Stats-Pills im Hero (Bild 3)
   <2 Wochen · 24/7 · 1 Ansprechpartner
   ═══════════════════════════════════════════════════════════════ */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 32px;
  max-width: 720px;
}
.hero-stat {
  position: relative;
  background: linear-gradient(180deg, rgba(10,13,11,0.85), rgba(10,13,11,0.78));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,138,31,0.45);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.hero-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(ellipse at center top, rgba(255,138,31,0.22) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.hero-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(255,138,31,0.7);
  background: linear-gradient(180deg, rgba(10,13,11,0.92), rgba(10,13,11,0.85));
}
.hero-stat:hover::before { opacity: 1; }
.hero-stat-num {
  display: block;
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--orange);
  line-height: 1.1;
  margin-bottom: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.hero-stat-num .lt {
  font-family: var(--ff-sans);
  font-weight: 800;
  margin-right: 2px;
}
.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

/* PULSE-Animation: dezent, gestaffelt — schafft Aufmerksamkeit ohne zu nerven */
@keyframes hero-stat-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,138,31,0); }
  50%      { box-shadow: 0 0 0 8px rgba(255,138,31,0.08); }
}
.hero-stat-pulse {
  animation: hero-stat-pulse 3.4s ease-in-out infinite;
}
.hero-stats .hero-stat-pulse:nth-child(1) { animation-delay: 0s; }
.hero-stats .hero-stat-pulse:nth-child(2) { animation-delay: 1.1s; }
.hero-stats .hero-stat-pulse:nth-child(3) { animation-delay: 2.2s; }

@media (max-width: 760px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 18px 0 22px; }
  .hero-stat { padding: 12px 8px; }
  .hero-stat-num { font-size: 1.05rem; margin-bottom: 4px; }
  .hero-stat-label { font-size: 0.66rem; line-height: 1.25; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-stat-pulse { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   STORY-SCENES — 6 alternierende Bild/Text-Blöcke (Bild 4)
   "Was deine Webseite erledigt"
   ═══════════════════════════════════════════════════════════════ */
.story-scenes {
  padding: clamp(56px, 9vw, 100px) 0;
  background: var(--bg);
}
.story-scene {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 88px);
}
.story-scene:last-of-type {
  margin-bottom: 32px;
}
.story-scene.reverse {
  direction: rtl;
}
.story-scene.reverse > * {
  direction: ltr;
}
.story-scene-img {
  position: relative;
  border-radius: clamp(14px, 1.6vw, 22px);
  overflow: hidden;
  background: var(--bg-card, #1a1d1b);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-2, rgba(255,255,255,0.08));
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
}
.story-scene-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.story-scene:hover .story-scene-img {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,138,31,0.15);
}
.story-scene:hover .story-scene-img img {
  transform: scale(1.04);
}
.story-scene-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-scene-num {
  display: inline-block;
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}
.story-scene-text h3 {
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.story-scene-text p {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 56ch;
}

/* Reveal-Animation für scenes */
.story-scene.reveal:not(.in) .story-scene-img {
  opacity: 0;
  transform: translateY(20px);
}
.story-scene.reveal:not(.in) .story-scene-text {
  opacity: 0;
  transform: translateY(20px);
}
.story-scene.reveal.in .story-scene-img,
.story-scene.reveal.in .story-scene-text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.story-scene.reveal.in .story-scene-text {
  transition-delay: 0.12s;
}

@media (max-width: 760px) {
  .story-scene {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 56px;
  }
  .story-scene.reverse { direction: ltr; }
  .story-scene-img { aspect-ratio: 16 / 10; }
  .story-scene-text h3 { font-size: 1.55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .story-scene-img,
  .story-scene-img img,
  .story-scene.reveal:not(.in) .story-scene-img,
  .story-scene.reveal:not(.in) .story-scene-text {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CTA-BANNER ORANGE — "DEIN BETRIEB IST DER NÄCHSTE." (Bild 5)
   "KLINGT GUT? DANN RED MIT MIR." (Bild 10)
   ═══════════════════════════════════════════════════════════════ */
.cta-banner-orange {
  margin: clamp(40px, 6vw, 64px) 0;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 4vw, 56px);
  border: 1px solid rgba(255,138,31,0.45);
  border-radius: 20px;
  background:
    radial-gradient(ellipse at center bottom, rgba(255,138,31,0.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255,138,31,0.04), rgba(255,138,31,0.02));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 100%, rgba(255,138,31,0.25), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.cta-banner-orange:hover::before { opacity: 1; }
.cta-banner-orange h2 {
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 20px;
  line-height: 1.05;
}
.cta-banner-orange .btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #1a0e02;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.2s ease;
  box-shadow: 0 8px 28px rgba(255,138,31,0.35), 0 0 0 1px rgba(255,138,31,0.45);
  font-size: 1rem;
  letter-spacing: 0.005em;
  border: none;
  cursor: pointer;
}
.cta-banner-orange .btn-orange:hover {
  transform: translateY(-2px);
  background: #FFA040;
  box-shadow: 0 14px 38px rgba(255,138,31,0.55), 0 0 0 1px rgba(255,138,31,0.7);
}
.cta-banner-orange .btn-orange:active { transform: translateY(0); }

@media (max-width: 760px) {
  .cta-banner-orange { padding: 32px 20px; margin: 32px 0; }
  .cta-banner-orange h2 { font-size: 1.4rem; }
}


/* ═══════════════════════════════════════════════════════════════
   ÜBER MICH: Werte-Cards (Bild 7) — interaktive Hover, orange Headlines
   ═══════════════════════════════════════════════════════════════ */
.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.value-item {
  position: relative;
  background: var(--bg-card, rgba(255,255,255,0.02));
  border: 1px solid var(--line-2, rgba(255,255,255,0.08));
  border-radius: 16px;
  padding: clamp(22px, 3vw, 32px);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, background 0.3s ease;
}
.value-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.value-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255,138,31,0.08), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,138,31,0.4);
  background: rgba(255,138,31,0.02);
}
.value-item:hover::before { transform: scaleX(1); }
.value-item:hover::after { opacity: 1; }
.value-item h3 {
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
  transition: letter-spacing 0.3s ease;
}
.value-item:hover h3 {
  letter-spacing: 0.06em;
}
.value-item p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 760px) {
  .values-list { grid-template-columns: 1fr; gap: 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   ÜBER MICH: Prozess-Stepper (Bild 8) — moderne Slides mit Animation
   ═══════════════════════════════════════════════════════════════ */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
  position: relative;
}
/* Verbindungslinie zwischen Steps (Desktop) */
.process::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,138,31,0.35) 15%, rgba(255,138,31,0.35) 85%, transparent 100%);
  z-index: 0;
}
.process-step {
  position: relative;
  background: var(--bg-card, rgba(255,255,255,0.02));
  border: 1px solid var(--line-2, rgba(255,255,255,0.08));
  border-radius: 14px;
  padding: clamp(20px, 2.5vw, 28px);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, box-shadow 0.4s ease;
  cursor: default;
  z-index: 1;
}
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,31,0.55);
  box-shadow: 0 12px 32px rgba(255,138,31,0.12), 0 0 0 1px rgba(255,138,31,0.2);
}
.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,138,31,0.35), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}
.process-step:hover::before { opacity: 0.4; }
.process-step-num {
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  display: inline-block;
  position: relative;
  transition: transform 0.3s ease;
}
.process-step:hover .process-step-num {
  transform: scale(1.15);
}
.process-step h3 {
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 0 0 10px;
}
.process-step p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 880px) {
  .process { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .process::before { display: none; }
}
@media (max-width: 480px) {
  .process { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   CHATBOT — ORANGE Variante "Kevin – dein digitaler Geselle"
   Override der Lime-Akzente auf Orange (Handwerker-Adresse)
   ═══════════════════════════════════════════════════════════════ */

/* FAB — Pulse in Orange statt Lime */
.chatbot-fab {
  border-color: var(--orange) !important;
  box-shadow: 0 8px 24px rgba(255,138,31,0.35), 0 0 0 2px rgba(255,138,31,0.65) !important;
}
.chatbot-fab:hover {
  box-shadow: 0 12px 32px rgba(255,138,31,0.55), 0 0 0 3px var(--orange) !important;
}
.chatbot-fab-badge {
  background: var(--orange) !important;
  color: #1a0e02 !important;
  border-color: var(--bg, #0A0D0B) !important;
}
.chatbot-fab-pulse {
  border-color: var(--orange) !important;
}

/* Chat-Window Header — orange Akzente */
.chatbot-head {
  background: linear-gradient(135deg, rgba(255,138,31,0.12), rgba(255,138,31,0.04)) !important;
  border-bottom: 1px solid rgba(255,138,31,0.25) !important;
}
.chatbot-avatar {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 2px rgba(255,138,31,0.45), 0 0 16px rgba(255,138,31,0.35) !important;
}
.chatbot-status-dot {
  background: var(--orange) !important;
  box-shadow: 0 0 8px var(--orange) !important;
}
.chatbot-title {
  color: var(--cream) !important;
}

/* Bot-Bubbles — orange linke Border */
.chatbot-bubble-bot .chatbot-bubble-text {
  border-left: 3px solid var(--orange) !important;
}

/* Quick-Replies — orange */
.chatbot-quickreply {
  border-color: rgba(255,138,31,0.4) !important;
  color: var(--orange) !important;
  background: rgba(255,138,31,0.05) !important;
}
.chatbot-quickreply:hover {
  background: rgba(255,138,31,0.15) !important;
  border-color: var(--orange) !important;
  color: var(--cream) !important;
}

/* Eingabefeld + Senden-Button */
.chatbot-input-wrap input:focus {
  border-color: var(--orange) !important;
  outline-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255,138,31,0.18) !important;
}
.chatbot-send-btn,
button.chatbot-send-btn {
  background: var(--orange) !important;
  color: #1a0e02 !important;
}
.chatbot-send-btn:hover {
  background: #FFA040 !important;
}

/* Action-Buttons in Bubbles */
.chatbot-bubble-btn-primary {
  background: var(--orange) !important;
  color: #1a0e02 !important;
  border-color: var(--orange) !important;
}
.chatbot-bubble-btn-primary:hover {
  background: #FFA040 !important;
}
.chatbot-bubble-btn:not(.chatbot-bubble-btn-primary) {
  border-color: rgba(255,138,31,0.4) !important;
  color: var(--orange) !important;
}
.chatbot-bubble-btn:not(.chatbot-bubble-btn-primary):hover {
  background: rgba(255,138,31,0.1) !important;
  border-color: var(--orange) !important;
  color: var(--cream) !important;
}

/* Typing-Indicator — Punkte in Orange */
.chatbot-typing .chatbot-bubble-text span {
  background: var(--orange) !important;
}


/* ═══════════════════════════════════════════════════════════════
   PAKETE — 3-Spalten-Grid (Geselle / Meister / Obermeister)
   ═══════════════════════════════════════════════════════════════ */
.pakete-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  margin-top: clamp(32px, 5vw, 56px);
}
.paket .paket-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--muted);
  margin: 8px 0 18px;
  line-height: 1.5;
}
.pakete-individual-note {
  margin-top: clamp(40px, 5vw, 64px);
  padding: 24px clamp(20px, 3vw, 36px);
  background: rgba(255,138,31,0.05);
  border: 1px dashed rgba(255,138,31,0.35);
  border-radius: 12px;
  text-align: center;
}
.pakete-individual-note p {
  font-size: 0.95rem;
  color: var(--cream);
  margin: 0;
  line-height: 1.6;
}
.pakete-individual-note strong {
  color: var(--orange);
}
@media (max-width: 980px) {
  .pakete-grid-3 { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   CHATBOT — Endgültige Orange-Overrides für Send-Button + Input
   (Höhere Spezifität als die ursprünglichen Lime-Regeln)
   ═══════════════════════════════════════════════════════════════ */
button.chatbot-send,
.chatbot-input-wrap button.chatbot-send,
.chatbot button.chatbot-send {
  background: var(--orange) !important;
  color: #1a0e02 !important;
  box-shadow: 0 4px 14px rgba(255, 138, 31, 0.35) !important;
}
button.chatbot-send:hover,
.chatbot-input-wrap button.chatbot-send:hover,
.chatbot button.chatbot-send:hover {
  background: #FFA040 !important;
  box-shadow: 0 6px 20px rgba(255, 138, 31, 0.55) !important;
}
.chatbot-input-wrap input,
.chatbot input[type="text"] {
  border-color: rgba(255, 138, 31, 0.25) !important;
}
.chatbot-input-wrap input:focus,
.chatbot input[type="text"]:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(255, 138, 31, 0.18) !important;
  outline: none !important;
}

/* FAB-Pulse-Animation in Orange-Tönen */
.chatbot-fab-pulse,
.chatbot-fab-pulse-2 {
  border-color: var(--orange) !important;
  background: rgba(255, 138, 31, 0.15) !important;
}

/* Bubbles-Action-Buttons im Bot — Lime-Override */
.chatbot-bubble-bot .chatbot-bubble-btn:not(.chatbot-bubble-btn-primary) {
  border-color: rgba(255, 138, 31, 0.45) !important;
  color: var(--orange) !important;
}


/* ═══════════════════════════════════════════════════════════════
   WHATSAPP-BUTTON — grün gemäß Brand
   ═══════════════════════════════════════════════════════════════ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(37,211,102,0.25);
}
.btn-whatsapp:hover {
  background: #1FBA56;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
  color: #FFFFFF;
}
.btn-whatsapp svg path {
  fill: #FFFFFF !important;
}

/* ═══════════════════════════════════════════════════════════════
   BLOG — Übersicht + Artikel-Layout
   ═══════════════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-top: 32px;
}
.blog-card {
  background: var(--bg-card, rgba(255,255,255,0.02));
  border: 1px solid var(--line-2, rgba(255,255,255,0.08));
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,138,31,0.4);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,138,31,0.15);
}
.blog-card-img-link {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-card-dot { opacity: 0.5; }
.blog-card h2 {
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 0 0 12px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  font-weight: 600;
}
.blog-card h2 a {
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s ease;
}
.blog-card h2 a:hover {
  color: var(--orange);
}
.blog-card .blog-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 20px;
  flex: 1;
}
.blog-card-link {
  align-self: flex-start;
}
.blog-card-coming-soon {
  border-style: dashed;
  background: transparent;
  opacity: 0.85;
}
@media (max-width: 760px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Blog-Article-Content */
.blog-article .blog-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--cream);
  max-width: 700px;
}
.blog-article .blog-content p {
  margin-bottom: 20px;
}
.blog-article .blog-content h2 {
  font-family: var(--ff-display, 'Anton', sans-serif);
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  margin: 48px 0 16px;
  letter-spacing: 0.005em;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.15;
}
.blog-article .blog-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 12px;
  color: var(--orange);
  font-weight: 700;
}
.blog-article .blog-content ul,
.blog-article .blog-content ol {
  margin: 0 0 24px 24px;
  color: var(--muted);
}
.blog-article .blog-content ul li,
.blog-article .blog-content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.blog-article .blog-content strong {
  color: var(--cream);
  font-weight: 700;
}

