/* ══════════════════════════════════════════
   T4: city_model_repair — MONEY PAGE CSS
   Дополняет: phonefix-base + components + sections
   ══════════════════════════════════════════ */

/* ── Breadcrumbs bar (above hero) ── */
.mp-breadcrumbs-bar {
  background: var(--surface);
  padding: 0;
}
.mp-breadcrumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-muted);
}
.mp-breadcrumbs a { color: var(--text-muted); transition: color .15s; }
.mp-breadcrumbs a:hover { color: var(--accent); }
.mp-breadcrumbs svg { flex-shrink: 0; opacity: .4; }
.mp-breadcrumbs span:last-child { color: var(--text-2); font-weight: 500; }

/* ── Hero compact ── */
.mp-hero {
  padding: var(--section-pad) 24px;
  padding-top: 20px;
  padding-bottom: 48px;
  background: var(--surface);
  position: relative;
}
.mp-hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .25;
}
.mp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px;
  align-items: start;
}
.mp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg);
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.mp-hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s infinite;
}
.mp-hero-h1 {
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}
.mp-hero-h1 em { font-style: normal; color: var(--accent); }
.mp-hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Метрики */
.mp-metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.mp-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mp-metric-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1;
}
.mp-metric-val b { color: var(--accent); }
.mp-metric-label {
  font-size: 13px;
  color: var(--text-muted);
}
.mp-metric-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 4px 0;
}

