/* ============================================================
   kuvertieren.de – Hauptstylesheet
   ============================================================ */

/* Fonts – selbst gehostet (DSGVO-konform, keine Anfragen an Google) */
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/inter-tight-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/inter-tight-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/inter-tight-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/inter-tight-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/syne-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/syne-800.woff2') format('woff2');
}

/* ── Variablen ──────────────────────────────────────────────── */
:root {
  --bg:         #14171c;
  --surface:    #1e2228;
  --surface-2:  #252b33;
  --border:     #2a2f38;
  --accent:     #fcaf3c;
  --accent-dim: rgba(252,175,60,0.12);
  --accent-hover: #e89a25;
  --text:       #f1f5f9;
  --text-muted: #9ca3af;
  --text-dim:   #6b7280;
  --red-dim:    rgba(239,68,68,0.1);
  --green-dim:  rgba(34,197,94,0.1);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter Tight', sans-serif;
  --max-w: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .container { padding: 0 16px; } }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,23,28,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  white-space: nowrap;
}
.logo span { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav a:hover, .nav a.active {
  color: var(--text);
  background: var(--surface);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 200px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
}
.header-cta {
  background: var(--accent);
  color: var(--bg) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
}
.header-cta:hover { background: var(--accent-hover) !important; color: var(--bg) !important; }

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--border);
}
.mobile-nav a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 4px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--text); }
.mobile-nav .mobile-cta {
  margin-top: 12px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  border: none;
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { font-size: 20px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); max-width: 240px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  padding: 3px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* ── Breadcrumb ──────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 24px 0 0;
}
.breadcrumb a { color: var(--text-dim); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-muted); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 72px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid rgba(252,175,60,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--text);
}
.hero p {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 0;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
.hero-stat {
  flex: 1;
  padding: 20px 16px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
}
.hero-stat span { font-size: 12px; color: var(--text-muted); }
@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 50%; border-bottom: 1px solid var(--border); }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover { color: var(--text); border-color: #3a4150; background: var(--surface); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ── Section titles ──────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── Service Cards ───────────────────────────────────────────── */
.service-cards { padding: 72px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .cards-grid { grid-template-columns: 1fr; } }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, background .2s;
}
.card:hover { border-color: rgba(252,175,60,.3); background: var(--surface-2); }
.card-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.card-highlights { display: flex; flex-direction: column; gap: 6px; }
.card-highlights li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.card-highlights li::before {
  content: '✓';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
}
.card-link {
  display: block;
  margin-top: 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.card-link:hover { text-decoration: underline; }

/* ── Feature Grid ────────────────────────────────────────────── */
.features { padding: 72px 0; background: var(--surface); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 14px; }
.feature h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.feature p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Branchen Grid ───────────────────────────────────────────── */
.branchen-section { padding: 72px 0; }
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .branchen-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .branchen-grid { grid-template-columns: 1fr 1fr; } }
.branche-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.branche-card:hover { border-color: rgba(252,175,60,.4); background: var(--surface-2); }
.branche-card span:first-child { font-size: 28px; }
.branche-card span:last-child { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.branche-card:hover span:last-child { color: var(--text); }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.cta-banner.accent {
  background: linear-gradient(135deg, rgba(252,175,60,.08) 0%, rgba(252,175,60,.03) 100%);
  border-color: rgba(252,175,60,.2);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.cta-banner p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Detail Page (Branchen / Formate) ─────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 48px 0 80px;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-main h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.detail-accent { font-size: 18px; color: var(--accent); margin-bottom: 20px; }
.detail-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media (max-width: 600px) { .detail-cols { grid-template-columns: 1fr; } }
.detail-cols h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}
.check-icon.green { background: var(--accent-dim); color: var(--accent); }
.check-icon.red { background: var(--red-dim); color: #f87171; }

/* Sidebar */
.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 84px;
}
.sidebar-head {
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}
.sidebar-head h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}
.sidebar-body { padding: 20px; }
.sidebar-row { margin-bottom: 14px; }
.sidebar-row label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-dim);
  margin-bottom: 3px;
}
.sidebar-row span { font-size: 14px; color: var(--text); }
.sidebar-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.sidebar-price-note { font-size: 12px; color: var(--text-dim); margin-left: 4px; }
.sidebar-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.btn-block { display: block; text-align: center; }

