/* FinanzEinfach: Landingpage Styles */

@font-face {
  font-family: 'Newsreader';
  src: url('newsreader-normal-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('newsreader-normal-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('newsreader-italic-500.woff2') format('woff2');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('HankenGrotesk.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --navy: #0A1730;
  --navy-700: #122441;
  --navy-soft: #16243F;
  --gold: #C9A85F;
  --gold-400: #D6BA78;
  --gold-deep: #B8924A;
  --gold-ink: #7E6428;   /* dunkleres Gold NUR für Text auf hellem Grund (WCAG AA, >=4,5:1) */
  --ivory: #F4ECDC;
  --white-soft: #FBF7EF;
  --ink: #2A2D33;
  --ink-soft: #5A5E66;
  --border-subtle: rgba(10, 23, 48, 0.12);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Sichtbarer Tastatur-Fokus für alle interaktiven Elemente (WCAG 2.4.7) */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
/* auf dunklem Grund (Nav, Hero, finale CTA) heller Ring für genug Kontrast */
nav :focus-visible,
.hero :focus-visible,
.cta-final :focus-visible {
  outline-color: var(--ivory);
}

/* Bewegung reduzieren, wenn der Nutzer das im System eingestellt hat */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: 'Hanken Grotesk', sans-serif;
  background: var(--white-soft);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1088px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

/* ---------- Nav ---------- */

nav {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 168, 95, 0.18);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
  position: relative;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand img { height: 34px; width: auto; }
.nav-brand span {
  color: var(--ivory);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 15px;
}
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 200ms var(--ease), transform 140ms var(--ease);
}
.nav-cta:hover { background: var(--gold-400); }
.nav-cta:active { transform: translateY(1px); }

/* ---------- Nav-Menü + mobiler Umschalter (ohne JS, Checkbox-Hack) ---------- */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-link {
  color: rgba(244, 236, 220, 0.82);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 200ms var(--ease);
}
.nav-link:hover { color: var(--gold); }
.nav-link.is-active { color: var(--gold); }
.nav-burger { display: none; }

@media (max-width: 960px) {
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    cursor: pointer;
  }
  .nav-burger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ivory);
    border-radius: 2px;
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy);
    border-top: 1px solid rgba(201, 168, 95, 0.18);
    padding: 6px 24px 18px;
    display: none;
    z-index: 60;
  }
  .nav-toggle:checked ~ .nav-menu { display: flex; }
  .nav-menu .nav-link {
    padding: 15px 2px;
    border-bottom: 1px solid rgba(244, 236, 220, 0.08);
  }
  .nav-menu .nav-cta { margin-top: 14px; text-align: center; }
  .nav-rechner { width: 100%; }
  .nav-rechner > summary { padding: 15px 2px; border-bottom: 1px solid rgba(244, 236, 220, 0.08); }
  .nav-rechner-panel { position: static; transform: none; background: transparent; border: none; box-shadow: none; padding: 2px 0 8px 14px; min-width: 0; }
  .nav-rechner-item { padding: 12px 2px; font-size: 14.5px; }
}

/* ---------- Rechner-Dropdown ---------- */
.nav-rechner { position: relative; }
.nav-rechner > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 7px;
  color: rgba(244, 236, 220, 0.82); font-size: 15px; font-weight: 500;
  transition: color 200ms var(--ease);
}
.nav-rechner > summary::-webkit-details-marker { display: none; }
.nav-rechner > summary::after {
  content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px); transition: transform 180ms var(--ease);
}
.nav-rechner[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.nav-rechner > summary:hover, .nav-rechner[open] > summary, .nav-rechner.has-active > summary { color: var(--gold); }
.nav-rechner-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 2px; min-width: 230px; padding: 8px;
  background: var(--navy); border: 1px solid rgba(201, 168, 95, 0.25); border-radius: 12px;
  box-shadow: 0 18px 50px rgba(4, 10, 24, 0.5); z-index: 70;
}
.nav-rechner-item {
  color: rgba(244, 236, 220, 0.82); text-decoration: none; font-size: 14.5px; font-weight: 500;
  padding: 10px 14px; border-radius: 8px; white-space: nowrap; transition: color 160ms var(--ease), background 160ms var(--ease);
}
.nav-rechner-item:hover { color: var(--gold); background: rgba(201, 168, 95, 0.08); }
.nav-rechner-item.is-active { color: var(--gold); }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--navy) 0%, #081226 100%);
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
}
.hero .watermark {
  position: absolute;
  right: -60px; top: -40px;
  width: 420px;
  opacity: 0.06;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.12;
  color: var(--ivory);
  margin: 20px 0 18px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: rgba(244, 236, 220, 0.75);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-sub .hl { color: var(--gold); font-weight: 600; }

/* Gemaltes Hero-Bild (Design-Chat 11.07., Pascal-Wahl A): randlos ins Navy */
.hero-visual { position: relative; min-width: 0; }
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  /* Freigestelltes Motiv (Design-Chat 11.07.): Transparenz statt Maske/Blend,
     die Objekte stehen mit eigenem Boden-Schatten direkt auf dem Hero-Navy */
}

