/* ═══════════════════════════════════════════════════════════════════════════
   Kaufeule – Design System 2026
   Premium Vergleichsportal · DE/AT/CH · Light / Naturell
═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens (Light / Kaufeule) ───────────────────────────────────── */
:root {
  --accent:      #284A3A;   /* Waldgrün – primär, Buttons, Links */
  --accent-h:    #1d3a2d;   /* dunkler für Hover */
  --accent-t:    #284A3A;   /* Akzent als kleiner Text auf hellen Karten (~9:1 ✓) */
  --accent2:     #E0A23E;   /* Holz-Amber – sekundärer Akzent (dekorativ) */
  --gold:        #E0A23E;   /* Holz-Amber */

  --bg:          #F7F3EA;   /* Creme */
  --bg-alt:      #EFEADD;   /* tieferes Creme für Abschnitte */
  --surface:     #FFFFFF;   /* Karten */
  --surface-2:   #F1ECE0;
  --surface-3:   #E8E1D2;
  --ink:         #23201A;   /* Tinte – Überschriften */
  --text:        #2A2620;   /* Tinte – Fließtext (~12:1 auf Creme) */
  --muted:       #6B6457;   /* warmes Grau (~5:1 auf Creme – WCAG AA ✓) */
  --border:      rgba(35,32,26,.12);
  --shadow:      0 2px 12px rgba(40,74,58,.07);
  --shadow-md:   0 6px 28px rgba(40,74,58,.10);
  --shadow-lg:   0 16px 50px rgba(40,74,58,.14);

  --font-head:   'Montserrat', system-ui, sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --radius:      16px;
  --radius-sm:   10px;
  --header-h:    68px;

  /* Spotlight (set by JS) */
  --mx: 50%;
  --my: 40%;
}

/* ── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg); color: var(--text);
  line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6,
.logo, .hero-heading, .cat-title, .section-heading, .about-title,
.section-header h2 { font-family: var(--font-head); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Scroll Animations ──────────────────────────────────────────────────── */
.animate {
  opacity: 0; transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0s);
}
.animate.in-view { opacity: 1; transform: none; }

/* ── Back To Top ────────────────────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,66,10,.4);
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  font-size: 18px;
}
#backToTop.visible { opacity: 1; transform: none; }
#backToTop:hover { background: var(--accent-h); transform: translateY(-2px); }

/* ── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  transition: all .35s ease;
}
.site-header.scrolled {
  background: rgba(8,8,15,.92);
  border-bottom: 1px solid rgba(255,255,255,.05);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 1px 40px rgba(0,0,0,.4);
}
.header-inner {
  display: flex; align-items: center; height: var(--header-h); gap: 24px;
}

/* Logo */
.logo { font-size: 22px; font-weight: 800; letter-spacing: -.5px; flex-shrink: 0; }
.logo-find  { color: #fff; }
.logo-orado { color: var(--accent); }

/* Nav */
.main-nav { display: flex; gap: 6px; flex: 1; justify-content: center; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.nav-link {
  color: rgba(255,255,255,.5); font-size: 15px; font-weight: 500;
  padding: 9px 16px; border-radius: 10px; white-space: nowrap;
  transition: color .2s, background .2s;
  letter-spacing: .1px;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav-link.active { color: #fff; background: rgba(232,66,10,.18); }

/* Breadcrumb in Header (Artikel-Seite) */
.breadcrumb-nav {
  display: flex; align-items: center;
  flex: 1; overflow: hidden;
}
.breadcrumb-nav .breadcrumb {
  margin-bottom: 0; display: flex; align-items: center;
  gap: 6px; flex-wrap: nowrap; overflow: hidden;
  font-size: 13px; color: rgba(255,255,255,.65);
}
.breadcrumb-nav .breadcrumb a { color: rgba(255,255,255,.70); transition: color .2s; }
.breadcrumb-nav .breadcrumb a:hover { color: #fff; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.search-shortcut {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.65); font-size: 12px;
  padding: 6px 12px; border-radius: 8px; cursor: pointer;
  transition: all .2s;
}
.search-shortcut:hover { background: rgba(255,255,255,.09); color: rgba(255,255,255,.9); }
.search-shortcut kbd {
  background: rgba(255,255,255,.08); border-radius: 4px;
  padding: 1px 5px; font-size: 11px; font-family: inherit;
}

/* Hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Search Overlay ─────────────────────────────────────────────────────── */
.search-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.72); backdrop-filter: blur(12px);
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 14vh;
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.search-overlay.open { opacity: 1; pointer-events: all; }
.search-box {
  background: var(--surface); border-radius: 20px;
  width: 100%; max-width: 600px; margin: 0 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  overflow: hidden; transform: translateY(-16px);
  transition: transform .22s;
  border: 1px solid rgba(255,255,255,.08);
}
.search-overlay.open .search-box { transform: none; }
.search-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.search-header svg { color: var(--muted); flex-shrink: 0; }
#searchInput { flex: 1; border: none; background: none; outline: none; font-size: 17px; color: var(--text); font-family: inherit; }
#searchInput::placeholder { color: var(--muted); }
#searchClose { background: var(--surface-2); border: none; color: var(--muted); border-radius: 6px; padding: 4px 8px; font-size: 12px; cursor: pointer; }
#searchResults { max-height: 420px; overflow-y: auto; }

.search-result {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  transition: background .15s; color: var(--text);
}
.search-result:last-child { border-bottom: none; }
.search-result:hover { background: var(--surface-2); }
.search-result img, .search-result-placeholder { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.search-result-placeholder { background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.search-result strong { display: block; font-size: 15px; margin-bottom: 2px; }
.search-result strong mark { background: rgba(232,66,10,.14); color: var(--accent); border-radius: 2px; }
.search-result span { font-size: 12px; color: var(--muted); }
.search-loading, .search-empty { padding: 32px; text-align: center; color: var(--muted); font-size: 14px; }

/* ══════════════════════════════════════════════════════════════════════════
   HERO – Split Layout mit dramatischem Hintergrund
══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: #07070f;
  min-height: 100vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Cursor Spotlight */
.hero-spotlight {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(
    900px circle at var(--mx) var(--my),
    rgba(232,66,10,.10),
    rgba(42,95,255,.04) 50%,
    transparent 70%
  );
  transition: background 0.05s;
}

/* Feines Grid-Overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 1;
}

/* Horizon Glow (bottom) */
.hero::after {
  content: '';
  position: absolute; bottom: 44px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(232,66,10,.5) 30%, rgba(42,95,255,.4) 70%, transparent 95%);
  z-index: 6;
}

/* Aurora Blobs */
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  animation: blobDrift ease-in-out infinite alternate;
  will-change: transform;
}
.blob-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(232,66,10,.32) 0%, transparent 70%);
  top: -360px; left: -280px;
  animation-duration: 16s;
}
.blob-2 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(42,95,255,.22) 0%, transparent 70%);
  top: -80px; right: -250px;
  animation-duration: 21s;
  animation-direction: alternate-reverse;
}
.blob-3 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(160,60,255,.18) 0%, transparent 70%);
  bottom: -60px; left: 35%;
  animation-duration: 14s;
  animation-delay: -5s;
}
.blob-4 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,200,160,.12) 0%, transparent 70%);
  top: 30%; right: 5%;
  animation-duration: 18s;
  animation-delay: -8s;
}
@keyframes blobDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 45px) scale(1.1); }
}