/* Case Study */
.case-study {
  background: rgba(252,175,60,.05);
  border: 1px solid rgba(252,175,60,.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 40px;
}
.case-study blockquote {
  font-size: 16px;
  color: var(--text);
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.7;
}
.case-study-author { font-size: 13px; color: var(--text-muted); }
.case-study-author strong { color: var(--text); }
.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,.2);
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

/* ── FAQ Accordion ───────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
details.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 16px;
  transition: transform .2s;
}
details[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── Tabellen ────────────────────────────────────────────────── */
.table-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead tr { background: var(--surface-2); }
th { padding: 12px 16px; text-align: left; font-weight: 600; color: var(--text-muted); font-size: 13px; }
th:not(:first-child) { text-align: right; }
tbody tr { background: var(--surface); border-top: 1px solid var(--border); }
tbody tr:hover { background: var(--surface-2); }
td { padding: 12px 16px; color: var(--text-muted); }
td:not(:first-child) { text-align: right; color: var(--text); font-family: monospace; font-size: 13px; }

/* ── Prozess-Schritte ────────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 20px; }
.process-step { display: flex; gap: 16px; }
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid rgba(252,175,60,.3);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.step-content h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.step-content p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Kalkulator ──────────────────────────────────────────────── */
.kalk-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 48px 0 80px;
  align-items: start;
}
@media (max-width: 900px) { .kalk-wrap { grid-template-columns: 1fr; } }
.kalk-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.kalk-form h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group select,
.form-group input[type="number"] {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-family: var(--font-body);
  padding: 10px 14px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .2s;
}
.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239ca3af' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}
.kalk-result {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 84px;
}
.kalk-result h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.result-row:last-of-type { border-bottom: none; }
.result-row span:first-child { color: var(--text-muted); }
.result-row span:last-child { color: var(--text); font-weight: 600; font-family: monospace; }
.result-total {
  background: var(--accent-dim);
  border: 1px solid rgba(252,175,60,.2);
  border-radius: 8px;
  padding: 16px;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.result-total span:first-child { font-size: 14px; font-weight: 700; color: var(--text); }
.result-total span:last-child {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.result-note { font-size: 11px; color: var(--text-dim); margin-bottom: 16px; }

/* ── Übersichts-Seiten ───────────────────────────────────────── */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 0 80px;
}
@media (max-width: 768px) { .overview-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .overview-grid { grid-template-columns: 1fr; } }
.overview-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, background .2s;
}
.overview-card:hover { border-color: rgba(252,175,60,.3); background: var(--surface-2); }
.overview-card .icon { font-size: 36px; margin-bottom: 16px; }
.overview-card h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  transition: color .2s;
}
.overview-card:hover h2 { color: var(--accent); }
.overview-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.overview-card .meta { font-size: 12px; color: var(--text-dim); margin-bottom: 16px; }
.card-cta { font-size: 13px; font-weight: 600; color: var(--accent); }

/* ── Rechtliche Seiten ───────────────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 0 80px;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 40px;
}
.legal-section { margin-bottom: 36px; }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.legal-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-section ul { margin: 10px 0 10px 20px; }
.legal-section ul li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  list-style: disc;
}

/* ── Format-Badge ─────────────────────────────────────────────── */
.format-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-dim);
  border: 1px solid rgba(252,175,60,.3);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.format-dim { font-size: 24px; font-family: monospace; color: var(--accent); margin-bottom: 20px; }

/* ── Infobox ──────────────────────────────────────────────────── */
.infobox {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.infobox h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.infobox p { font-size: 14px; color: var(--text-muted); }

/* ── Vergleich-Tabelle ─────────────────────────────────────────── */
.compare-table td:last-child { color: var(--accent); font-weight: 600; font-family: inherit; }
.compare-table td:nth-child(2) { font-family: inherit; }

/* ── Sektion mit zwei Spalten ─────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 72px 0;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }
.two-col h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
}

/* ── Use-Case Karten ─────────────────────────────────────────── */
.use-case-list { display: flex; flex-direction: column; gap: 12px; }
.use-case {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.use-case h3 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.use-case p { font-size: 13px; color: var(--text-muted); }

/* ── Hilfreich ──────────────────────────────────────────────────── */
.pt-0 { padding-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.section { padding: 72px 0; }
.section-light { padding: 72px 0; background: rgba(30,34,40,.3); }