/* Gold-Schimmer (Pascal 11.07., ersetzt den Lichtkegel): weicher seitlicher
   Schein wie im Original-Gemaelde, keine Kanten, kein Strahl */
.hero .goldschimmer {
  position: absolute;
  top: -10%;
  right: 22%;
  width: 52%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(240, 213, 150, 0.42) 0%, rgba(219, 184, 112, 0.22) 34%, rgba(201, 168, 95, 0.08) 58%, transparent 76%);
  filter: blur(38px);
  pointer-events: none;
}
@media (max-width: 880px) {
  .hero .goldschimmer { display: none; }
}
@media (max-width: 880px) {
  .hero-visual { display: none; }
}

/* === Startseite einladender (Design-Review 11.07.) === */

/* Schnellzugriff-Chips im Hero */
.hero-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  display: inline-block; padding: 8px 16px;
  font-size: 14px; font-weight: 600; color: rgba(244, 236, 220, 0.85);
  border: 1px solid rgba(244, 236, 220, 0.35); border-radius: 999px;
  text-decoration: none; transition: all 200ms var(--ease);
}
.chip:hover, .chip:focus-visible { color: var(--gold); border-color: var(--gold); }

/* Geld-Check als breite NEU-Karte ueber der Rechner-Reihe (helle Karte, Gold-Rahmen) */
a.punkt-neu {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-bottom: 18px; padding: 22px 26px;
  border: 1.5px solid var(--gold); border-radius: 16px;
  text-decoration: none; color: inherit;
}
a.punkt-neu .neu-badge {
  flex-shrink: 0; padding: 5px 12px; border-radius: 999px;
  background: var(--gold); color: var(--navy);
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
a.punkt-neu h3 { font-size: 19px; margin-bottom: 4px; }
a.punkt-neu p { font-size: 15px; margin: 0; }
a.punkt-neu .zum { margin-left: auto; flex-shrink: 0; font-size: 14.5px; font-weight: 600; color: var(--gold-ink); }
a.punkt-neu:hover .zum { color: var(--gold-deep); }

/* Newsletter-Box vor dem Footer (Navy, Umschlag-Motiv, Formular direkt drin) */
.nl-box {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  background: var(--navy); border-radius: 20px; padding: 40px 46px;
}
.nl-box .eyebrow { color: var(--gold); }
.nl-box-punkte { list-style: none; margin: 14px 0 20px; padding: 0; }
.nl-box-punkte li {
  position: relative; padding-left: 26px; margin-bottom: 8px;
  color: rgba(244, 236, 220, 0.88); font-size: 16px;
}
.nl-box-punkte li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.nl-box .foot-signup { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-box .foot-signup input[type="email"] {
  flex: 1; min-width: 220px; padding: 12px 16px;
  background: rgba(251, 247, 239, 0.06); border: 1px solid rgba(201, 168, 95, 0.35);
  border-radius: 999px; color: var(--ivory); font-family: inherit; font-size: 15px;
}
.nl-box .foot-signup input[type="email"]::placeholder { color: rgba(244, 236, 220, 0.45); }
.nl-box-klartext { margin-top: 12px; font-size: 13.5px; color: rgba(244, 236, 220, 0.65); }
.nl-box-klartext a { color: var(--gold); }
.nl-box-bild img { display: block; width: 100%; height: auto; }
@media (max-width: 880px) {
  .nl-box { grid-template-columns: 1fr; padding: 30px 24px; gap: 24px; }
  .nl-box-bild { max-width: 380px; margin: 0 auto; }
}

/* Wer dahinter steckt: Duo-Bild mit Zitat-Caption */
.serie-duo picture img {
  display: block; width: 100%; height: auto;
  border-radius: 18px;
  border: 4px solid var(--gold);
  box-shadow: 0 14px 44px rgba(4, 10, 24, 0.35);
}
.serie-duo .tagline {
  margin-top: 16px; text-align: center;
  font-family: 'Newsreader', serif; font-size: 19px; color: var(--navy);
}
.serie-duo .tagline strong { color: var(--gold-ink); }

/* Form */
.signup {
  background: rgba(251, 247, 239, 0.04);
  border: 1px solid rgba(201, 168, 95, 0.25);
  border-radius: 18px;
  padding: 28px;
  max-width: 460px;
}
.signup label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.signup input[type="email"] {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ivory);
  background: rgba(10, 23, 48, 0.55);
  border: 1px solid rgba(244, 236, 220, 0.22);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.signup input[type="email"]::placeholder { color: rgba(244, 236, 220, 0.4); }
.signup input[type="email"]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 95, 0.25);
}
.btn-gold {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  background: var(--gold);
  border: none;
  border-radius: 999px;
  padding: 15px 28px;
  cursor: pointer;
  transition: background 200ms var(--ease), box-shadow 200ms var(--ease), transform 140ms var(--ease);
}
.btn-gold:hover {
  background: var(--gold-400);
  box-shadow: 0 6px 28px rgba(201, 168, 95, 0.35);
}
.btn-gold:active { transform: translateY(1px); }
.signup .trust {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(244, 236, 220, 0.55);
  text-align: center;
}
.signup .consent {
  margin-top: 8px;
  font-size: 11.5px;
  line-height: 1.5;
  color: rgba(244, 236, 220, 0.5);
  text-align: center;
}
.signup .consent a { color: rgba(244, 236, 220, 0.78); text-decoration: underline; }
/* Brevo-Spamschutz: Feld muss für Menschen unsichtbar und unerreichbar sein */
.brevo-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* PDF-Vorschau-Karte */
.preview-card {
  background: var(--white-soft);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(4, 10, 24, 0.55);
  overflow: hidden;
  transform: rotate(1.6deg);
  border: 1px solid rgba(201, 168, 95, 0.3);
}
.preview-card img { display: block; width: 100%; height: auto; }
.preview-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.preview-stack .preview-card {
  position: absolute;
  bottom: 0;
  width: 76%;
  max-width: 268px;
  margin: 0;
  transform-origin: bottom center;
}
.preview-back { transform: rotate(-14deg) translateX(-24%); z-index: 1; filter: brightness(0.9); }
.preview-mid { transform: rotate(14deg) translateX(24%); z-index: 1; filter: brightness(0.9); }
.preview-front { transform: rotate(0deg); z-index: 2; }
.preview-badge {
  white-space: nowrap;
  position: absolute;
  z-index: 10;
  bottom: 6%;
  right: 4%;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(4, 10, 24, 0.4);
}

