/*
  Gemeinsames Stylesheet für neue Seiten (ab Phase 1).
  Basis: 1:1 aus elektriker.html übernommene Komponenten (kein neues Design) +
  die Pricing-Card-Komponente aus index.html + ein paar kleine Ergänzungen
  (Preise-Grid mit 2 Spalten, Breadcrumbs), die es so noch nicht gab, weil
  es bisher keine eigenständige Preise-Seite und keine Unterseiten mit
  Breadcrumbs gab.
*/
:root {
  --primary: #1d4ed8;
  --primary-dark: #1e40af;
  --primary-light: #eff6ff;
  --dark: #0f172a;
  --text: #334155;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --success: #16a34a;
  --radius: 14px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0; background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 58px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary) !important; color: #fff !important; padding: 10px 24px !important; border-radius: 10px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--primary-dark) !important; }
@media (max-width: 768px) { .nav-links { display: none; } }

.breadcrumbs { max-width: 1100px; margin: 0 auto; padding: 100px 24px 0; font-size: 13px; color: var(--text-light); }
.breadcrumbs a { color: var(--text-light); text-decoration: none; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { margin: 0 6px; }
.breadcrumbs .current { color: var(--text); font-weight: 600; }

.hero { padding: 40px 24px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 900px; background: radial-gradient(circle, rgba(29,78,216,0.06) 0%, transparent 70%); pointer-events: none;
}
.back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--text-light); font-size: 13px; text-decoration: none; margin-bottom: 20px; transition: color 0.2s; }
.back-link:hover { color: var(--primary); }
.back-link .material-icons-round { font-size: 16px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light); color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; border: 1px solid rgba(29,78,216,0.1); }
.hero h1 { font-size: clamp(28px, 5vw, 58px); font-weight: 800; color: var(--dark); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; max-width: 800px; margin-left: auto; margin-right: auto; }
.hero h1 span { color: var(--primary); }
.hero-sub { font-size: clamp(15px, 2vw, 18px); color: var(--text-light); max-width: 640px; margin: 0 auto 16px; }
.hero-benefits { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-benefit { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text); }
.hero-benefit .material-icons-round { font-size: 18px; color: var(--success); }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
.btn-primary { background: var(--primary); color: #fff; padding: 16px 36px; border-radius: 12px; font-size: 16px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; box-shadow: 0 4px 20px rgba(29,78,216,0.25); font-family: inherit; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,78,216,0.35); }
.hero-note { font-size: 13px; color: var(--text-light); }

section { padding: 80px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 13px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 560px; margin-bottom: 48px; }

.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.pain-before { background: #fef2f2; padding: 20px; border-bottom: 1px solid #fecaca; }
.pain-before-label { font-size: 11px; font-weight: 700; color: #dc2626; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.pain-before p { font-size: 14px; color: #7f1d1d; line-height: 1.6; }
.pain-after { background: #f0fdf4; padding: 20px; }
.pain-after-label { font-size: 11px; font-weight: 700; color: var(--success); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.pain-after p { font-size: 14px; color: #14532d; line-height: 1.6; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--bg-alt); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature-icon .material-icons-round { font-size: 22px; color: #fff; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text); line-height: 1.7; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: inherit; transition: background 0.2s; }
.faq-question:hover { background: var(--bg-alt); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 16px 24px 20px; font-size: 15px; color: var(--text); line-height: 1.8; border-top: 1px solid var(--border); }

.cta-section { background: var(--primary); padding: 80px 24px; text-align: center; }
.cta-section h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.2; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 36px; }
.btn-white { background: #fff; color: var(--primary); padding: 16px 36px; border-radius: 12px; font-size: 16px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 16px; }

footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

.whatsapp-float { position: fixed; bottom: 90px; right: 24px; z-index: 900; background: #25d366; color: #fff; border-radius: 50px; padding: 12px 18px 12px 14px; display: flex; align-items: center; gap: 8px; text-decoration: none; font-size: 14px; font-weight: 700; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: all 0.25s; font-family: inherit; }
.whatsapp-float:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.55); }
.whatsapp-label { white-space: nowrap; }
@media (max-width: 600px) { .whatsapp-float { bottom: 80px; right: 16px; padding: 12px 14px; border-radius: 50%; } .whatsapp-label { display: none; } }

.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: #fff; border-top: 1px solid var(--border); padding: 12px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.08); }
@media (max-width: 768px) { .sticky-mobile-cta { display: block; } .whatsapp-float { bottom: 76px; } section { padding: 60px 20px; } .hero { padding: 32px 20px 60px; } .cta-section { padding: 60px 20px; } .breadcrumbs { padding-top: 84px; } }

.steps-section-head { text-align: center; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; text-align: left; }
.step-num { width: 44px; height: 44px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 18px; margin-bottom: 20px; }
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--text); line-height: 1.7; }

.warum-inner { max-width: 820px; margin: 0 auto; text-align: left; }
.warum-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.warum-list li { display: flex; gap: 12px; font-size: 15px; color: var(--text); line-height: 1.7; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; text-align: left; }
.warum-list li::before { content: "✓"; color: var(--primary); font-weight: 800; flex-shrink: 0; }

/* Preise-Seite: 2-Spalten-Grid (Startseite hat nur eine Karte, wir brauchen Starter + Pro) */
.pricing-plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; align-items: start; }
@media (max-width: 768px) { .pricing-plans-grid { grid-template-columns: 1fr; } }
.pricing-card { background: var(--bg); border: 2px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(15,23,42,0.06); }
.pricing-card.is-highlighted { border-color: var(--primary); box-shadow: 0 20px 60px rgba(29,78,216,0.12); }
.pricing-header { background: var(--bg-alt); color: var(--dark); padding: 28px 32px; text-align: center; }
.pricing-card.is-highlighted .pricing-header { background: var(--primary); color: #fff; }
.pricing-header h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.pricing-header p { opacity: 0.75; font-size: 14px; }
.pricing-badge { display: inline-block; background: rgba(255,255,255,0.2); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; }
.pricing-price { padding: 28px 32px; text-align: center; border-bottom: 1px solid var(--border); }
.pricing-amount { font-size: 44px; font-weight: 800; color: var(--dark); }
.pricing-amount span { font-size: 16px; font-weight: 500; color: var(--text-light); }
.pricing-period { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.pricing-features { padding: 28px 32px; }
.pricing-features ul { list-style: none; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text); }
.pricing-features li .material-icons-round { font-size: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }
.pricing-cta { padding: 0 32px 32px; }
.pricing-cta a { display: flex; justify-content: center; width: 100%; }
.pricing-trial { text-align: center; padding: 0 32px 24px; font-size: 12px; color: var(--text-light); }
.pricing-note-box { max-width: 900px; margin: 32px auto 0; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; font-size: 13px; color: var(--text-light); text-align: center; }

/* Content-Seiten (lv-import, funktionen/*): Fließtext-Bereich unterhalb der Hero */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; color: var(--dark); margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--text); font-size: 16px; line-height: 1.8; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--dark); }
.case-study-box { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 32px; margin: 32px 0; }
.case-study-box .section-label { margin-bottom: 8px; }

