/* Partner-Landingpages (Treuhänder / Verbände) — erweitert legal.css + anleitung.css um Sales-Bausteine. */

/* Serif-Headline im Marken-Look der Hauptseite */
.hero-h1 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
.hero-h1 .gold { color: #A88838; }

/* CTA-Reihe */
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin: 1.75rem 0 0.5rem; }
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C 0%, #A88838 100%);
  color: #1F1D1B;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(169, 136, 56, 0.25);
}
.btn-gold:hover { color: #1F1D1B; opacity: 0.93; }
.btn-ghost {
  display: inline-block;
  background: #fff;
  border: 1px solid #E8E4D9;
  color: #1F1D1B;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
}
.btn-ghost:hover { border-color: #C9A84C; color: #1F1D1B; }
.cta-sub { font-size: 0.85rem; color: rgba(31, 29, 27, 0.55); margin: 0.5rem 0 0; }

/* Preis-Karte mit Anker */
.pricecard {
  background: #fff;
  border: 1px solid #E8E4D9;
  border-radius: 18px;
  padding: 1.75rem 2rem;
  margin: 1.75rem 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  position: relative;
}
.pricecard .badge {
  position: absolute;
  top: -0.8rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #C9A84C 0%, #A88838 100%);
  color: #1F1D1B;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.pricecard .price-line { display: flex; align-items: baseline; gap: 0.75rem; flex-wrap: wrap; margin: 0.5rem 0; }
.pricecard .price-old { font-size: 1.3rem; color: rgba(31, 29, 27, 0.4); text-decoration: line-through; }
.pricecard .price-new { font-size: 2.6rem; font-weight: 800; color: #1F1D1B; letter-spacing: -1px; }
.pricecard .price-new small { font-size: 1rem; font-weight: 600; color: rgba(31, 29, 27, 0.6); }
.pricecard .price-save { font-size: 0.9rem; font-weight: 700; color: #1E7B44; }
.pricecard p { margin: 0.5rem 0 0; font-size: 0.95rem; }

/* Geldfluss-Grafik (Verband: 99 → 10 + 89) */
.split { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0.75rem; margin: 1.5rem 0; }
.split .box {
  background: #fff;
  border: 1px solid #E8E4D9;
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  text-align: center;
  flex: 1 1 160px;
}
.split .box strong { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.split .box span { font-size: 0.85rem; color: rgba(31, 29, 27, 0.65); }
.split .box.gold { border-color: #C9A84C; background: #FBF6E5; }
.split .arrow { align-self: center; font-size: 1.4rem; color: #A88838; font-weight: 700; }

/* Zahlen-Kacheln */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.85rem; margin: 1.5rem 0; }
.tiles .tile {
  background: #fff;
  border: 1px solid #E8E4D9;
  border-radius: 14px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.tiles .tile strong { display: block; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.5px; color: #1F1D1B; }
.tiles .tile span { font-size: 0.83rem; color: rgba(31, 29, 27, 0.65); line-height: 1.4; display: block; margin-top: 0.25rem; }

/* Foto-Band (Auflockerung zwischen Sektionen) */
figure.photo { margin: 2.5rem 0; }
figure.photo img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.12);
}
@media (max-width: 640px) {
  figure.photo img { aspect-ratio: 4 / 3; }
}
figure.photo figcaption {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: rgba(31, 29, 27, 0.55);
  text-align: center;
  font-style: italic;
}

/* Beispielrechnung-Tabelle */
.calc-table th:first-child, .calc-table td:first-child { width: 45%; }
.calc-table td strong { color: #1E7B44; }