/* ---------- Inhalt-Sektion ---------- */

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.18;
  color: var(--navy);
  margin: 14px 0 16px;
}
.section-head p { color: var(--ink-soft); font-size: 17px; }
.section-head .eyebrow { color: var(--gold-ink); }

.punkte {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.punkt {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--gold);
  border-radius: 18px;
  padding: 28px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.punkt:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(10, 23, 48, 0.10);
}
.punkt .nr {
  font-family: 'Newsreader', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--gold-ink);
  line-height: 1;
  margin-bottom: 14px;
}
.punkt h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.punkt p { font-size: 15px; color: var(--ink-soft); }

/* ---------- Serie / YouTube ---------- */

.serie {
  background: var(--ivory);
}
.serie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.serie h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--navy);
  line-height: 1.2;
  margin: 14px 0 16px;
}
.serie p { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; }
.serie .eyebrow { color: var(--gold-ink); }
.btn-outline {
  display: inline-block;
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 200ms var(--ease);
}
.btn-outline:hover {
  border-color: var(--gold-ink);
  color: var(--gold-ink);
}
.serie-card {
  background: var(--navy);
  border-radius: 18px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.serie-card .watermark {
  position: absolute;
  right: -40px; bottom: -60px;
  width: 240px;
  opacity: 0.08;
}
.serie-card .tagline {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  color: var(--ivory);
  line-height: 1.35;
  position: relative;
}
.serie-card .tagline strong { color: var(--gold); font-style: normal; font-weight: 500; }

/* ---------- CTA-Schluss ---------- */

.cta-final {
  background: linear-gradient(180deg, var(--navy) 0%, #081226 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final .watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  opacity: 0.05;
  pointer-events: none;
}
.cta-final h2 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  color: var(--ivory);
  margin: 14px 0 14px;
  position: relative;
}
.cta-final p {
  color: rgba(244, 236, 220, 0.7);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 36px;
  position: relative;
}
.cta-final .signup { margin: 0 auto; position: relative; }

/* ---------- Footer ---------- */

footer {
  background: #060D1C;
  padding: 36px 0;
}
.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-brand {
  color: rgba(244, 236, 220, 0.55);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.foot-brand strong { color: var(--ivory); letter-spacing: 0.14em; }
.foot-links { display: flex; gap: 28px; }
.foot-links a {
  color: rgba(244, 236, 220, 0.55);
  font-size: 13px;
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.foot-links a:hover { color: var(--gold); }
.foot-social { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.foot-social-label { color: rgba(244, 236, 220, 0.55); font-size: 13px; letter-spacing: 0.04em; }
.foot-social-icons { display: inline-flex; align-items: center; gap: 10px; }
/* Spezifitaet bewusst auf .foot-col a angehoben: die generische Footer-Link-Regel
   (.foot-col a { display:block }) ist spezifischer als eine reine Klasse und hat
   sonst inline-flex ueberschrieben. Folge war ein Icon ohne Abstand, mit dem Wort
   YouTube auf der Grundlinie statt mittig daneben (Pascal-Fund 27.07.2026). */
.foot-col a.foot-social-icon,
.foot-social-icon {
  display: inline-flex; align-items: center; gap: 9px;
  color: rgba(244, 236, 220, 0.6);
  font-size: 13.5px;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 0;
  transition: color 200ms var(--ease);
}
.foot-social-icon svg { width: 21px; height: 21px; flex-shrink: 0; }
.foot-social-icon:hover { color: var(--gold); }
.foot-social-icon::after { content: "YouTube"; }

/* ---------- Rechtsseiten ---------- */

.legal { padding: 72px 24px 96px; max-width: 720px; }
.legal h1, .legal h2, .legal h3, .legal p, .legal li, .legal a { overflow-wrap: break-word; }
.legal h1, .legal h2 { -webkit-hyphens: auto; hyphens: auto; }
.legal h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 10px;
}
.legal p, .legal li { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--gold-ink); }
.placeholder {
  background: rgba(201, 168, 95, 0.14);
  border: 1px dashed var(--gold-deep);
  border-radius: 8px;
  padding: 2px 8px;
  font-weight: 600;
  color: var(--gold-ink);
}

/* ---------- Danke-Seite ---------- */

.danke {
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 96px 0;
}
.danke-inner { max-width: 560px; margin: 0 auto; }
.danke h1 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--navy);
  margin: 18px 0 16px;
}
.danke p { color: var(--ink-soft); font-size: 17px; margin-bottom: 12px; }
.danke p a:not([class]) { color: var(--gold-ink); text-decoration: underline; text-underline-offset: 2px; }
.danke p a:not([class]):hover { color: var(--gold); }

