/* =====================================================================
   Medizintransport Rhein-Main – Kurierdienst
   Gemeinsames Design-System (index / danke / recht)
   Keine externen Requests (Fonts = System) -> schnell & DSGVO-sauber
   ===================================================================== */

:root {
  --turquoise: #1BC8D3;
  --turquoise-dark: #12aab4;
  --navy: #0A2A43;
  --navy-soft: #102f4f;
  --bg: #F5F9FB;
  --bg-white: #ffffff;
  --line: #e4ebf2;
  --text: #0A2A43;
  --text-muted: #5f7188;
  --ok: #16a34a;
  --warn: #d97706;
  --radius: 18px;
  --radius-pill: 999px;
  --shadow: 0 18px 40px rgba(10, 42, 67, 0.08);
  --shadow-sm: 0 8px 22px rgba(10, 42, 67, 0.06);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--radius-pill);
  font-size: 0.95rem; font-weight: 600; border: none; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
  white-space: nowrap; text-align: center;
}
.btn-primary { background: var(--turquoise); color: var(--navy); box-shadow: 0 12px 28px rgba(27,200,211,.3); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 38px rgba(27,200,211,.42); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-1px); background: var(--navy-soft); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid rgba(10,42,67,.25); }
.btn-outline:hover { background: rgba(10,42,67,.05); }
.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 26px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; }
/* Logo als Bild (türkise Variante auf hellen Flächen). */
.brand-mark {
  width: 38px; height: 38px; flex: none;
  background: url(/assets/icons/logo.svg) center / contain no-repeat;
}
/* Im dunklen Footer die weisse Variante. */
.site-footer .brand-mark {
  background-image: url(/assets/icons/logo-white.svg);
}
.brand-name { font-weight: 700; letter-spacing: .06em; font-size: .92rem; text-transform: uppercase; color: var(--navy); line-height: 1.1; }
.brand-sub { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: .9rem; }
.nav-links a { color: var(--text-muted); font-weight: 500; }
.nav-links a:hover { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { display: none; }
/* Hamburger (nur mobil sichtbar) */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 11px;
  background: #fff; cursor: pointer; padding: 0; flex: none;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--navy); border-radius: 2px; transition: transform .2s, opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: radial-gradient(circle at top left, rgba(27,200,211,.16), transparent 55%), var(--navy); color: #fff; padding: 64px 0 72px; }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,.95fr); gap: 44px; align-items: center; }
.eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.72); margin-bottom: 12px; }
.hero h1 { font-size: clamp(2.1rem, 3vw + 1rem, 3rem); line-height: 1.12; font-weight: 800; margin-bottom: 16px; }
.hero h1 .hl { color: var(--turquoise); }
.hero-lead { max-width: 560px; font-size: 1.02rem; color: rgba(255,255,255,.88); margin-bottom: 22px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.badge { border-radius: var(--radius-pill); border: 1px solid rgba(255,255,255,.25); padding: 6px 13px; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 14px; }
.hero-note { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ---------- Form card (hero + standalone) ---------- */
.form-card { background: #fff; border-radius: 22px; padding: 26px 24px; box-shadow: var(--shadow); color: var(--text); }
.form-card h2 { font-size: 1.2rem; margin-bottom: 4px; color: var(--navy); }
.form-card .form-sub { font-size: .86rem; color: var(--text-muted); margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.field .req { color: var(--turquoise-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 12px;
  font-size: 16px; font-family: inherit; color: var(--text); background: #fff; transition: border-color .12s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--turquoise); box-shadow: 0 0 0 3px rgba(27,200,211,.15); }
.field textarea { min-height: 92px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-check { display: flex; align-items: flex-start; gap: 9px; font-size: .82rem; color: var(--text-muted); }
.field-check input { width: auto; margin-top: 3px; flex: none; }
.field-check a { color: var(--turquoise-dark); text-decoration: underline; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; margin-bottom: 14px; padding: 11px 13px; border-radius: 12px; font-size: .88rem; }
.form-status.err { display: block; background: #fdeaea; color: #a13030; }
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

/* ---------- Hero visual card (ersetzt Inline-Formular) ---------- */
.hero-visual { position: relative; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); min-height: 420px; background: var(--navy-soft); }
.hero-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-visual .hv-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,42,67,.15) 0%, rgba(10,42,67,.82) 78%); }
.hero-visual .hv-content { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px; color: #fff; }
.hero-visual .hv-content h3 { font-size: 1.25rem; margin-bottom: 6px; }
.hero-visual .hv-content p { font-size: .9rem; color: rgba(255,255,255,.85); margin-bottom: 16px; }
.hv-points { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.hv-points span { font-size: .86rem; color: rgba(255,255,255,.92); padding-left: 24px; position: relative; }
.hv-points span::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 17px; height: 17px; border-radius: 50%; background: var(--turquoise); color: var(--navy); font-size: .64rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }

/* ---------- Modal / Popup ---------- */
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: flex-start; justify-content: center; padding: 24px 16px; overflow-y: auto; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(10,42,67,.55); backdrop-filter: blur(3px); }
.modal-card {
  position: relative; background: #fff; border-radius: 20px; width: 100%; max-width: 620px;
  margin: auto; box-shadow: 0 30px 70px rgba(10,42,67,.35); animation: modalIn .2s ease; overflow: hidden;
}
@keyframes modalIn { from { transform: translateY(16px); opacity: .4; } to { transform: none; opacity: 1; } }
.modal-head { padding: 22px 26px 6px; }
.modal-head h2 { font-size: 1.3rem; color: var(--navy); }
.modal-head .form-sub { font-size: .88rem; color: var(--text-muted); margin-top: 4px; }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 11px;
  border: 1px solid var(--line); background: #fff; color: var(--navy); font-size: 1.3rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: var(--bg); }
.modal-body { padding: 8px 26px 26px; }

/* ---------- Professionelle Formular-Sektionen ---------- */
.modal-body form { counter-reset: medstep; }
.form-section { border: 0; padding: 0; margin: 0 0 18px; counter-increment: medstep; }
.form-section > legend {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--turquoise-dark); padding: 0; margin-bottom: 12px; display: flex; align-items: center; gap: 9px; width: 100%;
}
.form-section > legend::before {
  content: counter(medstep); width: 22px; height: 22px; border-radius: 7px; background: var(--turquoise); flex: none;
  display: inline-flex; align-items: center; justify-content: center; color: var(--navy); font-size: .82rem; font-weight: 800;
}
.field-check-pro { display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: .9rem; color: var(--navy); font-weight: 600; cursor: pointer; }
.field-check-pro input { width: 20px; height: 20px; flex: none; accent-color: var(--turquoise-dark); }
.modal-body .form-status { margin-top: 4px; }

/* ---------- Sections ---------- */
section { padding: 66px 0; }
.section-alt { background: var(--bg); }
.section-navy { background: var(--navy-soft); color: #fff; }
.section-turq { background: var(--turquoise); color: var(--navy); }
.section-head { max-width: 680px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; color: var(--text-muted); margin-bottom: 8px; }
.section-navy .section-eyebrow, .section-turq .section-eyebrow { color: rgba(255,255,255,.72); }
.section-turq .section-eyebrow { color: rgba(10,42,67,.7); }
.section-title { font-size: clamp(1.5rem, 1.4vw + 1rem, 2rem); font-weight: 700; margin-bottom: 8px; }
.section-sub { font-size: 1rem; color: var(--text-muted); }
.section-navy .section-sub { color: rgba(255,255,255,.8); }
.section-turq .section-sub { color: rgba(10,42,67,.82); }

/* ---------- Trust strip ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.trust-item { background: var(--bg); border: 1px solid var(--line); border-radius: 16px; padding: 20px; text-align: center; }
.trust-icon { width: 48px; height: 48px; margin: 0 auto 12px; background: var(--turquoise); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.trust-item h3 { font-size: 1rem; margin-bottom: 6px; color: var(--navy); }
.trust-item p { font-size: .86rem; color: var(--text-muted); }

/* ---------- Cards grid ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); }
.card .card-ico { width: 42px; height: 42px; border-radius: 12px; background: #e8fbfc; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 12px; }
.card .card-label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.card h3 { font-size: 1.05rem; margin-bottom: 7px; color: var(--navy); }
.card p { font-size: .9rem; color: var(--text-muted); }
.card-img { width: 100%; height: 168px; object-fit: cover; border-radius: 12px; margin-bottom: 14px; background: #dfeef1; }

/* image placeholder */
.img-ph { position: relative; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, #e2edf2, #cfe6ea); display: flex; align-items: center; justify-content: center; color: #6b8794; font-size: .82rem; text-align: center; }
.img-ph::after { content: attr(data-label); padding: 10px; }
.img-ph.ratio-16-9 { aspect-ratio: 16/9; }
.img-ph.ratio-4-3 { aspect-ratio: 4/3; }
.img-ph.ratio-4-5 { aspect-ratio: 4/5; }
/* Echtes Bild deckt den Platzhalter; faellt es aus (404), bleibt der graue Platzhalter sichtbar */
.img-ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Two-sided (Kunden / Anbieter) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split-card { border-radius: 20px; padding: 30px 26px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.split-card.dark { background: var(--navy); color: #fff; border-color: transparent; }
.split-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.split-card p { font-size: .95rem; color: var(--text-muted); margin-bottom: 16px; }
.split-card.dark p { color: rgba(255,255,255,.82); }
.split-card ul { list-style: none; margin-bottom: 22px; }
.split-card li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: .93rem; color: var(--text-muted); }
.split-card.dark li { color: rgba(255,255,255,.86); }
.split-card li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--turquoise); color: var(--navy); font-size: .68rem; display: flex; align-items: center; justify-content: center; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.step { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 20px 16px; }
.section-turq .step { background: rgba(255,255,255,.5); border-color: rgba(10,42,67,.08); }
.step-num { width: 30px; height: 30px; border-radius: 999px; background: var(--turquoise); color: var(--navy); font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.section-turq .step-num { background: var(--navy); color: #fff; }
.step h3 { font-size: .98rem; margin-bottom: 6px; }
.step p { font-size: .86rem; color: rgba(255,255,255,.8); }
.section-turq .step p { color: rgba(10,42,67,.82); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 12px; }
.faq summary { font-weight: 600; padding: 14px 0; cursor: pointer; list-style: none; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--turquoise-dark); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { font-size: .92rem; color: var(--text-muted); padding: 0 0 16px; }

/* ---------- Region tags ---------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag { font-size: .82rem; padding: 7px 12px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: #fff; }
.section-navy .tag { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--turquoise); color: var(--navy); border-radius: 22px; padding: 40px; text-align: center; }
.cta-band h2 { font-size: 1.6rem; margin-bottom: 8px; }
.cta-band p { margin-bottom: 20px; color: rgba(10,42,67,.82); }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); font-size: .84rem; padding: 40px 0 22px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; margin-bottom: 26px; }
.footer-top h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 12px; }
.footer-top a { color: rgba(255,255,255,.72); display: block; margin-bottom: 8px; }
.footer-top a:hover { color: var(--turquoise); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { margin-left: 16px; color: rgba(255,255,255,.72); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal { max-width: 860px; margin: 40px auto; background: #fff; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.legal h1 { font-size: 2rem; color: var(--navy); margin-bottom: 14px; }
.legal h2 { font-size: 1.3rem; color: var(--navy); margin: 30px 0 10px; }
.legal h3 { font-size: 1.05rem; color: var(--navy); margin: 18px 0 8px; }
.legal p, .legal li { font-size: .95rem; color: var(--text-muted); margin-bottom: 12px; }
.legal ul { margin-left: 20px; margin-bottom: 16px; }
.legal a { color: var(--turquoise-dark); }
.legal a:hover { text-decoration: underline; }
.legal .back { display: inline-block; margin-bottom: 20px; font-size: .9rem; color: var(--turquoise-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  /* Ausklappbares Mobil-Menue */
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
    padding: 6px 20px 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 1rem; color: var(--navy); }
  .nav-links a:last-child { border-bottom: 0; }
  .hero-visual { min-height: 340px; }
}
@media (max-width: 560px) {
  .nav-cta-btn { display: none; }
  .nav-links .nav-cta {
    display: block; text-align: center; margin-top: 10px; border-bottom: 0;
    background: var(--turquoise); color: var(--navy); font-weight: 700;
    border-radius: var(--radius-pill); padding: 13px 4px;
  }
}
@media (max-width: 560px) {
  section { padding: 48px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { padding: 28px 20px; }
  .legal { padding: 26px; margin: 0; border-radius: 0; }
  .hero { padding: 44px 0 52px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .nav-actions .btn { padding: 10px 15px; font-size: .82rem; }
  .brand-sub { display: none; }
  .modal { padding: 0; align-items: stretch; }
  .modal-card { max-width: 100%; border-radius: 0; min-height: 100%; }
  .modal-head { padding: 18px 18px 4px; }
  .modal-body { padding: 8px 18px 26px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
}

/* ===================== Live-Preisrechner ===================== */
.price-box {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 16px 18px;
}
.price-box[data-empty="false"] {
  border-color: var(--turquoise);
  background: linear-gradient(180deg, #f0fcfd 0%, #ffffff 100%);
  box-shadow: var(--shadow-sm);
}
.price-empty { color: var(--text-muted); font-size: .9rem; }
.price-main { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.price-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--turquoise-dark); background: rgba(27,200,211,.14);
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.price-meta { margin-top: 6px; font-size: .9rem; color: var(--text); font-weight: 600; }
.price-note { margin-top: 8px; font-size: .78rem; color: var(--text-muted); }
.price-details { margin-top: 14px; }
.price-details > summary {
  cursor: pointer; font-size: .9rem; font-weight: 600; color: var(--turquoise-dark);
  list-style: none; padding: 6px 0;
}
.price-details > summary::-webkit-details-marker { display: none; }
.price-details > summary::before { content: "+ "; font-weight: 800; }
.price-details[open] > summary::before { content: "– "; }

/* ===================== Transparente Preisliste (#preis) ===================== */
.muted-center { text-align: center; color: var(--text-muted); }
.price-table-wrap { margin: 8px 0 30px; }
.pt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.pt-card { background: var(--bg-white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.pt-card h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: 12px; }
table.pt { width: 100%; border-collapse: collapse; }
table.pt td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .9rem; vertical-align: top; }
table.pt tr:last-child td { border-bottom: 0; }
table.pt .pt-val { text-align: right; font-weight: 700; color: var(--navy); white-space: nowrap; padding-left: 12px; }
.pt-foot { margin-top: 16px; font-size: .8rem; color: var(--text-muted); text-align: center; }

/* Kostenaufstellung im Anfrage-Popup */
.price-breakdown { list-style: none; margin: 12px 0 4px; padding: 0; border-top: 1px dashed var(--line); }
.price-breakdown li { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: .84rem; color: var(--text); border-bottom: 1px dashed var(--line); }
.price-breakdown li:last-child { border-bottom: 0; }
.price-breakdown .pb-amt { font-weight: 700; white-space: nowrap; }
.price-breakdown .pb-min { font-weight: 700; color: var(--turquoise-dark); }
