/* ==========================================================================
   blend-gutachten.de — Design System
   Technisch-seriös: Marineblau + Solar-Amber. Self-contained, keine externen
   Ressourcen (DSGVO-freundlich, performant). System-Font-Stack.
   ========================================================================== */

:root {
  --navy-900: #081727;
  --navy-800: #0d2138;
  --navy-700: #143050;
  --navy-600: #1d436b;
  --ink: #14202b;
  --muted: #5a6b7b;
  --muted-light: #8798a7;
  --amber: #f6a723;
  --amber-600: #e08a00;
  --amber-050: #fff6e6;
  --sky: #1f6fb2;
  --sky-050: #eef5fb;
  --green: #2e9e6b;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-softer: #eef2f7;
  --border: #e1e8f0;
  --border-strong: #cdd8e3;
  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 1px 2px rgba(8,23,39,.06), 0 2px 6px rgba(8,23,39,.05);
  --shadow-md: 0 4px 14px rgba(8,23,39,.08), 0 12px 32px rgba(8,23,39,.08);
  --shadow-lg: 0 18px 50px rgba(8,23,39,.18);

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--sky); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--navy-800);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 .5em;
  font-weight: 750;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); }
h3 { font-size: 1.24rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-600);
  margin-bottom: .9rem;
}
.section-eyebrow { color: var(--sky); }

.lead { font-size: 1.16rem; color: var(--muted); max-width: 62ch; }

.muted { color: var(--muted); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font: inherit; font-weight: 650; font-size: 1rem;
  padding: .82em 1.5em; border-radius: 100px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--amber); color: #2a1c00; box-shadow: 0 6px 18px rgba(246,167,35,.35); }