/* ---------- Empfehlungen-Seite ---------- */

.hero-slim { padding: 72px 0 64px; }
.hero-slim .hero-inner { max-width: 720px; position: relative; }

.transparenz {
  background: var(--ivory);
  border-bottom: 1px solid var(--border-subtle);
  padding: 26px 0;
}
.transparenz-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  max-width: 860px;
}
.transparenz .marker {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  padding: 5px 14px;
  margin-top: 3px;
}
.transparenz p { font-size: 14.5px; color: var(--ink-soft); }
.transparenz strong { color: var(--navy); }

.empfehlungen {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
@media (max-width: 380px) {
  .empfehlungen { grid-template-columns: minmax(0, 1fr); }
}
.empfehlung {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--gold);
  border-radius: 18px;
  padding: 28px;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.empfehlung:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(10, 23, 48, 0.10);
}
.empfehlung-logo {
  display: flex;
  align-items: center;
  min-height: 44px;
  margin-bottom: 16px;
}
.empfehlung-logo img { display: block; width: auto; max-width: 100%; }
.empfehlung-logo .logo-kachel {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  border-radius: 8px;
  padding: 8px 12px;
}
.empfehlung .anzeige {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-ink);
  border: 1px solid rgba(201, 168, 95, 0.5);
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: 18px;
}
.empfehlung h3 {
  font-family: 'Newsreader', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.22;
  color: var(--navy);
  margin-bottom: 4px;
}
.empfehlung .autor { font-size: 14px; color: var(--ink-soft); margin-bottom: 18px; }
.empfehlung .mini-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 4px;
}
.empfehlung .fuer-wen { font-size: 15px; color: var(--ink); margin-bottom: 14px; }
.empfehlung .warum { font-size: 15px; color: var(--ink-soft); margin-bottom: 16px; }
.empfehlung .einordnung {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin-bottom: 24px;
}
.empfehlung .btn-gold {
  margin-top: auto;
  text-align: center;
  text-decoration: none;
}
.empfehlung .link-hinweis {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
}
.empfehlung .risiko-hinweis {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-soft);
  background: rgba(10, 23, 48, 0.04);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.kriterien {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.kriterium {
  background: rgba(251, 247, 239, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 24px;
}
.kriterium h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.kriterium p { font-size: 14.5px; color: var(--ink-soft); }

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-buttons .btn-gold {
  display: inline-block;
  width: auto;
  text-decoration: none;
}
.btn-ghost {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ivory);
  border: 1.5px solid rgba(244, 236, 220, 0.45);
  border-radius: 999px;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 200ms var(--ease);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .hero-grid, .serie-grid { grid-template-columns: 1fr; gap: 44px; }
  .preview-card { max-width: 380px; margin: 0 auto; }
  .hero { padding: 56px 0 64px; }
  .section { padding: 64px 0; }
  .transparenz-inner { flex-direction: column; gap: 12px; }
}

/* ---------- Video-Tipp-Karte (cookiefrei, reiner Link zu YouTube) ---------- */
.video-tip-section { padding: 16px 0 56px; }
.video-tip {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 28px;
  background: var(--navy);
  border: 1px solid var(--navy-700);
  border-radius: 18px;
  box-shadow: 0 10px 34px rgba(10, 23, 48, 0.16);
  text-decoration: none;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.video-tip:hover, .video-tip:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(10, 23, 48, 0.26);
}
.video-tip-play {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  transition: background 240ms var(--ease);
}
.video-tip:hover .video-tip-play { background: var(--gold-400); }
.video-tip-play svg { width: 24px; height: 24px; margin-left: 3px; }
.video-tip-body { display: flex; flex-direction: column; gap: 4px; }
.video-tip-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.video-tip-title {
  font-family: 'Newsreader', serif; font-weight: 500;
  font-size: 19px; line-height: 1.3; color: var(--white-soft);
}
.video-tip-cta { font-size: 14px; font-weight: 600; color: var(--gold-400); }
@media (max-width: 560px) {
  .video-tip { gap: 16px; padding: 20px; }
  .video-tip-play { width: 46px; height: 46px; }
  .video-tip-title { font-size: 17px; }
}

/* === Scroll-Reveal (sitewide, ruhig, reveal-once) === */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px);
    transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); }
  .reveal.is-visible { opacity: 1; transform: none; }
  /* Karten-Reihen: straffer Stagger, Reihe komplett unter 0,5s (Design-Befund 11.07.) */
  .punkte .punkt.reveal, .artikel-tools .artikel-karte.reveal { transition-duration: .35s; }
  .punkte .punkt.reveal:nth-child(2), .artikel-tools .artikel-karte.reveal:nth-child(2) { transition-delay:.05s; }
  .punkte .punkt.reveal:nth-child(3), .artikel-tools .artikel-karte.reveal:nth-child(3) { transition-delay:.10s; }
  .punkte .punkt.reveal:nth-child(4), .artikel-tools .artikel-karte.reveal:nth-child(4) { transition-delay:.15s; }
  .punkte .punkt.reveal:nth-child(n+5), .artikel-tools .artikel-karte.reveal:nth-child(n+5) { transition-delay:.20s; }
}