/* Grain Texture */
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* Particles (injected by JS) */
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.6);
  pointer-events: none;
  animation: particleFloat linear infinite;
  will-change: transform, opacity;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .3; }
  100% { transform: translateY(-120px) scale(0.3); opacity: 0; }
}

/* Split-Grid */
.hero-split {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  flex: 1;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 60px 24px 40px;
}

/* ── Hero Left ───────────────────────────────────────────────────────────── */
.hero-left { display: flex; flex-direction: column; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(232,66,10,.35);
  background: rgba(232,66,10,.08);
  color: rgba(255,255,255,.75); font-size: 11px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 50px; width: fit-content;
  margin-bottom: 26px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: dotGlow 2s ease-in-out infinite alternate;
  flex-shrink: 0;
}
@keyframes dotGlow {
  from { box-shadow: 0 0 4px var(--accent); }
  to   { box-shadow: 0 0 16px var(--accent), 0 0 32px rgba(232,66,10,.45); }
}

.hero-heading {
  font-size: clamp(46px, 5.8vw, 90px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -3px; color: #fff;
  margin-bottom: 26px;
  text-shadow: 0 0 100px rgba(232,66,10,.12);
}
.hh-accent {
  display: block;
  background: linear-gradient(160deg, #ff6b35 0%, #e8420a 45%, #b83000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentGlow 3.5s ease-in-out infinite alternate;
}
@keyframes accentGlow {
  from {
    filter: drop-shadow(0 0 12px rgba(232,66,10,.45))
            drop-shadow(0 0 30px rgba(232,66,10,.2));
  }
  to {
    filter: drop-shadow(0 0 28px rgba(255,90,20,.85))
            drop-shadow(0 0 70px rgba(232,66,10,.5))
            drop-shadow(0 0 120px rgba(200,50,0,.25));
  }
}

.hero-sub {
  color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.75;
  margin-bottom: 24px; max-width: 460px;
}

/* Trust-Zeile */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  margin-bottom: 32px;
}
.hero-trust .trust-item {
  display: inline-flex; align-items: center;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.65);
  padding: 0; background: none; border: none;
}

/* CTA-Gruppe */
.hero-ctas {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 0;
}

/* Sekundärer Hero-Button */
.btn-secondary-hero {
  display: inline-flex; align-items: center;
  padding: 14px 22px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600;
  transition: border-color .18s, color .18s, background .18s;
  white-space: nowrap;
}
.btn-secondary-hero:hover {
  border-color: rgba(255,255,255,.35); color: #fff;
  background: rgba(255,255,255,.05);
}

/* CTA Button */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  padding: 15px 30px; border-radius: 50px;
  font-size: 15px; font-weight: 700;
  box-shadow: 0 8px 30px rgba(232,66,10,.4);
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer; position: relative; overflow: visible;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: -3px;
  border-radius: 50px; border: 2px solid var(--accent);
  opacity: 0; animation: btnRing 2.8s ease-out infinite;
}
@keyframes btnRing {
  0%   { inset: -3px; opacity: .6; }
  100% { inset: -14px; opacity: 0; }
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(232,66,10,.52);
}