.btn-primary:hover { background: #ffb733; box-shadow: 0 10px 26px rgba(246,167,35,.45); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-700); }
.btn-lg { padding: 1em 1.9em; font-size: 1.05rem; }
.btn-arrow::after { content: "→"; font-weight: 700; }

/* ---- Header / Nav ------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: .6em; font-weight: 800; color: var(--navy-800); letter-spacing: -.02em; font-size: 1.12rem; }
.brand:hover { text-decoration: none; }
.brand .logo { flex: none; }
.brand b { color: var(--amber-600); }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--navy-700); font-weight: 550; font-size: .97rem; padding: .5em .8em; border-radius: 8px; }
.nav-links a:hover { background: var(--bg-soft); text-decoration: none; color: var(--navy-900); }
.nav-links a.cta { color: #2a1c00; background: var(--amber); margin-left: 6px; }
.nav-links a.cta:hover { background: #ffb733; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--border);
    padding: 10px 16px 18px; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .7em .8em; font-size: 1.05rem; }
  .nav-links a.cta { margin-left: 0; margin-top: 6px; text-align: center; }
}

/* ---- Hero --------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 500px at 78% -8%, rgba(246,167,35,.20), transparent 60%),
    radial-gradient(900px 600px at 8% 110%, rgba(31,111,178,.28), transparent 55%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: #eaf1f8;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: linear-gradient(180deg, transparent, #000 40%, transparent);
  opacity: .5;
}
.hero .container { position: relative; z-index: 1; padding-top: 76px; padding-bottom: 82px; }
.hero h1 { color: #fff; max-width: 15ch; }
.hero .eyebrow { color: var(--amber); }
.hero-lead { font-size: 1.24rem; color: #c7d6e6; max-width: 56ch; margin: 1.1rem 0 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14); }
.hero-badge { display: flex; align-items: center; gap: .5em; font-size: .95rem; color: #cfdcea; }
.hero-badge svg { flex: none; }

/* price pills in hero */
.price-strip { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.8rem; }
.price-pill {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: 14px 18px; min-width: 168px;
}
.price-pill .amount { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.price-pill .amount small { font-size: .95rem; font-weight: 600; color: var(--amber); }
.price-pill .label { font-size: .86rem; color: #b9c8d8; margin-top: 2px; }

/* ---- Sections ----------------------------------------------------------- */
section { padding: 74px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: linear-gradient(160deg, var(--navy-800), var(--navy-900)); color: #dce6f0; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-head { max-width: 64ch; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ---- Grid & Cards ------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: .2rem; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center;
  background: var(--amber-050); color: var(--amber-600); margin-bottom: 16px;
}
.card-icon.blue { background: var(--sky-050); color: var(--sky); }

/* feature list */
.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { position: relative; padding-left: 32px; margin-bottom: .7rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .28em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/70% no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/70% no-repeat;
}
.section-dark .checklist li::before { background: var(--amber); }

/* ---- Steps (Ablauf) ----------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4,1fr); }
@media (max-width: 900px){ .steps { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 560px){ .steps { grid-template-columns: 1fr;} }
.step { position: relative; padding: 26px 22px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step .num {
  counter-increment: step; width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy-800); color: #fff; font-weight: 800; display: grid; place-items: center;
  margin-bottom: 14px; font-size: 1.05rem;
}
.step .num::before { content: counter(step); }
.step h3 { font-size: 1.08rem; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---- Highlight / USP band ---------------------------------------------- */
.usp-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
@media (max-width: 880px){ .usp-split { grid-template-columns: 1fr; gap: 28px; } }
.stat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 20px;
}
.stat .big { font-size: 2.1rem; font-weight: 820; color: var(--amber); letter-spacing: -.02em; line-height: 1; }
.stat .cap { font-size: .9rem; color: #c3d2e2; margin-top: .5rem; }
.section-soft .stat, .stat.light { background: #fff; border-color: var(--border); }
.section-soft .stat .big, .stat.light .big { color: var(--amber-600); }
.section-soft .stat .cap, .stat.light .cap { color: var(--muted); }

/* ---- Pricing ------------------------------------------------------------ */
.pricing { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
@media (max-width: 700px){ .pricing { grid-template-columns: 1fr; } }
.plan {
  background: #fff; border: 1px solid var(--border-strong); border-radius: 18px;
  padding: 32px 30px; box-shadow: var(--shadow-sm); position: relative;
}
.plan.featured { border: 2px solid var(--amber); box-shadow: var(--shadow-md); }
.plan .tag { position: absolute; top: -13px; right: 24px; background: var(--amber); color:#2a1c00; font-size:.78rem; font-weight:700; padding:.35em .9em; border-radius:100px; letter-spacing:.03em; }
.plan h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.plan .price { font-size: 2.7rem; font-weight: 820; color: var(--navy-800); letter-spacing: -.02em; margin: .3rem 0 .1rem; }
.plan .price small { font-size: 1rem; font-weight: 600; color: var(--muted); }
.plan .price-sub { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.plan .checklist { margin: 1.2rem 0 1.6rem; }
.plan .btn { width: 100%; justify-content: center; }
.price-note { text-align:center; color: var(--muted); font-size:.9rem; margin-top: 1.4rem; }

/* ---- Trust / logos ------------------------------------------------------ */
.trust-row { display:flex; flex-wrap:wrap; gap: 14px 30px; align-items:center; justify-content:center; }
.trust-chip { display:flex; align-items:center; gap:.55em; background:#fff; border:1px solid var(--border); border-radius:100px; padding:.6em 1.15em; font-weight:600; font-size:.95rem; color:var(--navy-700); box-shadow:var(--shadow-sm); }
.trust-chip svg { flex:none; }

/* ---- FAQ (details/summary) --------------------------------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background:#fff; margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 22px; position: relative;
  font-weight: 650; color: var(--navy-800); font-size: 1.06rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; font-weight: 400; color: var(--amber-600); transition: transform .2s;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-body { padding: 0 22px 20px; color: var(--muted); }
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---- Content pages (Methodik, Impressum, Datenschutz) ------------------ */
.page-hero { background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); color:#e9f1f8; padding: 60px 0 54px; }
.page-hero h1 { color:#fff; }
.page-hero .lead { color:#c3d3e3; }
.prose { max-width: 760px; }
.prose h2 { margin-top: 2.4rem; padding-top: .4rem; }
.prose h3 { margin-top: 1.8rem; color: var(--navy-700); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .45rem; }
.prose table { width:100%; border-collapse: collapse; margin: 1.4rem 0; font-size: .97rem; }
.prose th, .prose td { text-align:left; padding: .7em .9em; border-bottom: 1px solid var(--border); }
.prose th { background: var(--bg-soft); color: var(--navy-800); font-weight: 700; }
.callout {
  background: var(--sky-050); border-left: 4px solid var(--sky); border-radius: 0 10px 10px 0;
  padding: 18px 22px; margin: 1.6rem 0; color: var(--navy-700);
}
.callout.amber { background: var(--amber-050); border-color: var(--amber); }
.callout strong { color: var(--navy-800); }

.formula { font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace; background: var(--navy-900); color:#dbe7f2; padding: 14px 18px; border-radius: 10px; overflow-x:auto; font-size:.98rem; }

/* ---- Breadcrumb --------------------------------------------------------- */
.crumb { font-size:.86rem; color: #b9c8d8; margin-bottom:.7rem; }
.crumb a { color:#dbe7f2; } .crumb a:hover{color:#fff;}

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { background:
  radial-gradient(700px 300px at 80% 0%, rgba(246,167,35,.22), transparent 60%),
  linear-gradient(150deg, var(--navy-800), var(--navy-900)); color:#eaf1f8; border-radius: 20px; padding: 46px 40px; text-align:center; }
.cta-band h2 { color:#fff; } .cta-band .lead { color:#c3d3e3; margin-left:auto; margin-right:auto; }
.cta-band .hero-cta { justify-content:center; margin-top: 1.6rem; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #a9bccd; padding: 56px 0 30px; font-size: .95rem; }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 34px; }
@media (max-width:760px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:480px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color:#fff; font-size:.95rem; letter-spacing:.02em; margin:0 0 .9rem; }
.site-footer a { color:#a9bccd; } .site-footer a:hover { color:#fff; }
.site-footer ul { list-style:none; margin:0; padding:0; }
.site-footer li { margin-bottom:.5rem; }
.footer-brand b { color: var(--amber); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 20px; display:flex; flex-wrap:wrap; gap: 10px 24px; justify-content:space-between; color:#7e93a6; font-size:.88rem; }

/* ---- Bestellformular ---------------------------------------------------- */
.order-grid { display:grid; grid-template-columns: 1fr 340px; gap: 34px; align-items:start; }
@media (max-width: 940px){ .order-grid { grid-template-columns: 1fr; } }
.order-aside { position: sticky; top: 88px; display:grid; gap:18px; }
@media (max-width: 940px){ .order-aside { position: static; order: -1; } }

.fs { border: 1px solid var(--border); border-radius: 14px; padding: 24px 24px 26px; margin: 0 0 22px; background:#fff; box-shadow: var(--shadow-sm); }
.fs legend { font-weight: 750; color: var(--navy-800); font-size: 1.16rem; padding: 0 8px; display:flex; align-items:center; gap:.6em; }
.fs-num { display:inline-grid; place-items:center; width:28px; height:28px; border-radius:8px; background:var(--navy-800); color:#fff; font-size:.95rem; font-weight:800; }

.field { margin: 14px 0 0; }
.field-row { display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top:14px; }
.field-row .field { margin-top:0; }
.field-row .field-sm { max-width: 130px; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } .field-row .field-sm{ max-width:none; } }

.order-form label { display:block; font-weight:600; font-size:.95rem; color: var(--navy-700); margin-bottom:.4rem; }
.order-form .opt { font-weight:400; color: var(--muted-light); font-size:.86rem; }
.order-form input[type=text], .order-form input[type=email], .order-form textarea, .order-form input[type=file] {
  width:100%; font: inherit; font-size:1rem; color: var(--ink);
  padding:.7em .85em; border:1.5px solid var(--border-strong); border-radius:9px; background:#fff;
  transition: border-color .15s, box-shadow .15s;
}
.order-form input:focus, .order-form textarea:focus { outline:none; border-color: var(--sky); box-shadow: 0 0 0 3px var(--sky-050); }
.order-form input.has-err, .order-form textarea.has-err, .order-form .has-err input { border-color:#d84a3b; }
.order-form textarea { resize: vertical; }
.order-form .hint { font-size:.85rem; color: var(--muted); margin:.4rem 0 0; }
.order-form small.err { display:block; color:#c0392b; font-size:.84rem; margin-top:.35rem; font-weight:600; }

.radio-cards { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.radio-card { display:flex; align-items:center; gap:.6em; border:1.5px solid var(--border-strong); border-radius:10px; padding:.7em .8em; cursor:pointer; font-weight:500; margin:0; line-height:1.25; }
.radio-card span { font-size:.9rem; color:var(--navy-700); }
.radio-card:has(input:checked) { border-color: var(--amber); background: var(--amber-050); }
.radio-inline { display:flex; gap:1.4em; padding-top:.4em; }
.radio-inline label { display:inline-flex; align-items:center; gap:.4em; font-weight:500; margin:0; }
.radio-inline.has-err { color:#c0392b; }

.cond-grp { margin-top:14px; padding:16px; border:1px dashed var(--border-strong); border-radius:10px; background: var(--bg-soft); }

/* Wiederholbare PV-Teilfelder */
.pv-feld { border:1px solid var(--border); border-left:3px solid var(--amber); border-radius:12px; padding:18px 18px 20px; margin:14px 0; background: var(--bg-soft); }
.pv-feld .cond-grp { background:#fff; }
.pv-feld-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.pv-feld-title { font-weight:750; color:var(--navy-800); font-size:1.02rem; }
.pv-remove { background:none; border:0; color:#c0392b; font:inherit; font-size:.86rem; font-weight:650; cursor:pointer; padding:4px 8px; border-radius:6px; }
.pv-remove:hover { background:#fdecea; text-decoration:none; }
.btn-add { display:inline-flex; align-items:center; gap:.5em; background:#fff; border:1.5px dashed var(--sky); color:var(--sky); font:inherit; font-weight:650; font-size:.98rem; padding:.75em 1.3em; border-radius:10px; cursor:pointer; margin-top:8px; }
.btn-add:hover { background: var(--sky-050); }
.btn-add span { font-size:1.3em; line-height:0; margin-top:-2px; }

.check { display:flex; gap:.7em; align-items:flex-start; margin:0 0 14px; font-weight:500; color:var(--ink); cursor:pointer; }
.check input { margin-top:.25em; width:18px; height:18px; flex:none; accent-color: var(--amber-600); }
.check span { font-size:.96rem; line-height:1.5; }
.check.has-err span { color:#c0392b; }

.order-note { background: var(--bg-soft); border:1px solid var(--border); border-radius:10px; padding:16px 18px; font-size:.92rem; color:var(--muted); line-height:1.6; margin:6px 0 18px; }
.order-note strong { color: var(--navy-800); }

.form-alert { background:#fdecea; border:1px solid #f5c6c0; color:#a33125; border-radius:10px; padding:14px 18px; margin-bottom:22px; font-weight:600; }

.summary-card { background:#fff; border:1px solid var(--border-strong); border-radius:16px; padding:24px; box-shadow: var(--shadow-sm); }
.summary-card h3 { font-size:1rem; text-transform:uppercase; letter-spacing:.06em; color:var(--sky); margin-bottom:.5rem; }
.summary-price { font-size:2.6rem; font-weight:820; color:var(--navy-800); letter-spacing:-.02em; line-height:1; }
.summary-sub { color:var(--muted); font-size:.92rem; margin:.3rem 0 0; }
.summary-help { background: var(--bg-soft); box-shadow:none; }
.summary-help strong { color:var(--navy-800); }
.summary-help p { margin:.4rem 0 0; font-size:.92rem; color:var(--muted); }

/* ---- Abbildungen / Muster-Gutachten ------------------------------------- */
.figure { margin: 2.4rem 0 0; }
.figure-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 2.4rem; }
@media (max-width: 720px){ .figure-pair { grid-template-columns: 1fr; } }
.figure-pair figure { margin: 0; }
.figure-pair img { width: 100%; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: #0b1220; }
.figure-pair figcaption { font-size: .88rem; margin-top: .6rem; }
.figure-pair .cap-bad { color: #ff9d92; }
.figure-pair .cap-good { color: #ffd089; }
.section-light-pair img { border-color: var(--border); box-shadow: var(--shadow-md); }
.section-light-pair .cap-bad { color: #c0392b; }
.section-light-pair .cap-good { color: var(--amber-600); }
.figure img { width: 100%; border-radius: 12px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow-md); }
.section-dark .figure img { border-color: rgba(255,255,255,.18); }
.figure figcaption { font-size: .88rem; color: var(--muted); margin-top: .7rem; }
.section-dark .figure figcaption { color: #9fb3c7; }

.muster-cover { position: relative; max-width: 340px; }
.muster-cover img { width: 100%; border-radius: 10px; border: 1px solid var(--border-strong); box-shadow: var(--shadow-lg); }
.muster-cover .muster-badge {
  position: absolute; top: 14px; right: -12px; background: var(--amber); color: #2a1c00;
  font-weight: 800; font-size: .8rem; letter-spacing: .06em; padding: .45em 1em;
  border-radius: 6px; box-shadow: var(--shadow-md); transform: rotate(3deg);
}

/* utilities */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
.hide-mobile{}
@media (max-width:560px){ .hide-mobile{ display:none; } }