/* === Ergebnis-Peak (Design-Psychologie 11.07.): das Ergebnis dominiert die Seite === */
.kpi-card.kpi-card--hero .kpi-value { font-size: clamp(44px, 5vw, 60px); letter-spacing: -0.01em; }
.kpi-next {
  display: block; width: 100%; margin-top: 14px; padding-top: 12px;
  border-top: 1px solid rgba(201, 168, 95, 0.25);
  font-size: 14.5px; font-weight: 600; line-height: 1.4;
  color: var(--gold); text-decoration: none;
  transition: color 200ms var(--ease);
}
.kpi-next:hover, .kpi-next:focus-visible { color: var(--ivory); }
.kpi-next--hell { border-top-color: var(--border-subtle); color: var(--gold-ink); }
.kpi-next--hell:hover, .kpi-next--hell:focus-visible { color: var(--navy); }

/* === Rechner-Hub: klickbare Link-Karten === */
a.punkt { text-decoration: none; color: inherit; display: block; }
a.punkt .zum { display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--gold-ink); }
a.punkt:hover .zum { color: var(--gold-deep); }

/* === Glossar === */
.glossar-liste { max-width: 780px; margin: 0 auto; }
.glossar-eintrag { padding: 22px 0; border-top: 1px solid var(--border-subtle); }
.glossar-eintrag:first-child { border-top: none; padding-top: 0; }
.glossar-eintrag h3 { font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.glossar-eintrag p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.6; }