/* Hero Stats */
.hero-stats {
  display: flex; align-items: center;
  margin-top: 36px;
  padding: 14px 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; width: fit-content;
  gap: 0;
  backdrop-filter: blur(10px);
}
.hs-item {
  display: flex; align-items: baseline; gap: 7px;
  padding: 0 20px; white-space: nowrap;
}
.hs-num {
  font-size: 22px; font-weight: 800;
  color: var(--accent); line-height: 1;
  text-shadow: 0 0 20px rgba(232,66,10,.3);
}
.hs-lbl {
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.hs-sep { width: 1px; height: 28px; background: rgba(255,255,255,.08); flex-shrink: 0; }

/* ── Hero Right – Floating Cards ─────────────────────────────────────────── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}

.hero-cards {
  position: relative;
  width: 340px; height: 500px;
}

.hc-card {
  position: absolute;
  width: 265px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.1);
  text-decoration: none;
  will-change: transform;
  transition: box-shadow .3s;
}
.hc-card:hover { box-shadow: 0 32px 80px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.18), 0 0 0 1px rgba(232,66,10,.2); }

.hc-card-1 { top: 0; left: 50px; z-index: 3; animation: float1 9s ease-in-out infinite; }
.hc-card-2 { top: 110px; left: 12px; z-index: 2; animation: float2 11s ease-in-out infinite; animation-delay: -3.5s; }
.hc-card-3 { top: 255px; left: 65px; z-index: 1; animation: float3 8s ease-in-out infinite; animation-delay: -6s; }

@keyframes float1 { 0%,100% { transform: rotate(-4.5deg) translateY(0); } 50% { transform: rotate(-4.5deg) translateY(-16px); } }
@keyframes float2 { 0%,100% { transform: rotate(3.5deg)  translateY(0); } 50% { transform: rotate(3.5deg)  translateY(-11px); } }
@keyframes float3 { 0%,100% { transform: rotate(-2deg)   translateY(0); } 50% { transform: rotate(-2deg)   translateY(-20px); } }

.hc-img { height: 148px; overflow: hidden; background: rgba(255,255,255,.04); display: flex; align-items: center; justify-content: center; }
.hc-img img { width: 100%; height: 100%; object-fit: cover; }
.hc-img-ph { height: 100%; width: 100%; display: flex; align-items: center; justify-content: center; }
.hc-body { padding: 14px 17px 16px; }
.hc-type {
  font-size: 9px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 5px;
}
.hc-title {
  font-size: 12.5px; font-weight: 600;
  color: rgba(255,255,255,.88); line-height: 1.45;
}
.hc-placeholder { opacity: .6; }

/* Dekorative Badge/Tag */
.hc-deco {
  position: absolute; z-index: 5;
  font-size: 11px; font-weight: 800; letter-spacing: .3px;
  border-radius: 50px; padding: 6px 12px;
  white-space: nowrap;
}
.hc-deco-badge {
  top: -12px; right: -8px;
  background: var(--gold); color: #111;
  box-shadow: 0 4px 16px rgba(245,158,11,.45);
  animation: badgeFloat 6s ease-in-out infinite;
}
.hc-deco-tag {
  bottom: 30px; right: -16px;
  background: rgba(34,197,94,.92); color: #fff;
  font-size: 10px;
  box-shadow: 0 4px 16px rgba(34,197,94,.4);
  animation: badgeFloat 7s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes badgeFloat { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-8px) rotate(2deg); } }

/* ── Scroll Hint ─────────────────────────────────────────────────────────── */
.hero-scroll-hint {
  position: absolute; bottom: 60px; left: 50%;
  transform: translateX(-50%); z-index: 5; opacity: .25;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,.5); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 5px;
}
.scroll-dot {
  width: 3px; height: 6px; background: rgba(255,255,255,.9);
  border-radius: 2px;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); opacity: 1; } 65% { transform: translateY(9px); opacity: 0; } }

/* ── Hero Marquee Strip ──────────────────────────────────────────────────── */
.hero-marquee {
  position: relative; z-index: 5;
  border-top: 1px solid rgba(255,255,255,.05);
  height: 44px; display: flex; align-items: center;
  overflow: hidden;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(12px);
  flex-shrink: 0;
}
.marquee-label {
  flex-shrink: 0; padding: 0 18px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.55);
  border-right: 1px solid rgba(255,255,255,.06);
  height: 100%; display: flex; align-items: center;
}
.marquee-track { flex: 1; overflow: hidden; }
.marquee-inner {
  display: flex; animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-inner:hover { animation-play-state: paused; }
.marquee-item {
  color: rgba(255,255,255,.58); font-size: 12px;
  padding: 0 22px; display: inline-flex;
  align-items: center; gap: 10px;
  transition: color .2s;
}
.marquee-item:hover { color: rgba(255,255,255,.78); }
.marquee-sep { opacity: .25; font-size: 7px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════════════════════════════════════
   CATEGORY CHIPS
══════════════════════════════════════════════════════════════════════════ */
.category-strip {
  background: rgba(11,11,20,.97);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 14px 0;
  position: sticky; top: var(--header-h); z-index: 50;
  backdrop-filter: blur(16px);
}

.category-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 2px 0; }
.category-chips::-webkit-scrollbar { display: none; }

.chip {
  display: inline-flex; align-items: center;
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 500; white-space: nowrap;
  background: rgba(255,255,255,.04);
  transition: all .18s; cursor: pointer;
  letter-spacing: .1px;
}
.chip:hover { border-color: rgba(232,66,10,.5); color: rgba(255,255,255,.85); background: rgba(232,66,10,.07); }
.chip-active {
  background: var(--accent); border-color: var(--accent);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(232,66,10,.3);
}

/* ══════════════════════════════════════════════════════════════════════════
   ARTICLES GRID
══════════════════════════════════════════════════════════════════════════ */
.articles-section { padding: 52px 0 80px; }
.section-header { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; }
.section-header h2 { font-size: 26px; font-weight: 700; color: var(--text); }
.section-count { background: var(--surface-2); color: var(--muted); font-size: 13px; padding: 4px 12px; border-radius: 20px; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── Article Card ───────────────────────────────────────────────────────── */
.article-card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.45);
}

.card-img-wrap {
  display: block; position: relative; overflow: hidden;
  aspect-ratio: 3/2;
  background: #0d0d0d;
}

.card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.article-card:hover .card-img-wrap img { transform: scale(1.02); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}