.gewerke-hub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .gewerke-hub-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gewerke-hub-grid { grid-template-columns: 1fr; } }
.gewerk-card { display: block; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-decoration: none; transition: all 0.2s; }
.gewerk-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(29,78,216,0.1); }
.gewerk-card .feature-icon { margin-bottom: 20px; }
.gewerk-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.gewerk-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

.related-links-section { padding: 48px 24px; background: var(--bg-alt); border-top: 1px solid var(--border); }
.related-links-inner { max-width: 1100px; margin: 0 auto; }
.related-links-title { font-size: 13px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.related-links-list { display: flex; flex-wrap: wrap; gap: 12px; }
.related-links-list a { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 8px 18px; font-size: 14px; color: var(--text); text-decoration: none; transition: all 0.2s; }
.related-links-list a:hover { border-color: var(--primary); color: var(--primary); }

/* ============================================================
   Ratgeber / Artikel-Komponenten (Phase 3)
   Übernommen 1:1 aus den vom Kunden selbst erstellten Blog-Artikeln
   (blog-handwerker-stundensatz-berechnen.html,
   blog-kostenvoranschlag-vorlage-handwerker.html), damit die
   migrierten und neuen Ratgeber-Artikel optisch identisch aussehen.
   Keine neuen Farben/Variablen — nutzt dieselben :root-Tokens wie
   der Rest der Seite.
   ============================================================ */
.article-hero { padding: 140px 24px 40px; max-width: 780px; margin: 0 auto; }
.article-tag { display: inline-flex; align-items: center; gap: 6px; background: var(--primary-light); color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(29,78,216,0.1); }
.article-hero h1 { font-size: clamp(26px, 4.5vw, 42px); font-weight: 800; color: var(--dark); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 20px; }
.article-intro { font-size: 17px; color: var(--text-light); margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-light); flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 5px; }
.article-meta .material-icons-round { font-size: 15px; }