/* Кнопки CTA */
.mp-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.mp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.mp-cta-primary:hover { background: var(--accent-h); transform: translateY(-1px); }
.mp-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color .15s;
}
.mp-cta-phone:hover { border-color: var(--border-2); }
.mp-cta-tg { color: #0369a1; border-color: #bae6fd; }
.mp-cta-tg:hover { background: #f0f9ff; border-color: #7dd3fc; }
.mp-cta-max { color: #cc0000; border-color: #fecaca; }
.mp-cta-max:hover { background: #fff5f5; border-color: #fca5a5; }

/* Боковая карточка цены — стили перенесены в секцию Phone visual ниже */

/* ── Разбивка цены (формула) ── */
.mp-bd-formula {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mp-bd-item {
  flex: 1;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.mp-bd-item--free .mp-bd-item-icon { color: var(--green); background: var(--green-l); }
.mp-bd-item-icon {
  width: 48px; height: 48px;
  background: var(--accent-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 6px;
}
.mp-bd-item-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.mp-bd-item-price { font-size: 24px; font-weight: 800; letter-spacing: -.03em; color: var(--text); line-height: 1; }
.mp-bd-item-note { font-size: 12px; color: var(--text-muted); line-height: 1.4; max-width: 160px; }
.mp-bd-op {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 200;
  color: var(--border-2);
  padding: 0 8px;
  flex-shrink: 0;
}
.mp-bd-result {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  background: var(--accent);
  color: #fff;
}
.mp-bd-result-label { font-size: 13px; opacity: .8; font-weight: 500; }
.mp-bd-result-price { font-size: 32px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.mp-bd-result-note { font-size: 12px; opacity: .75; }
.mp-bd-guarantees {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.mp-bd-g-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}

/* Табы Оригинал / OEM */
.mp-type-tabs {
  display: inline-flex;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
  margin-bottom: 24px;
}
.mp-type-tab {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all .15s;
}
.mp-type-tab.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--sh);
}

/* ── Запчасти ── */
.mp-parts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.mp-parts-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mp-parts-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.mp-parts-title { font-size: 16px; font-weight: 700; color: var(--text); }
.mp-parts-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 980px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.mp-parts-badge--orig { background: var(--green-l); color: var(--green); }
.mp-parts-badge--oem { background: var(--accent-l); color: var(--accent); }
.mp-parts-table { width: 100%; border-collapse: collapse; }
.mp-parts-table tr + tr td { border-top: 1px solid var(--border); }
.mp-parts-table td { padding: 8px 0; font-size: 14px; }
.mp-parts-table td:first-child { color: var(--text-muted); width: 50%; }
.mp-parts-table td:last-child { font-weight: 600; color: var(--text); text-align: right; }

/* ── Related symptoms ── */
.mp-symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.mp-symptom-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.mp-symptom-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-l);
}
.mp-symptom-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--bg);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

/* ── Related repairs ── */
.mp-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.mp-related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.mp-related-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-l);
}
.mp-related-icon {
  width: 40px; height: 40px;
  background: var(--bg);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 4px;
}
.mp-related-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.mp-related-price { font-size: 13px; color: var(--text-muted); }
.mp-related-price b { color: var(--accent); font-weight: 700; }

/* ── Same repair in cities ── */
.mp-cities-head { margin-bottom: 20px; }
.mp-cities-title { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.mp-cities-sub { font-size: 14px; color: var(--text-muted); }

/* ── Comparison table ── */
.mp-compare-table-wrap { overflow-x: auto; margin-top: 24px; }
.mp-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.mp-compare-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.mp-compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.mp-compare-table tr:last-child td { border-bottom: none; }
.mp-compare-table tr.mp-compare-current { background: var(--accent-l); }
.mp-compare-table tr.mp-compare-current td:first-child { font-weight: 700; color: var(--text); }
.mp-compare-model-link { color: var(--text); font-weight: 500; }
.mp-compare-model-link:hover { color: var(--accent); }
.mp-compare-price { font-weight: 700; color: var(--accent); white-space: nowrap; }
.mp-compare-time { color: var(--text-muted); font-size: 14px; white-space: nowrap; }
.mp-compare-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  background: var(--accent-l);
  color: var(--accent);
}

/* ── Tab: tooltip + badge + alt ── */
.mp-type-tab--has-tip { position: relative; }
.mp-tab-tip {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  color: var(--text-muted);
  cursor: help;
  position: relative;
}
.mp-tab-tip::after {
  content: attr(aria-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  padding: 10px 14px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  border-radius: var(--radius-xs);
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  z-index: 10;
  text-transform: none;
  letter-spacing: 0;
}
.mp-tab-tip:hover::after { opacity: 1; }
.mp-type-tab--alt { position: relative; }
.mp-tab-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent-l);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Glass panel ── */
.mp-bd-glass {
  margin-top: 32px;
  padding: 28px;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 0 0 4px var(--accent-l);
}
.mp-bd-glass-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.mp-bd-glass-icon {
  width: 56px; height: 56px;
  background: var(--accent-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.mp-bd-glass-content { flex: 1; }
.mp-bd-glass-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.mp-bd-glass-desc { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.mp-bd-glass-price-block { text-align: right; flex-shrink: 0; }
.mp-bd-glass-price { font-size: 32px; font-weight: 800; letter-spacing: -.04em; color: var(--accent); line-height: 1; }
.mp-bd-glass-save { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 4px; }
.mp-bd-glass-features {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.mp-bd-glass-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.mp-bd-glass-link:hover { text-decoration: underline; }

/* ── Trust Bar ── */
.mp-trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
}
.mp-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
.mp-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.mp-trust-item strong { color: var(--text); font-weight: 700; }
.mp-trust-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}
.mp-trust-link {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.mp-trust-link:hover { text-decoration: underline; }

/* ── Reviews hero ── */
.mp-rev-hero {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
}
.mp-rev-agg {
  flex-shrink: 0;
  text-align: center;
  padding: 24px 28px;
  background: var(--bg);
  border-radius: var(--radius);
}
.mp-rev-agg-score {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -.06em;
  color: var(--text);
  line-height: 1;
}
.mp-rev-agg-stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin: 6px 0;
}
.mp-rev-agg-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.mp-rev-hero-text { flex: 1; }
.mp-rev-hero-text .s-title { margin-bottom: 8px; }
.mp-rev-hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.mp-rating-summary {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
/* ── Verified badge ── */
.rev-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 2px 8px;
  background: var(--green-l);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.rev-meta time {
  color: var(--text-muted);
  font-style: normal;
}
/* ── Reviews bottom ── */
.mp-rev-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.mp-rev-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}
.mp-rev-all-link:hover { text-decoration: underline; }
.mp-rev-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: border-color .15s;
}
.mp-rev-write-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Mid-CTA ── */
.mp-mid-cta {
  background: var(--accent);
  padding: 20px 24px;
}
.mp-mid-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.mp-mid-cta-text {
  font-size: 16px;
  color: #fff;
}
.mp-mid-cta-text strong { font-weight: 700; }
.mp-mid-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mp-mid-cta .mp-cta-primary {
  background: #fff;
  color: var(--accent);
}
.mp-mid-cta .mp-cta-primary:hover {
  background: var(--bg);
  transform: translateY(-1px);
}
.mp-mid-cta-phone {
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.mp-mid-cta-phone:hover { color: #fff; }

/* ── FAQ CTA ── */
.mp-faq-cta {
  max-width: 800px;
  margin: 32px auto 0;
  text-align: center;
}
.mp-faq-cta-text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.mp-faq-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Parts recommendations ── */
.mp-parts-rec {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ── Map placeholder ── */
.mp-map-placeholder {
  width: 100%;
  height: 280px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mp-map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

/* ── Phone visual + compact price card in hero right column ── */
.mp-hero-right{display:flex;flex-direction:column;align-items:stretch;gap:16px;margin-top:-64px}
.mp-hero-right .hero-visual{display:flex;align-items:center;justify-content:center}

/* Compact price card — sits below the phone */
.mp-price-card{
  background:var(--surface);
  border:1.5px solid var(--border);
  border-radius:var(--radius);
  padding:20px 24px;
  box-shadow:var(--sh-md);
  position:static;
}
.mp-pc-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:16px}
.mp-pc-left{display:flex;flex-direction:column;gap:6px}
.mp-pc-badge{
  display:inline-flex;align-items:center;gap:5px;
  padding:3px 10px;background:var(--green-l);color:var(--green);
  font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  border-radius:980px;
}
.mp-pc-price{font-size:28px;font-weight:800;letter-spacing:-.04em;color:var(--text);line-height:1}
.mp-pc-stats{display:flex;flex-direction:column;gap:6px;align-items:flex-end;flex-shrink:0}
.mp-pc-stat{
  display:inline-flex;align-items:center;gap:4px;
  font-size:12px;font-weight:500;color:var(--text-muted);
  white-space:nowrap;
}
.mp-pc-stat--green{color:var(--green)}
.mp-pc-btn{width:100%;justify-content:center;margin-bottom:10px}
.mp-pc-note{font-size:12px;color:var(--text-muted);text-align:center;line-height:1.4}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .mp-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .mp-hero-right { display: none; }
  .mp-breakdown-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-related-grid { grid-template-columns: repeat(3, 1fr); }
}
/* On ≤1024 show compact price card inline in left column */
@media (max-width: 1024px) {
  .mp-hero-left::after { display: none; }
}
@media (max-width: 768px) {
  .mp-hero { padding: var(--section-pad-mob) 16px; padding-top: 20px; padding-bottom: 32px; }
  .mp-breadcrumbs { padding: 72px 16px 8px; }
  .mp-bd-formula { flex-direction: column; }
  .mp-bd-item { border-right: none; border-bottom: 1px solid var(--border); flex-direction: row; text-align: left; padding: 16px 20px; gap: 12px; }
  .mp-bd-item-icon { width: 40px; height: 40px; margin-bottom: 0; flex-shrink: 0; }
  .mp-bd-item-note { max-width: none; }
  .mp-bd-op { padding: 6px 0; font-size: 18px; }
  .mp-bd-result { flex-direction: row; justify-content: space-between; padding: 20px 24px; gap: 12px; }
  .mp-bd-guarantees { gap: 16px; justify-content: flex-start; }
  .mp-bd-glass-inner { flex-direction: column; }
  .mp-bd-glass-price-block { text-align: left; }
  .mp-type-tabs { flex-wrap: wrap; gap: 4px; }
  .mp-tab-tip::after { left: auto; right: 0; transform: none; }
  .mp-hero-h1 { font-size: clamp(22px, 7vw, 36px); }
  .mp-metrics { gap: 16px; }
  .mp-metric-val { font-size: 18px; }
  .mp-metric-divider { display: none; }
  .mp-breakdown-grid { grid-template-columns: 1fr; }
  .mp-parts-grid { grid-template-columns: 1fr; }
  .mp-symptoms-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-trust-inner { justify-content: center; text-align: center; }
  .mp-trust-link { margin-left: 0; width: 100%; text-align: center; }
  .mp-trust-divider { display: none; }
  .mp-rev-hero { flex-direction: column; text-align: center; gap: 20px; }
  .mp-rev-agg-score { font-size: 44px; }
  .mp-rating-summary { flex-direction: column; }
  .mp-rev-bottom { flex-direction: column; align-items: flex-start; }
  .mp-mid-cta-inner { flex-direction: column; text-align: center; }
  .mp-mid-cta-actions { width: 100%; justify-content: center; }
  .mp-map-placeholder { height: 200px; }
  /* Compare table: compact on tablet */
  .mp-compare-table { font-size: 13px; }
  .mp-compare-table th,
  .mp-compare-table td { padding: 10px 10px; }
  /* Price table category rows */
  .mp-compare-table .mp-cat-row td { font-size: 12px; padding: 8px 10px; }
}
@media (max-width: 480px) {
  .mp-hero-cta { flex-direction: column; }
  .mp-hero-cta > * { width: 100%; justify-content: center; }
  .mp-symptoms-grid { grid-template-columns: 1fr; }
  .mp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-breakdown-total { flex-direction: column; align-items: flex-start; gap: 8px; }
  .mp-faq-cta-actions { flex-direction: column; }
  .mp-mid-cta-actions { flex-direction: column; }
  /* Hero phone: hide on small screens */
  .mp-hero-inner .hero-visual { display: none; }
  /* Metrics: compact grid */
  .mp-metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mp-metric-val { font-size: 16px; }
  /* Compare table: even more compact */
  .mp-compare-table { font-size: 12px; }
  .mp-compare-table th,
  .mp-compare-table td { padding: 8px 6px; }
  .mp-compare-table th:last-child,
  .mp-compare-table td:last-child:not([colspan]) { display: none; }
  /* Section padding tighter */
  .section { padding: var(--section-pad-mob) 16px; }
}