.card-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.card-badge {
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px; backdrop-filter: blur(8px);
}
.badge-type { background: var(--accent); color: #fff; }
.badge-new  { background: rgba(34,197,94,.9); color: #fff; }

.card-body { padding: 18px 20px 20px; }
.card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--accent);
  display: block; margin-bottom: 7px;
}
.card-title {
  font-size: 16px; font-weight: 700; line-height: 1.32;
  margin-bottom: 9px; color: var(--text);
}
.card-excerpt { color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 12px;
}
.card-date { font-size: 11px; color: var(--muted); }
.card-read {
  font-size: 12px; font-weight: 700;
  color: var(--accent); letter-spacing: .2px;
  transition: color .2s, opacity .2s;
  text-decoration: none;
}
.article-card:hover .card-read { opacity: .8; }

/* ── Empty State ────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { color: var(--muted); margin-bottom: 16px; display: flex; justify-content: center; }
.empty-state h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION (SEO / GEO)
══════════════════════════════════════════════════════════════════════════ */
.about-section {
  padding: 60px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.about-title {
  font-size: 22px; font-weight: 800; color: var(--text);
  margin-bottom: 16px; letter-spacing: -.3px;
}
.about-text {
  color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.8;
  margin-bottom: 28px;
}
.about-text strong { color: #fff; font-weight: 600; }
.about-cats {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.about-cat-pill {
  border: 1px solid var(--border);
  color: rgba(255,255,255,.62); font-size: 12px; font-weight: 600;
  padding: 6px 16px; border-radius: 50px;
  transition: all .2s; letter-spacing: .1px;
}
.about-cat-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,66,10,.06); }

/* ══════════════════════════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: #030309; padding: 56px 0;
  position: relative; overflow: hidden;
}
.trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(232,66,10,.08), transparent);
}
.trust-inner {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap; max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.trust-item { display: flex; align-items: center; gap: 16px; padding: 20px 44px; }
.trust-icon { font-size: 34px; filter: drop-shadow(0 0 12px rgba(232,66,10,.38)); }
.trust-item strong { display: block; color: #fff; font-size: 15px; font-weight: 700; }
.trust-item span { display: block; color: rgba(255,255,255,.62); font-size: 13px; margin-top: 2px; }
.trust-divider { width: 1px; height: 56px; background: rgba(255,255,255,.06); }

/* ══════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════ */
.site-footer { background: #0d0d1a; padding: 52px 0 36px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-brand .logo { display: inline-block; margin-bottom: 10px; }
.footer-brand .logo-find { color: rgba(255,255,255,.65); }
.footer-brand p { color: rgba(255,255,255,.72); font-size: 15px; max-width: 420px; line-height: 1.6; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255,255,255,.78); font-size: 14px; font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.affiliate-note { color: rgba(255,255,255,.65); font-size: 13px; max-width: 540px; line-height: 1.7; padding: 16px 20px; background: rgba(255,255,255,.04); border-radius: 12px; border: 1px solid rgba(255,255,255,.06); }
.footer-copy { color: rgba(255,255,255,.55); font-size: 13px; }

/* ══════════════════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 999; width: calc(100% - 40px); max-width: 600px;
  transition: opacity .35s, transform .35s;
}
.cookie-banner.cookie-hidden { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(16px); }
.cookie-inner {
  background: rgba(8,8,15,.96); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 18px;
  padding: 16px 20px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.5);
}
.cookie-inner span { color: rgba(255,255,255,.75); font-size: 13px; flex: 1; line-height: 1.5; }
.cookie-inner a { color: var(--accent); }
#cookieAccept {
  background: var(--accent); color: #fff; border: none; border-radius: 10px;
  padding: 10px 22px; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
#cookieAccept:hover { background: var(--accent-h); }

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr 1fr; gap: 40px; padding: 50px 24px 32px; }
  .hero-cards { width: 290px; height: 440px; }
  .hc-card { width: 225px; }
  .hc-card-2 { left: 6px; }
  .hc-card-3 { left: 48px; top: 230px; }
}

@media (max-width: 840px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { grid-template-columns: 1fr; gap: 0; min-height: auto; padding-bottom: 20px; }
  .hero-right { display: none; }
  .hero-heading { font-size: clamp(44px, 9vw, 70px); }
  .hero-scroll-hint { display: none; }

  /* Mobile Nav – vollbild Overlay */
  .main-nav {
    display: none; flex-direction: column;
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: rgba(6,6,15,.98); backdrop-filter: blur(20px);
    padding: 24px 20px; gap: 4px; overflow-y: auto;
    z-index: 110; /* über allem */
  }
  .main-nav.nav-open { display: flex; }
  .nav-link { font-size: 16px; padding: 13px 16px; color: rgba(255,255,255,.8); }
  .nav-link:hover, .nav-link.active { color: #fff; background: rgba(232,66,10,.18); }
  .menu-toggle { display: flex; }

  /* Breadcrumb-Nav in Artikel-Header auf Mobile ausblenden */
  .breadcrumb-nav { display: none; }

  /* Header Actions auf Mobile */
  .search-shortcut { display: none; }

  .trust-item { padding: 16px 20px; }
  .trust-divider { display: none; }
  .about-section { padding: 44px 0; }
}

@media (max-width: 620px) {
  .articles-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 12px; padding: 14px 16px; }
  .hs-sep { display: none; }
  .hs-item { padding: 0 12px; }
  .footer-links { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-bar { padding: 36px 0; }
  .trust-inner { flex-direction: column; gap: 20px; align-items: flex-start; padding: 0 24px; }
  .category-strip { top: var(--header-h); }
}

/* ══════════════════════════════════════════════════════════════════════════
   KATEGORIE-SEITE – Kompakter Header
══════════════════════════════════════════════════════════════════════════ */
.cat-hero {
  position: relative;
  background: #07070f;
  padding: calc(var(--header-h) + 48px) 0 44px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.cat-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cat-blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); pointer-events: none;
}
.cat-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,66,10,.2) 0%, transparent 70%);
  top: -200px; left: -150px;
}
.cat-blob-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(42,95,255,.15) 0%, transparent 70%);
  bottom: -100px; right: -80px;
}
.cat-hero-inner { position: relative; z-index: 2; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.60);
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.bc-sep { font-size: 12px; opacity: .4; }