.toc { max-width: 780px; margin: 0 auto 20px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; }
.toc h2 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 12px; }
.toc ol { margin-left: 20px; }
.toc li { font-size: 14px; margin-bottom: 6px; }
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { color: var(--primary); text-decoration: underline; }

.article-body { max-width: 740px; margin: 0 auto; padding: 20px 24px 60px; }
.article-body h2 { font-size: 26px; font-weight: 800; color: var(--dark); margin: 46px 0 18px; letter-spacing: -0.01em; scroll-margin-top: 100px; }
.article-body h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin: 30px 0 12px; }
.article-body p { font-size: 16px; color: var(--text); line-height: 1.85; margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 20px 22px; }
.article-body li { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 8px; }
.article-body strong { color: var(--dark); font-weight: 700; }

.formula-box { background: var(--dark); color: #fff; border-radius: var(--radius); padding: 28px 30px; margin: 28px 0; font-size: 17px; text-align: center; font-weight: 700; }
.formula-box small { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.55); margin-top: 8px; text-transform: uppercase; letter-spacing: 0.06em; }

table.data-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; }
table.data-table th { background: var(--dark); color: #fff; text-align: left; padding: 12px 16px; font-weight: 700; }
table.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
table.data-table tr:nth-child(even) { background: var(--bg-alt); }
table.data-table tr:last-child td { border-bottom: none; }

.callout { background: var(--bg-alt); border: 1px solid var(--border); border-left: 3px solid var(--primary); border-radius: 10px; padding: 20px 24px; margin: 28px 0; }
.callout-label { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.callout p { margin-bottom: 0; font-size: 15px; }
.callout.warn { border-left-color: #dc2626; }
.callout.warn .callout-label { color: #dc2626; }

.example-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px; margin: 28px 0; }
.example-box h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.example-line { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; border-bottom: 1px dashed var(--border); }
.example-line:last-child { border-bottom: none; font-weight: 800; color: var(--primary); padding-top: 12px; font-size: 15px; }

.checklist { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin: 32px 0; }
.checklist h3 { margin-top: 0; }
.checklist ul { margin-left: 0; list-style: none; }
.checklist li { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.checklist li:last-child { border-bottom: none; }
.checklist li .material-icons-round { color: var(--success); font-size: 20px; flex-shrink: 0; margin-top: 1px; }

.inline-cta { background: var(--primary-light); border: 1px solid rgba(29,78,216,0.15); border-radius: var(--radius); padding: 28px; margin: 40px 0; text-align: center; }
.inline-cta h3 { margin-top: 0; margin-bottom: 10px; }
.inline-cta p { margin-bottom: 20px; }

.related-links { display: flex; gap: 10px; flex-wrap: wrap; margin: 12px 0 28px; }
.related-links a { font-size: 14px; color: var(--primary); text-decoration: none; background: var(--primary-light); padding: 8px 16px; border-radius: 100px; font-weight: 600; transition: all 0.2s; }
.related-links a:hover { background: var(--primary); color: #fff; }

.download-box { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; margin: 28px 0; flex-wrap: wrap; }
.download-box .material-icons-round.file-icon { font-size: 32px; color: var(--primary); }
.download-box-text { flex: 1; min-width: 200px; }
.download-box-text strong { display: block; color: var(--dark); font-size: 15px; margin-bottom: 2px; }
.download-box-text span { font-size: 13px; color: var(--text-light); }
.download-box-links { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-secondary { background: #fff; color: var(--primary); border: 1.5px solid var(--primary); padding: 10px 20px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: all 0.2s; }
.btn-secondary:hover { background: var(--primary-light); }

/* Ratgeber-Hub: Kartenraster + Kategorie-Filter (aus blog.html übernommen) */
.ratgeber-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.ratgeber-filter { background: #fff; border: 1px solid var(--border); border-radius: 100px; padding: 9px 20px; font-size: 14px; font-weight: 600; color: var(--text); cursor: pointer; transition: all 0.2s; font-family: inherit; }
.ratgeber-filter:hover { border-color: var(--primary); color: var(--primary); }
.ratgeber-filter.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: all 0.2s; }
.blog-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(29,78,216,0.1); }
.blog-card-image { height: 160px; background: var(--primary-light); display: flex; align-items: center; justify-content: center; }
.blog-card-image .material-icons-round { font-size: 40px; color: var(--primary); }
.blog-card-body { padding: 22px 24px; }
.blog-card-tag { font-size: 12px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.blog-card h3 { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.blog-card-meta { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-light); }
.blog-card-meta .material-icons-round { font-size: 14px; }

@media (max-width: 768px) {
  .article-hero, .toc { padding-left: 20px; padding-right: 20px; }
  .article-hero { padding-top: 100px; }
  table.data-table { font-size: 12px; }
  table.data-table th, table.data-table td { padding: 8px 10px; }
}

/* ============================================================
   Cookie-Consent-Banner (DSGVO/TTDSG) — für alle Seiten, die
   GA4 einbinden. Nutzt dieselben :root-Tokens wie der Rest.
   ============================================================ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: var(--dark); color: #fff; padding: 18px 24px; display: none; }
.cookie-banner.show { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.75); max-width: 640px; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie { padding: 10px 20px; border-radius: 100px; font-size: 13px; font-weight: 700; cursor: pointer; border: none; font-family: inherit; }
.btn-cookie.accept { background: var(--primary); color: #fff; }
.btn-cookie.decline { background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   Stundensatz-Rechner (interaktives Tool auf /ratgeber/stundensatz-rechner)
   Nutzt dieselben :root-Tokens wie der Rest der Seite, keine neuen Farben.
   ============================================================ */
.calc-tool { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px 8px; margin: 8px 0 40px; }
.calc-section { margin-bottom: 8px; }
.calc-heading { margin-top: 0 !important; }
.calc-hint { font-size: 13px !important; color: var(--text-light) !important; margin-bottom: 16px !important; }
.calc-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 8px; }
@media (min-width: 620px) { .calc-grid { grid-template-columns: 1fr 1fr; } }
.calc-field label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.calc-field-checkbox { grid-column: 1 / -1; }
.calc-checkbox-label { display: flex !important; align-items: center; gap: 8px; font-weight: 600 !important; cursor: pointer; }
.calc-checkbox-label input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.calc-input { display: flex; align-items: stretch; background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.calc-input input[type="number"] { flex: 1; border: none; outline: none; padding: 11px 12px; font-size: 15px; font-family: inherit; color: var(--dark); width: 100%; min-width: 0; background: transparent; }
.calc-input input[type="number"]:focus { background: var(--primary-light); }
.calc-input span { padding: 0 14px; font-size: 13px; color: var(--text-light); white-space: nowrap; border-left: 1px solid var(--border); display: flex; align-items: center; background: var(--bg-alt); }
.calc-result { background: var(--dark); color: #fff; border-radius: var(--radius); padding: 26px 24px; margin: 24px 0 20px; }
.calc-result-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; color: rgba(255,255,255,0.75); }
.calc-result-main { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-top: 1px dashed rgba(255,255,255,0.2); font-size: 15px; gap: 12px; flex-wrap: wrap; }
.calc-result-main strong { font-size: 22px; font-weight: 800; }
.calc-result-highlight { border-top: 1px solid rgba(255,255,255,0.3); }
.calc-result-highlight strong { color: #93c5fd; font-size: 26px; }
.calc-note { font-size: 12px !important; color: rgba(255,255,255,0.55) !important; margin: 10px 0 0 !important; line-height: 1.6 !important; }
.calc-warning { color: #fca5a5 !important; font-weight: 600 !important; }
@media (max-width: 480px) {
  .calc-tool { padding: 22px 16px 6px; }
  .calc-result-main strong { font-size: 19px; }
  .calc-result-highlight strong { font-size: 22px; }
}
