/* ════════════════════════════════════════════════════════════
   GMEP — Logiciel Rabattement de Nappe
   Charte alignée sur gmep-france.eu
   ════════════════════════════════════════════════════════════ */

:root {
  --primary: #2a7ab5;
  --primary-dark: #1a5276;
  --primary-light: #eaf3fa;
  --accent: #2ecc71;
  --accent-dark: #1e8449;
  --accent-light: #e8f8ef;
  --bg: #ffffff;
  --bg-soft: #f5f5f0;
  --text: #1a1f2b;
  --text-soft: #4a5566;
  --text-mute: #6b6b66;
  --border: #e5e7eb;
  --border-strong: #cdd5df;
  --success: #27ae60;
  --danger: #dc2626;
  --warning: #d97706;
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', 'Courier New', monospace;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(20,30,50,.06), 0 1px 3px rgba(20,30,50,.04);
  --shadow: 0 4px 12px rgba(20,30,50,.08), 0 2px 4px rgba(20,30,50,.04);
  --shadow-lg: 0 12px 32px rgba(20,30,50,.10), 0 4px 8px rgba(20,30,50,.06);
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ─── Header / Footer : gérés par le site global (site.css) — règles neutralisées ─── */

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, #f8fbfd 0%, #eaf3fa 100%);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-light); color: var(--accent-dark);
  padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 20px; border: 1px solid #c8ecd5;
}
.hero h1 {
  font-size: 44px; line-height: 1.15; font-weight: 800;
  color: var(--primary-dark); letter-spacing: -.02em; margin-bottom: 20px;
}
.hero h1 .accent { color: var(--accent-dark); }
.hero p.lead { font-size: 19px; color: var(--text-soft); margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px; font-family: inherit;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .12s, box-shadow .12s, background .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; box-shadow: var(--shadow); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-primary { background: var(--accent-dark); color: #fff; }
.btn-primary:hover { background: var(--accent); color: #fff; }
.btn-secondary { background: #fff; color: var(--primary-dark); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

.hero-visual {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--border);
}
.hero-visual-header {
  background: #f8f9fb; padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; color: var(--text-mute);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff6058; } .dot.yel { background: #febc2e; } .dot.grn { background: #28c840; }
.hero-visual-body { padding: 24px; }
.mini-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px dashed var(--border); font-size: 14px;
}
.mini-row:last-child { border-bottom: none; }
.mini-label { color: var(--text-soft); }
.mini-val { font-family: var(--font-mono); font-weight: 600; color: var(--primary-dark); }
.mini-val.calc { color: var(--accent-dark); }
.hero-result {
  margin-top: 16px; background: var(--accent-light);
  border: 1px solid #c8ecd5; border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 14px; color: var(--accent-dark);
  font-weight: 600; display: flex; align-items: center; gap: 10px;
}

/* ─── Sections ─── */
section { padding: 80px 0; }
section.alt { background: var(--bg-soft); }
.section-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-eyebrow {
  text-transform: uppercase; letter-spacing: .15em;
  font-size: 12px; font-weight: 700; color: var(--accent-dark); margin-bottom: 12px;
}
.section-head h2 {
  font-size: 34px; line-height: 1.2; font-weight: 800;
  color: var(--primary-dark); letter-spacing: -.015em; margin-bottom: 16px;
}
.section-head p { font-size: 17px; color: var(--text-soft); }

/* ─── Features ─── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; color: var(--text-soft); }

/* ─── Démo interactive ─── */
.demo-banner {
  background: linear-gradient(135deg, var(--accent-light) 0%, #d1f2e0 100%);
  border-bottom: 1px solid #c8ecd5;
  padding: 14px 0;
  text-align: center;
  font-size: 14px;
  color: var(--accent-dark);
  font-weight: 500;
}
.demo-banner strong { color: var(--primary-dark); }
.demo-banner.warn { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); border-bottom-color: #fcd34d; color: #92400e; }
.demo-banner.expired { background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%); border-bottom-color: #fca5a5; color: var(--danger); }

.demo-section { padding: 60px 0; background: var(--bg-soft); }

.demo-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
}

.demo-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.demo-panel-head {
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between;
}
.demo-panel-head h3 {
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; gap: 10px;
}
.demo-badge {
  background: rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.demo-panel-body { padding: 24px; }

.demo-tabs { display: flex; gap: 4px; padding: 14px 24px 0; background: #f8f9fb; border-bottom: 1px solid var(--border); }
.demo-tab {
  padding: 10px 14px; font-size: 13px; font-weight: 600;
  color: var(--text-mute); cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.demo-tab.active { color: var(--primary-dark); border-bottom-color: var(--accent-dark); }
.demo-tab:hover { color: var(--primary); }

.tab-pane { display: none; }
.tab-pane.active { display: block; }

.field-grp { margin-bottom: 18px; }
.field-grp label {
  display: block; font-size: 12.5px; font-weight: 600;
  color: var(--primary-dark); margin-bottom: 5px;
  text-transform: uppercase; letter-spacing: .04em;
}
.field-grp .hint { display: block; font-size: 12px; color: var(--text-mute); margin-top: 4px; font-weight: 400; text-transform: none; letter-spacing: 0; }
.field-grp input, .field-grp select, .field-grp textarea {
  width: 100%; padding: 10px 13px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: inherit; color: var(--text);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field-grp input:focus, .field-grp select:focus {
  outline: none; border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(46,204,113,.15);
}
.field-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }

.section-label {
  font-size: 12.5px; font-weight: 700; color: var(--accent-dark);
  text-transform: uppercase; letter-spacing: .12em;
  margin: 22px 0 14px; padding-bottom: 6px;
  border-bottom: 2px solid var(--accent-light);
}
.section-label:first-child { margin-top: 0; }

/* Résultats */
.results-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin-bottom: 16px;
}
.results-table td {
  padding: 9px 12px; border-bottom: 1px solid var(--border);
}
.results-table td:first-child { color: var(--text-soft); }
.results-table td:last-child {
  font-family: var(--font-mono); font-weight: 600;
  color: var(--primary-dark); text-align: right;
}
.results-table tr.highlight td:last-child { color: var(--accent-dark); font-size: 15px; }
.results-table tr.section-header td {
  background: var(--bg-soft); font-weight: 700; color: var(--primary-dark);
  text-transform: uppercase; font-size: 11.5px; letter-spacing: .08em;
  padding: 8px 12px;
}

.iota-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 700;
  margin: 16px 0;
}
.iota-badge.ok { background: var(--accent-light); color: var(--accent-dark); border: 1px solid #c8ecd5; }
.iota-badge.declaration { background: #dbeafe; color: var(--primary-dark); border: 1px solid #93c5fd; }
.iota-badge.autorisation { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.iota-badge.hors { background: #f1f5f9; color: var(--text-soft); border: 1px solid var(--border-strong); }

/* Carte */
.map-container {
  width: 100%; height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: #f1f5f9;
}
#leaflet-map { width: 100%; height: 100%; }

/* Tableau IOTA dans résultats */
.iota-table {
  width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 14px;
}
.iota-table th, .iota-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--border); }
.iota-table th { background: var(--bg-soft); font-size: 11px; text-transform: uppercase; color: var(--text-soft); font-weight: 600; letter-spacing: .05em; }
.iota-table code { font-family: var(--font-mono); background: var(--bg-soft); padding: 2px 5px; border-radius: 3px; font-size: 12px; color: var(--primary-dark); }
.iota-table .st-ok { color: var(--text-mute); font-weight: 500; }
.iota-table .st-declar { color: var(--primary); font-weight: 700; }
.iota-table .st-autor { color: var(--warning); font-weight: 700; }
.iota-table .st-warn { color: var(--warning); font-weight: 700; }

.demo-actions {
  display: flex; gap: 12px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.demo-actions .btn { flex: 1; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,25,40,.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: modalIn .25s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-head { padding: 22px 26px; border-bottom: 1px solid var(--border); }
.modal-head h3 { font-size: 19px; color: var(--primary-dark); font-weight: 700; margin-bottom: 6px; }
.modal-head p { font-size: 14px; color: var(--text-soft); }
.modal-body { padding: 22px 26px; }
.modal-foot {
  padding: 18px 26px;
  background: var(--bg-soft);
  display: flex; gap: 12px;
  justify-content: flex-end;
  border-top: 1px solid var(--border);
}
.modal-foot .btn { padding: 11px 18px; font-size: 14px; }

.lock-card {
  text-align: center;
  background: #fff;
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}
.lock-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fef3c7; color: #d97706;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.lock-card h4 { font-size: 20px; color: var(--primary-dark); margin-bottom: 8px; font-weight: 700; }
.lock-card p { color: var(--text-soft); font-size: 15px; max-width: 380px; margin: 0 auto 20px; }
.lock-card .lock-sub { font-size: 12px; color: var(--text-muted, #888); margin-top: 14px; margin-bottom: 0; }

/* ─── Pricing ─── */
.pricing-wrap { max-width: 520px; margin: 0 auto; }
.price-card {
  background: #fff;
  border: 2px solid var(--accent-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}
.price-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent-dark); color: #fff;
  padding: 4px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
}
.price-title { font-size: 22px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.price-sub { color: var(--text-soft); font-size: 14px; margin-bottom: 28px; }
.price-amount {
  font-size: 56px; font-weight: 800; color: var(--primary-dark);
  letter-spacing: -.02em; line-height: 1;
}
.price-amount .currency { font-size: 28px; vertical-align: top; margin-right: 4px; }
.price-unit { color: var(--text-soft); font-size: 15px; margin-bottom: 8px; }
.price-vat { font-size: 12px; color: var(--text-mute); margin-bottom: 28px; }
.price-features {
  list-style: none; text-align: left;
  margin: 24px 0 28px; padding: 24px 0 0;
  border-top: 1px solid var(--border);
}
.price-features li {
  padding: 8px 0; font-size: 14.5px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.price-features li::before { content: "✓"; color: var(--accent-dark); font-weight: 700; font-size: 16px; }

/* ─── FAQ ─── */
.faq-list { max-width: 820px; margin: 0 auto; }
details.faq {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px; overflow: hidden;
  transition: border-color .15s;
}
details.faq[open] { border-color: var(--accent); }
details.faq summary {
  padding: 18px 24px; cursor: pointer;
  font-weight: 600; color: var(--primary-dark);
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  font-size: 15.5px;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; font-size: 22px; color: var(--accent-dark); }
details.faq[open] summary::after { content: "−"; }
details.faq .faq-body { padding: 0 24px 22px; color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }

/* ─── Footer : géré par site.css global ─── */

/* ─── Responsive ─── */
@media (max-width: 920px) {
  .hero { padding: 56px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 34px; }
  section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
  .features-grid { grid-template-columns: 1fr; }
  .demo-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .field-row-2, .field-row-3 { grid-template-columns: 1fr; }
  .demo-actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .price-amount { font-size: 44px; }
}

/* ─── Compléments pour démo interactive (ajouts) ─── */
.quota-banner {
  margin: 0 0 18px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--border);
  background: #f5f9ff;
  color: var(--text);
}
.quota-banner.ok { border-color: rgba(46, 204, 113, .35); background: rgba(46, 204, 113, .08); }
.quota-banner.expired { border-color: rgba(220, 53, 69, .35); background: rgba(220, 53, 69, .08); color: #842029; }
.quota-banner a { color: var(--accent-dark); font-weight: 700; }

.demo-tab {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 8px 8px 0 0;
  font-size: 13.5px; font-weight: 600; color: var(--text-soft);
  background: transparent; border: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all .15s ease;
}
.demo-tab:hover { color: var(--primary-dark); }
.demo-tab.active { color: var(--primary-dark); background: #fff; border-bottom: 2px solid var(--primary); }

.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.result-grid .card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 18px;
}
.result-grid .card h4 {
  font-size: 13px; font-weight: 700; color: var(--primary-dark);
  text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.result-grid .iota-card { grid-column: 1 / -1; }
.result-grid .iota-card.iota-hors h4 { color: var(--primary-dark); }
.result-grid .iota-card.iota-declaration h4 { color: #c97b00; }
.result-grid .iota-card.iota-autorisation h4 { color: #b00020; }

.iota-status {
  display: inline-block; padding: 8px 14px; border-radius: 8px;
  font-weight: 700; font-size: 14px; margin-bottom: 14px;
  background: var(--bg-soft); color: var(--primary-dark);
}
.iota-card.iota-declaration .iota-status { background: #fff3cd; color: #946100; }
.iota-card.iota-autorisation .iota-status { background: #ffcdd2; color: #b00020; }

.iota-pill {
  display: inline-block; padding: 3px 10px; border-radius: 12px;
  font-size: 12px; font-weight: 600;
}
.iota-pill.st-ok { background: rgba(46, 204, 113, .15); color: var(--accent-dark); }
.iota-pill.st-warn { background: #ffe0b2; color: #8c4d00; }
.iota-pill.st-declar { background: #fff3cd; color: #946100; }
.iota-pill.st-autor { background: #ffcdd2; color: #b00020; }

table.kv { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.kv td { padding: 6px 4px; border-bottom: 1px solid var(--border); }
table.kv td:first-child { color: var(--text-soft); width: 55%; }
table.kv td:last-child { text-align: right; font-family: var(--font-mono); font-weight: 600; color: var(--primary-dark); }

.empty { padding: 60px 20px; text-align: center; color: var(--text-soft); background: var(--bg-soft); border-radius: 10px; }
.map-legend {
  margin-top: 12px; padding: 10px 14px; background: var(--bg-soft); border-radius: 8px;
  display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px;
}
.map-legend b { color: var(--primary-dark); margin-right: 4px; }

#lock-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(15, 30, 50, .65); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
#lock-overlay.open { display: flex; }

@media (max-width: 768px) {
  .result-grid { grid-template-columns: 1fr; }
  .map-legend { flex-direction: column; gap: 6px; }
}

/* ─── FAQ collapsibles ─── */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-dark);
  display: flex; justify-content: space-between; align-items: center;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px; line-height: 1; color: var(--primary);
  margin-left: 12px; flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 22px 18px;
  font-size: 14.5px; line-height: 1.6;
  color: var(--text);
}

.nav-cta { padding: 8px 16px !important; font-size: 13px !important; }
.cta-li { list-style: none; }

/* ─── Pricing : sélecteur pays + détail TVA ─── */
.country-select {
  display: flex; align-items: center; gap: 12px;
  background: #f5f9ff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  margin: 0 0 22px;
  font-size: 13px;
}
.country-select label {
  font-weight: 600; color: var(--primary-dark);
  white-space: nowrap;
  text-transform: uppercase; font-size: 11px; letter-spacing: .05em;
}
.country-select select {
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
}
.country-select select:focus { outline: 2px solid var(--primary); outline-offset: 1px; }

.price-breakdown {
  margin: 18px 0 6px;
  padding: 14px 20px;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  box-sizing: border-box;
  overflow: hidden;
}
.pb-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 5px 0;
  color: var(--text-soft);
}
.pb-row > span:first-child {
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pb-row .pb-val {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pb-total {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 10px;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
}
.pb-total .pb-val { color: var(--accent-dark); font-size: 16px; }