.cat-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800; color: #fff;
  letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 12px;
}
.cat-desc {
  color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7;
  max-width: 560px; margin-bottom: 20px;
}
.cat-meta { display: flex; align-items: center; gap: 12px; }
.cat-count-badge {
  background: rgba(232,66,10,.12); border: 1px solid rgba(232,66,10,.25);
  color: rgba(255,255,255,.82); font-size: 12px; font-weight: 700;
  padding: 5px 14px; border-radius: 50px; letter-spacing: .3px;
}

@media (max-width: 600px) {
  .hero-heading { font-size: 40px; letter-spacing: -1.5px; }
  .hero-marquee { height: 38px; }
  .about-text { font-size: 14px; }
  .container { padding: 0 16px; }
}

/* ── FAQ Section ────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 80px 0 60px;
  background: var(--bg-alt);
  text-align: center;
}
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.section-heading {
  font-size: clamp(26px, 4vw, 40px); font-weight: 800;
  color: #fff; letter-spacing: -1px; line-height: 1.1;
  margin-bottom: 40px;
}
.faq-list { max-width: 780px; margin: 0 auto; text-align: left; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 20px 0; text-align: left;
  font-family: inherit; font-size: 15px; font-weight: 600;
  color: var(--text); line-height: 1.4;
  transition: color .2s;
}
.faq-question:hover { color: #fff; }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; line-height: 1; font-weight: 400;
  color: var(--muted);
  transition: transform .25s, background .2s, color .2s;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.faq-answer {
  padding: 0 0 20px 0;
  color: var(--muted); font-size: 14px; line-height: 1.75;
}
.faq-answer p { margin: 0; }

/* Article-level FAQ (inside article-content) */
.article-faq {
  margin-top: 40px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.article-faq-heading {
  font-size: 20px; font-weight: 700; color: #fff;
  margin-bottom: 20px;
}

/* ── Author Block ────────────────────────────────────────────────────────────── */
.author-block {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}
.author-avatar {
  flex-shrink: 0;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
}
.author-info { display: flex; flex-direction: column; gap: 4px; }
.author-name { font-size: 14px; font-weight: 700; color: #fff; }
.author-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* ── Footer contact ──────────────────────────────────────────────────────────── */
.footer-contact {
  font-size: 12px; color: var(--muted);
  margin-top: 8px;
}
.footer-contact a { color: var(--muted); transition: color .2s; }
.footer-contact a:hover { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   KAUFEULE – LIGHT THEME OVERRIDES
   Stellt alle ursprünglich für Dark gebauten Komponenten auf das helle
   Naturell-Schema um (Creme/Waldgrün/Amber/Tinte). Spätere Regeln gewinnen.
═══════════════════════════════════════════════════════════════════════════ */

/* Back to top */
#backToTop { box-shadow: 0 4px 20px rgba(40,74,58,.30); }

/* Header */
.site-header.scrolled {
  background: rgba(247,243,234,.85);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 24px rgba(40,74,58,.08);
}
.logo-find  { color: var(--ink); }
.logo-orado { color: var(--accent); }
.logo { display: inline-flex; align-items: center; }
.logo-owl { height: 30px; width: auto; flex-shrink: 0; }
.footer-brand .logo { justify-content: center; }
.nav-link { color: var(--muted); }
.nav-link:hover { color: var(--ink); background: rgba(35,32,26,.05); }
.nav-link.active { color: var(--accent); background: rgba(40,74,58,.10); }
.breadcrumb-nav .breadcrumb { color: var(--muted); }
.breadcrumb-nav .breadcrumb a { color: var(--muted); }
.breadcrumb-nav .breadcrumb a:hover { color: var(--accent); }
.search-shortcut {
  background: #fff; border: 1px solid var(--border); color: var(--muted);
}
.search-shortcut:hover { background: var(--surface-2); color: var(--ink); }
.search-shortcut kbd { background: var(--surface-2); color: var(--muted); }
.menu-toggle span { background: var(--ink); }

/* Search overlay */
.search-overlay { background: rgba(35,32,26,.45); }
.search-box { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.search-result strong mark { background: rgba(40,74,58,.12); color: var(--accent); }

/* HERO – Light */
.hero { background: linear-gradient(180deg, #FFFDF8 0%, var(--bg) 100%); }
.hero-spotlight {
  background: radial-gradient(900px circle at var(--mx) var(--my),
    rgba(40,74,58,.08), rgba(224,162,62,.05) 50%, transparent 70%);
}
.hero::before {
  background-image:
    linear-gradient(rgba(35,32,26,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35,32,26,.035) 1px, transparent 1px);
}
.hero::after {
  background: linear-gradient(90deg, transparent 5%, rgba(40,74,58,.45) 30%, rgba(224,162,62,.4) 70%, transparent 95%);
}
.blob-1 { background: radial-gradient(circle, rgba(40,74,58,.18) 0%, transparent 70%); }
.blob-2 { background: radial-gradient(circle, rgba(224,162,62,.20) 0%, transparent 70%); }
.blob-3 { background: radial-gradient(circle, rgba(40,74,58,.12) 0%, transparent 70%); }
.blob-4 { background: radial-gradient(circle, rgba(224,162,62,.14) 0%, transparent 70%); }
.particle { background: rgba(40,74,58,.22); }
.hero-eyebrow {
  border: 1px solid rgba(40,74,58,.28);
  background: rgba(40,74,58,.06);
  color: var(--accent);
}
.hero-heading { color: var(--ink); text-shadow: none; }
.hh-accent {
  background: linear-gradient(120deg, #2f6b4f 0%, #284A3A 50%, #E0A23E 130%);
  animation: none;
}
.hero-sub { color: var(--muted); }
.hero-trust .trust-item { color: var(--muted); }
.btn-secondary-hero { border: 1px solid var(--border); color: var(--text); }
.btn-secondary-hero:hover { border-color: var(--accent); color: var(--accent); background: rgba(40,74,58,.05); }
.btn-primary { box-shadow: 0 8px 24px rgba(40,74,58,.25); }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(40,74,58,.32); }
.hero-stats { background: #fff; border: 1px solid var(--border); }
.hs-num { color: var(--accent); text-shadow: none; }
.hs-lbl { color: var(--muted); }
.hs-sep { background: var(--border); }

/* HERO – Floating cards */
.hc-card {
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.hc-card:hover { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(40,74,58,.18); }
.hc-img { background: var(--surface-2); }
.hc-title { color: var(--text); }
.hc-type { color: var(--accent); }
.hc-deco-badge { background: var(--gold); color: var(--ink); box-shadow: 0 4px 16px rgba(224,162,62,.4); }
.hc-deco-tag { background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(40,74,58,.35); }
.scroll-mouse { border-color: rgba(35,32,26,.35); }
.scroll-dot { background: rgba(35,32,26,.6); }

/* HERO – Marquee */
.hero-marquee { border-top: 1px solid var(--border); background: rgba(247,243,234,.75); }
.marquee-label { color: var(--muted); border-right: 1px solid var(--border); }
.marquee-item { color: var(--muted); }
.marquee-item:hover { color: var(--ink); }

/* Category strip + chips */
.category-strip { background: rgba(247,243,234,.95); border-bottom: 1px solid var(--border); position: static; }
.chip { border: 1px solid var(--border); color: var(--muted); background: #fff; }
.chip:hover { border-color: var(--accent); color: var(--ink); background: rgba(40,74,58,.06); }
.chip-active { background: var(--accent); border-color: var(--accent); color: #fff !important; box-shadow: 0 4px 16px rgba(40,74,58,.25); }

/* Article cards */
.card-img-wrap { background: var(--surface-2); aspect-ratio: 16 / 9; padding: 10px; }
.card-img-wrap img { object-fit: contain; border-radius: 10px; }
.article-card:hover { box-shadow: 0 8px 28px rgba(40,74,58,.14); }
.card-excerpt { color: var(--muted); }
.badge-type { background: var(--accent); color: #fff; }
.badge-new  { background: var(--gold); color: var(--ink); }
.card-read:hover { color: var(--accent-h); }

/* About */
.about-text { color: var(--text); }
.about-text strong { color: var(--ink); }
.about-cat-pill { border: 1px solid var(--border); color: var(--muted); }
.about-cat-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(40,74,58,.06); }

/* Trust bar → Waldgrün-Band */
.trust-bar { background: var(--accent); }
.trust-bar::before { background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(224,162,62,.14), transparent); }
.trust-item strong { color: #fff; }
.trust-item span { color: rgba(255,255,255,.82); }
.trust-icon { filter: drop-shadow(0 0 12px rgba(224,162,62,.45)); }
.trust-divider { background: rgba(255,255,255,.20); }

/* Footer → Tinte dunkel */
.site-footer { background: var(--ink); border-top: none; }
.footer-brand .logo-find { color: rgba(255,255,255,.72); }
.footer-brand .logo-orado { color: var(--gold); }
.footer-brand p { color: rgba(255,255,255,.72); }
.footer-links a { color: rgba(255,255,255,.78); }
.footer-links a:hover { color: #fff; }
.affiliate-note { background: rgba(255,255,255,.05); color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.10); }
.footer-copy { color: rgba(255,255,255,.5); }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--gold); }

/* Cookie banner */
.cookie-inner { background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-lg); }
.cookie-inner span { color: var(--text); }

/* Kategorie-Hero */
.cat-hero { background: linear-gradient(180deg, #FFFDF8 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); }
.cat-blob-1 { background: radial-gradient(circle, rgba(40,74,58,.16) 0%, transparent 70%); }
.cat-blob-2 { background: radial-gradient(circle, rgba(224,162,62,.16) 0%, transparent 70%); }
.breadcrumb { color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.cat-title { color: var(--ink); }
.cat-desc { color: var(--muted); }
.cat-count-badge { background: rgba(40,74,58,.10); border: 1px solid rgba(40,74,58,.25); color: var(--accent); }

/* FAQ */
.section-heading { color: var(--ink); }
.faq-question:hover { color: var(--accent); }
.faq-question[aria-expanded="true"] { color: var(--accent); }
.faq-question[aria-expanded="true"] .faq-icon { background: var(--accent); color: #fff; border-color: var(--accent); }
.article-faq-heading { color: var(--ink); }

/* Author block */
.author-avatar { background: linear-gradient(135deg, var(--accent), var(--gold)); color: #fff; }
.author-name { color: var(--ink); }

/* Mobile nav overlay */
@media (max-width: 840px) {
  .main-nav { background: rgba(247,243,234,.98); }
  .nav-link { color: var(--text); }
  .nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(40,74,58,.10); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   KAUFEULE – FLAT / KEINE VERLÄUFE
   Nur satte Volltöne (Waldgrün / Amber / Creme / Tinte). Alle Gradienten,
   Blobs, Spotlight, Grain & Glow entfernt → klares, modernes Flat-Design.
═══════════════════════════════════════════════════════════════════════════ */

/* Logo-Lockup (Eule + Schriftzug) als Bild */
.logo-owl { width: auto; height: 44px; border-radius: 0; }
.footer-brand .logo-owl { height: 56px; }

/* Logo auf dunklem Grund weiß: Footer automatisch + .is-light für weitere dunkle Bereiche */
.footer-brand .logo-owl,
.logo-owl.is-light { filter: brightness(0) invert(1); }

/* HERO – komplett flach, solides Creme, Deko entfernt */
.hero { background: var(--bg); min-height: auto; }
.hero-spotlight, .hero-bg, .aurora-blob, .hero-grain,
.hero-scroll-hint, .particle { display: none !important; }
.hero::before, .hero::after { content: none; background: none; }
.hero-split { padding: 80px 24px 56px; }
.hero-heading { text-shadow: none; }
.hh-accent {
  background: none; -webkit-text-fill-color: var(--accent);
  color: var(--accent); filter: none; animation: none;
}
.hero-eyebrow .eyebrow-dot { animation: none; box-shadow: none; }

/* Hero-Karten: flach, solide, ohne Blur/Glow */
.hc-card { backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: var(--shadow-md); }
.hc-card:hover { box-shadow: var(--shadow-lg); }
.hc-img { background: var(--surface-2); }

/* Buttons: solide, ohne farbigen Glow-Schatten + ohne Pulsring */
.btn-primary { box-shadow: none; }
.btn-primary::after { display: none; }
.btn-primary:hover { box-shadow: none; background: var(--accent-h); }
#backToTop { box-shadow: none; }

/* Sticky-Header & Strip: solide statt Blur-Transparenz */
.site-header.scrolled {
  background: var(--bg);
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border); box-shadow: none;
}
.category-strip { background: var(--bg); backdrop-filter: none; }

/* Trust-Band: solides Waldgrün, kein Overlay */
.trust-bar::before { display: none; }
.trust-icon { filter: none; }

/* Kategorie-Hero: flach */
.cat-hero { background: var(--bg); }
.cat-hero-bg, .cat-blob { display: none !important; }

/* Author-Avatar: solide */
.author-avatar { background: var(--accent); }

/* Karten/Boxen: klare 1px-Border statt weicher Schatten (modern, flach) */
.article-card { box-shadow: none; }
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

/* Marquee: solide */
.hero-marquee { background: var(--bg-alt); backdrop-filter: none; }

/* ── HERO bold & modern (flach, satte Farbblöcke) ────────────────────────── */
.hero { position: relative; overflow: hidden; }
/* Solide Waldgrün-Farbfläche rechts hinter den Produktkarten */
.hero::after {
  content: ''; position: absolute; top: 0; bottom: 0; right: 0; left: auto;
  width: 42%; height: auto;
  background: var(--accent); background-image: none;
  border-bottom-left-radius: 120px;
  z-index: 0;
}
.hero-split { position: relative; z-index: 1; }
/* Amber-Marker auf dem Akzentwort */
.hh-accent {
  display: inline;
  background: var(--gold);
  -webkit-text-fill-color: var(--ink); color: var(--ink);
  padding: .02em .2em; border-radius: 8px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
/* Eyebrow als solider grüner Pill mit Punkt */
.hero-eyebrow { background: #fff; border-color: var(--border); color: var(--accent); }
.eyebrow-dot { background: var(--gold); width: 8px; height: 8px; }
/* Karten auf der grünen Fläche: kräftiger Schatten zum Abheben */
.hero-right { position: relative; z-index: 1; }
.hc-card { box-shadow: 0 18px 50px rgba(35,32,26,.22); }

@media (max-width: 840px) {
  .hero::after { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO v2 – vollflächig Waldgrün (ein klarer Farbblock, kein Split/keine Ecke)
═══════════════════════════════════════════════════════════════════════════ */
.hero { background: var(--accent); }
.hero::after { display: none !important; }   /* schräge Fläche entfernt */

/* Header immer solide hell (dunkle Navi wäre auf Grün unlesbar) */
.site-header { background: var(--bg); border-bottom: 1px solid var(--border); }

/* Eyebrow auf Grün */
.hero-eyebrow { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); color: #fff; }
.eyebrow-dot { background: var(--gold); }

/* Headline hell, Akzent in Amber (sauberer Text statt Marker-Box) */
.hero-heading { color: #fff; }
.hh-accent {
  display: inline; background: none;
  -webkit-text-fill-color: var(--gold); color: var(--gold);
  padding: 0; border-radius: 0;
}
.hero-sub { color: rgba(255,255,255,.82); }
.hero-trust .trust-item { color: rgba(255,255,255,.85); }

/* CTAs: primärer Button in Amber (poppt auf Grün), sekundär als heller Outline */
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: none; }
.btn-primary:hover { background: #cf9230; color: var(--ink); }
.btn-secondary-hero { border: 1px solid rgba(255,255,255,.32); color: #fff; }
.btn-secondary-hero:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* Stats-Leiste auf Grün */
.hero-stats { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.16); }
.hs-num { color: #fff; }
.hs-lbl { color: rgba(255,255,255,.72); }
.hs-sep { background: rgba(255,255,255,.18); }

/* Produktkarten heben sich vom Grün ab */
.hc-card { box-shadow: 0 20px 55px rgba(0,0,0,.28); }

/* Marquee unten im Hero */
.hero-marquee { background: rgba(0,0,0,.12); border-top: 1px solid rgba(255,255,255,.15); }
.marquee-label { color: rgba(255,255,255,.7); border-right-color: rgba(255,255,255,.18); }
.marquee-item { color: rgba(255,255,255,.72); }
.marquee-item:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO v3 – Editorial / Typo-WOW (zentriert, keine Karten, große Wirkung)
═══════════════════════════════════════════════════════════════════════════ */
.hero-right { display: none !important; }
/* Hero füllt genau 100vh; Marquee/Slider sitzt unten und ist sichtbar */
.hero { min-height: 100vh; }
.hero-split {
  grid-template-columns: 1fr; gap: 0;
  min-height: 0; flex: 1; align-items: center;
  padding: 84px 24px 24px;
}
.hero-left { max-width: 920px; width: 100%; min-width: 0; margin: 0 auto; text-align: center; align-items: center; }
.hero-eyebrow { margin: 0 auto 18px; max-width: 100%; white-space: normal; text-align: center; line-height: 1.3; }
.hero-heading {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.04; letter-spacing: -1.5px; margin-bottom: 16px;
}
.hh-rotate-line { max-width: 100%; overflow: visible; }
.hero-sub {
  margin: 0 auto 2px; max-width: 600px; font-size: 17px;
  color: rgba(255,255,255,.85);
}
.hero-trust { justify-content: center; margin-bottom: 36px; }
.hero-ctas { justify-content: center; margin-bottom: 8px; }

/* Trust-Zahlen als kräftige, große Leiste */
.hero-stats {
  margin: 24px auto 0; padding: 16px 12px;
  border-radius: 16px; gap: 0;
}
.hs-item { padding: 0 30px; }
.hs-num { font-size: 30px; font-weight: 800; }
.hs-lbl { font-size: 12.5px; }
.hs-sep { height: 36px; }

/* Dezente flache Amber-Akzentform (kein Verlauf) */
.hero::before {
  content: ''; position: absolute; z-index: 0;
  width: 480px; height: 480px; border-radius: 50%;
  background: rgba(224,162,62,.12);
  top: -160px; right: -120px; background-image: none;
}

/* Hero-Suche (interaktiv, öffnet die Live-Suche) */
.hero-search {
  display: flex; align-items: center; gap: 12px;
  width: 100%; max-width: 560px; margin: 24px auto 0;
  background: #fff; border: none; border-radius: 16px;
  padding: 17px 18px; cursor: pointer; text-align: left;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  transition: transform .15s, box-shadow .15s;
}
.hero-search:hover { transform: translateY(-2px); box-shadow: 0 20px 52px rgba(0,0,0,.26); }
.hero-search-ic { color: var(--accent); flex-shrink: 0; }
.hero-search-ph {
  flex: 1; min-width: 0; color: var(--muted); font-size: 16px;
  font-family: var(--font-body); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-typed { color: var(--ink); font-weight: 600; }
.hero-caret { display: inline-block; width: 2px; height: 1.05em; vertical-align: -2px;
  background: var(--accent); margin-left: 2px; animation: heroBlink 1s step-end infinite; }
@keyframes heroBlink { 50% { opacity: 0; } }
.hero-search-kbd {
  flex-shrink: 0; background: var(--surface-2); color: var(--muted);
  border: 1px solid var(--border); border-radius: 6px; padding: 3px 8px;
  font-size: 12px; font-family: var(--font-body);
}

/* Hero-Schnellzugriff Chips */
.hero-chips { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; }
.hero-chips-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7); margin-right: 2px; }
.hero-chip {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 7px 15px; border-radius: 50px; transition: background .15s, border-color .15s, color .15s;
}
.hero-chip:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Rotierendes Produktwort in der Headline */
.hh-rotate-line { display: block; line-height: 1; white-space: nowrap; }
.hh-rotate { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.hh-caret {
  display: inline-block; width: 5px; height: .8em; vertical-align: baseline;
  background: var(--gold); margin-left: 4px; border-radius: 1px;
  animation: heroBlink 1s step-end infinite;
}

@media (max-width: 620px) {
  .hero-split { min-height: auto; padding: 64px 20px 48px; }
  .hero-heading { font-size: clamp(40px, 12vw, 64px); letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; }
  .hero-stats { flex-wrap: wrap; }
  .hs-item { padding: 8px 16px; }
  .hs-sep { display: none; }
  .hero-search { padding: 15px 16px; }
  .hero-search-ph { font-size: 14px; }
  .hero-search-kbd { display: none; }
}

/* Legal-Seiten: lange URLs umbrechen (behebt mobilen horizontalen Overflow) */
.legal-page { overflow-x: hidden; }
.legal-content, .legal-content * { overflow-wrap: anywhere; word-break: break-word; }

/* Accessibility: klar sichtbare Tastatur-Fokusringe (Amber, auf Grün & Creme sichtbar) */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible,
.nav-link:focus-visible, .chip:focus-visible, .cat-tab:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px;
}

/* Kategorie-Hero im selben Waldgrün-Editorial-Look */
.cat-hero { background: var(--accent); padding: calc(var(--header-h) + 52px) 0 48px; }
.cat-title { color: #fff; font-size: clamp(36px, 5.5vw, 60px); letter-spacing: -1.5px; }
.cat-desc { color: rgba(255,255,255,.82); }
.cat-hero .breadcrumb { color: rgba(255,255,255,.7); }
.cat-hero .breadcrumb a { color: rgba(255,255,255,.7); }
.cat-hero .breadcrumb a:hover { color: #fff; }
.cat-count-badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); color: #fff; }