/* === Glossar-Suche === */
.glossar-suche { max-width: 780px; margin: 0 auto 30px; }
.glossar-suche-label { display: block; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-ink); font-weight: 700; margin-bottom: 10px; }
.glossar-suche-feld { position: relative; }
.glossar-suche-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 21px; height: 21px; color: var(--gold-deep); pointer-events: none; }
.glossar-suche input { width: 100%; padding: 17px 18px 17px 52px; font-size: 16px; font-family: inherit;
  border: 2px solid var(--gold); border-radius: 14px; background: #FFFFFF; color: var(--ink);
  box-shadow: 0 6px 22px rgba(10, 23, 48, 0.07); }
.glossar-suche input::placeholder { color: var(--ink-soft); }
.glossar-suche input:focus { outline: none; border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(201, 168, 95, 0.25); }
.glossar-leer { max-width: 780px; margin: 0 auto; color: var(--ink-soft); }

/* ===== Skip-Link (Tastatur-Navigation) ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 400;
  background: var(--navy);
  color: var(--ivory);
  padding: 10px 18px;
  border: 2px solid var(--gold);
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 12px;
  top: 12px;
}

/* ===== Quiet-Luxury Phase 1 (03.07.) ===== */

/* Hero-CTAs (Startseite, Wert vor Abo) */
.hero-ctas { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; align-items: center; }
.btn-hell {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ivory);
  text-decoration: none;
  padding: 13px 22px;
  border: 1px solid rgba(244, 236, 220, 0.35);
  border-radius: 10px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.35s var(--ease);
}
.btn-hell:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-ctas .btn-gold {
  display: inline-block;
  width: auto;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 15.5px;
}

/* Hover-Politur: einheitliches Schweben */
@media (prefers-reduced-motion: no-preference) {
  .btn-gold, .btn-outline { transition: background 0.25s var(--ease), box-shadow 0.35s var(--ease), transform 0.35s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease); }
  .btn-gold:hover, .btn-outline:hover { transform: translateY(-2px); }
  .glossar-eintrag { transition: transform 0.35s var(--ease); }
  .glossar-eintrag:hover { transform: translateX(4px); }
  .foot-col a { transition: color 0.2s var(--ease), transform 0.3s var(--ease); }
  .foot-col a:hover { transform: translateX(3px); }
}

/* Footer 4-teilig: das ewige Angebot */
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.6fr;
  gap: 44px;
  padding-bottom: 8px;
}
.foot-col-title {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foot-col a {
  display: block;
  color: rgba(244, 236, 220, 0.6);
  font-size: 13.5px;
  text-decoration: none;
  margin-bottom: 9px;
}
.foot-col a:hover { color: var(--gold); }
.foot-satz {
  color: rgba(244, 236, 220, 0.6);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 10px 0 14px;
}
.foot-risiko {
  color: rgba(244, 236, 220, 0.4);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 12px;
}
.foot-signup { display: flex; gap: 8px; margin-top: 4px; }
.foot-signup .btn-gold { width: auto; flex-shrink: 0; display: inline-block; }
.foot-signup .brevo-honeypot { display: none; }
.foot-signup input {
  flex: 1;
  min-width: 0;
  padding: 11px 13px;
  border-radius: 9px;
  border: 1px solid rgba(244, 236, 220, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ivory);
  font-size: 14px;
  font-family: inherit;
}
.foot-signup input::placeholder { color: rgba(244, 236, 220, 0.4); }
.foot-signup input:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.btn-slim { padding: 11px 16px !important; font-size: 14px !important; }
.foot-consent { color: rgba(244, 236, 220, 0.45); font-size: 11.5px; margin-top: 10px; }
.foot-consent a { color: rgba(244, 236, 220, 0.6); }
footer { padding: 52px 0 40px; }
@media (max-width: 900px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Vorschau-Stapel auch auf hellem Grund */
.section .preview-stack { margin: 36px auto 0; }

/* Trust-Leiste (Wise-Muster: Vertrauen vor Verkauf) */
.trust-leiste { background: var(--white-soft); border-bottom: 1px solid var(--border-subtle); padding: 26px 0; }
.trust-leiste-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.trust-punkt { display: flex; gap: 14px; align-items: flex-start; }
.trust-punkt svg { width: 26px; height: 26px; color: var(--gold-ink); flex-shrink: 0; margin-top: 2px; }
.trust-punkt strong { display: block; font-size: 14.5px; color: var(--navy); margin-bottom: 3px; }
.trust-punkt span { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 760px) { .trust-leiste-grid { grid-template-columns: 1fr; gap: 18px; } }

/* Goldstaub im Hero (Marken-Element, dezent) */
.hero { position: relative; overflow: hidden; }
.dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.dust i {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.22;
}
.dust i:nth-child(1) { width: 3px; height: 3px; top: 22%; left: 12%; }
.dust i:nth-child(2) { width: 5px; height: 5px; top: 60%; left: 7%; opacity: 0.14; filter: blur(1px); }
.dust i:nth-child(3) { width: 2px; height: 2px; top: 34%; left: 30%; }
.dust i:nth-child(4) { width: 4px; height: 4px; top: 74%; left: 40%; opacity: 0.16; }
.dust i:nth-child(5) { width: 3px; height: 3px; top: 18%; left: 56%; opacity: 0.28; }
.dust i:nth-child(6) { width: 6px; height: 6px; top: 44%; left: 66%; opacity: 0.12; filter: blur(2px); }
.dust i:nth-child(7) { width: 2px; height: 2px; top: 66%; left: 72%; }
.dust i:nth-child(8) { width: 4px; height: 4px; top: 28%; left: 82%; opacity: 0.2; }
.dust i:nth-child(9) { width: 3px; height: 3px; top: 78%; left: 88%; opacity: 0.25; }
.dust i:nth-child(10) { width: 2px; height: 2px; top: 12%; left: 94%; opacity: 0.18; }
.dust i:nth-child(11) { width: 5px; height: 5px; top: 84%; left: 20%; opacity: 0.12; filter: blur(1px); }
.dust i:nth-child(12) { width: 3px; height: 3px; top: 50%; left: 48%; opacity: 0.2; }
@media (prefers-reduced-motion: no-preference) {
  .dust i { animation: dust-schweben 9s ease-in-out infinite alternate; }
  .dust i:nth-child(2n) { animation-duration: 12s; animation-delay: -4s; }
  .dust i:nth-child(3n) { animation-duration: 15s; animation-delay: -8s; }
  @keyframes dust-schweben {
    from { transform: translateY(0); }
    to { transform: translateY(-26px); }
  }
}

/* Sektions-Bilder (Marken-Illustrationen, Pascal-Freigabe 04.07.) */
.sektion-split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 46px; align-items: center; margin-bottom: 44px; }
.sektion-split .section-head { margin-bottom: 0; }
.sektion-split.bild-links .sektion-bild { order: -1; }
.sektion-bild img {
  width: 100%; height: auto; display: block;
  border-radius: 16px;
  border: 4px solid var(--gold);
  box-shadow: 0 18px 50px rgba(10, 23, 48, 0.14);
}
@media (max-width: 820px) {
  .sektion-split { grid-template-columns: 1fr; gap: 26px; }
  .sektion-split.bild-links .sektion-bild { order: 0; }
}

/* Kein seitliches Verschieben auf dem Handy: Ueberstand (gedrehte Vorschau-Karten,
   Wasserzeichen) wird an der Viewport-Kante abgeschnitten. 'clip' statt 'hidden',
   damit position: sticky weiter funktioniert. */
html, body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}


/* Hover-Politur Empfehlungsseite (Pascal 06.07.) */
.kriterium {
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.kriterium:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(10, 23, 48, 0.10);
  border-color: rgba(201, 168, 95, 0.55);
}
.empfehlung:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(10, 23, 48, 0.14);
  border-color: rgba(201, 168, 95, 0.45);
}


/* Glossar-Begriffe im Fliesstext: goldene Markierung + Tooltip (Pascal 06.07.) */
a.begriff {
  color: var(--gold-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dotted var(--gold);
  cursor: help;
  position: relative;
}
a.begriff:hover { border-bottom-style: solid; }
a.begriff::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy);
  color: #FBF7EF;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
  width: max-content;
  max-width: min(300px, 78vw);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow: 0 12px 30px rgba(10, 23, 48, 0.25);
  z-index: 30;
}
a.begriff:hover::after,
a.begriff:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* 4. PDF-Faecher im Vorschau-Stapel (Pascal 10.07.): gestapelt in Ruhe,
   Faecher beim Draufzeigen, Einzelkarte hebt sich, Maus-Seite bestimmt die Ebenen-Reihenfolge */
.stapel-faecher .preview-card { transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, box-shadow 0.5s ease; }
.stapel-faecher .preview-back2 { transform: rotate(-2.5deg) translateX(-3%); }
.stapel-faecher .preview-back  { transform: rotate(-1deg) translateX(-1%); }
.stapel-faecher .preview-mid   { transform: rotate(1.5deg) translateX(1%); }
.stapel-faecher .preview-front { transform: rotate(3deg) translateX(3%); }

.stapel-faecher:hover .preview-back2, .stapel-faecher.ist-offen .preview-back2 { transform: rotate(-22deg) translateX(-54%) translateY(2%); }
.stapel-faecher:hover .preview-back,  .stapel-faecher.ist-offen .preview-back  { transform: rotate(-8deg) translateX(-19%); }
.stapel-faecher:hover .preview-mid,   .stapel-faecher.ist-offen .preview-mid   { transform: rotate(8deg) translateX(19%); }
.stapel-faecher:hover .preview-front, .stapel-faecher.ist-offen .preview-front { transform: rotate(22deg) translateX(54%) translateY(2%); }

.stapel-faecher .preview-card:hover { filter: brightness(1.03); box-shadow: 0 26px 48px rgba(10, 23, 48, 0.35); }
.stapel-faecher:hover .preview-back2:hover { transform: rotate(-22deg) translateX(-54%) translateY(-4%) scale(1.06); }
.stapel-faecher:hover .preview-back:hover  { transform: rotate(-8deg) translateX(-19%) translateY(-6%) scale(1.06); }
.stapel-faecher:hover .preview-mid:hover   { transform: rotate(8deg) translateX(19%) translateY(-6%) scale(1.06); }
.stapel-faecher:hover .preview-front:hover { transform: rotate(22deg) translateX(54%) translateY(-4%) scale(1.06); }

.stapel-faecher.von-rechts .preview-back2 { z-index: 1; }
.stapel-faecher.von-rechts .preview-back  { z-index: 2; }
.stapel-faecher.von-rechts .preview-mid   { z-index: 3; }
.stapel-faecher.von-rechts .preview-front { z-index: 4; }
.stapel-faecher.von-links .preview-back2 { z-index: 4; }
.stapel-faecher.von-links .preview-back  { z-index: 3; }
.stapel-faecher.von-links .preview-mid   { z-index: 2; }
.stapel-faecher.von-links .preview-front { z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .stapel-faecher .preview-card { transition: none; }
  .stapel-faecher .preview-back2 { transform: rotate(-22deg) translateX(-54%) translateY(2%); }
  .stapel-faecher .preview-back  { transform: rotate(-8deg) translateX(-19%); }
  .stapel-faecher .preview-mid   { transform: rotate(8deg) translateX(19%); }
  .stapel-faecher .preview-front { transform: rotate(22deg) translateX(54%) translateY(2%); }
}

/* Fallback ohne Faecher-Skript oder auf Einzelkarten-Seiten: bisheriger fester Faecher */
.preview-stack:not(.stapel-faecher) .preview-back2 { transform: rotate(-21deg) translateX(-42%) translateY(-2%); z-index: 1; filter: brightness(0.85); }
.preview-stack:not(.stapel-faecher) .preview-back { transform: rotate(-7deg) translateX(-14%); z-index: 2; filter: brightness(0.95); }
.preview-stack:not(.stapel-faecher) .preview-mid { transform: rotate(7deg) translateX(14%); z-index: 2; filter: brightness(0.95); }
.preview-stack:not(.stapel-faecher) .preview-front { transform: rotate(21deg) translateX(42%) translateY(-2%); z-index: 1; filter: brightness(0.85); }
.seiten-bild { max-width: 860px; margin: 0 auto 36px; }
.seiten-bild img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 4px solid var(--gold);
  box-shadow: 0 18px 44px rgba(10, 23, 48, 0.16);
}


/* Gezielt 4 Karten in einer Reihe (nur Raster mit .punkte-4) */
@media (min-width: 1000px) {
  .punkte-4 { grid-template-columns: repeat(4, 1fr); }
}


/* Glossar-Begriffe deutlicher: Gold-Chip statt nur Unterstreichung (Pascal 06.07.) */
a.begriff {
  background: rgba(201, 168, 95, 0.16);
  padding: 1px 5px 2px;
  border-radius: 6px;
  border-bottom: 1.5px dotted rgba(126, 100, 40, 0.75);
  transition: background 160ms ease;
}
a.begriff:hover {
  background: rgba(201, 168, 95, 0.32);
}
.merkkasten a.begriff {
  color: #EDDDB6;
  background: rgba(201, 168, 95, 0.22);
  border-bottom-color: rgba(201, 168, 95, 0.8);
}
.merkkasten a.begriff:hover { background: rgba(201, 168, 95, 0.38); }


/* QR-Zeile in Empfehlungs-Karten (Desktop-Bruecke fuer App-only-Anbieter, 10.07.) */
.empfehlung .qr-zeile { display: flex; align-items: center; gap: 14px; margin-top: 16px; padding: 12px 14px; background: var(--ivory); border-radius: 10px; }
.empfehlung .qr-zeile img { flex-shrink: 0; display: block; }
.empfehlung .qr-zeile p { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft, #5A5E66); margin: 0; }
@media (hover: none), (max-width: 720px) { .empfehlung .qr-zeile { display: none; } }
