/* ============================================================
   MARKETPLACE.CSS v2 — Cashard Premium Quote-Based Marketplace
   Quote / managed inquiry model — no public rates
   ============================================================ */

:root {
  --mp-bg: #070d1a;
  --mp-surface: #0d1526;
  --mp-surface2: #111d33;
  --mp-border: rgba(255,255,255,.07);
  --mp-text: #e2e8f0;
  --mp-muted: #64748b;
  --mp-gold: #FFB800;
  --mp-gold-light: #FFC933;
  --mp-gold-dark: #D49B00;
  --mp-green: #10b981;
}

/* ── HERO SECTION ── */
.mp-hero-section {
  text-align: center;
  padding: 48px 24px 0;
  max-width: 820px;
  margin: 0 auto;
}
.mp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  background: rgba(255,184,0,.08);
  border: 1px solid rgba(255,184,0,.2);
  color: var(--mp-gold);
  margin-bottom: 20px;
}
.mp-hero-eyebrow i { font-size: 10px; }
.mp-hero-section h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}
.mp-hero-section h1 span {
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mp-hero-subtitle {
  font-size: 15px;
  color: var(--mp-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ── TRUST BAR ── */
.mp-trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 20px 24px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.mp-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mp-text);
}
.mp-trust-badge i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  background: rgba(255,184,0,.08);
  border: 1px solid rgba(255,184,0,.15);
  color: var(--mp-gold);
  box-shadow: inset 2px 2px 6px rgba(0,0,0,.3), inset -1px -1px 3px rgba(255,255,255,.03);
}

/* ── STATS BAR ── */
.mp-stats-bar {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px;
  margin: 0 auto 8px;
  max-width: 700px;
}
.mp-stat-card {
  text-align: center;
  padding: 16px 24px;
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 14px;
  box-shadow: 6px 6px 16px rgba(0,0,0,.35), -3px -3px 8px rgba(255,255,255,.02);
  min-width: 140px;
}
.mp-stat-card .mp-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.mp-stat-card .mp-stat-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mp-muted);
  margin-top: 4px;
}

/* ── HOW IT WORKS ── */
.mp-how-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 32px;
}
.mp-how-title {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mp-gold);
  margin-bottom: 24px;
}
.mp-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mp-how-step {
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 14px;
  padding: 22px 16px;
  text-align: center;
  position: relative;
  box-shadow: 6px 6px 16px rgba(0,0,0,.35), -3px -3px 8px rgba(255,255,255,.02);
}
.mp-how-num {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark));
  color: #000;
  margin-bottom: 12px;
}
.mp-how-step h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.mp-how-step p {
  font-size: 11px;
  color: var(--mp-muted);
  line-height: 1.5;
}

/* ── DIVIDER ── */
.mp-divider {
  max-width: 1200px;
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--mp-border);
}

/* ── CONTENT CONTAINER ── */
.mp-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ── SECTION HEADER ── */
.mp-section-header {
  text-align: center;
  margin-bottom: 20px;
}
.mp-section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.mp-section-header p {
  font-size: 13px;
  color: var(--mp-muted);
  margin-top: 6px;
}

/* ── FILTERS ── */
.mp-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-bottom: 24px;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.mp-filters::-webkit-scrollbar { display: none; }

.mp-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 10px;
  padding: 0 14px;
  min-width: 220px;
  max-width: 320px;
  flex-shrink: 0;
}
.mp-search i { color: var(--mp-muted); font-size: 14px; }
.mp-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--mp-text);
  font-size: 13px;
  padding: 10px 0;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.mp-pill {
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--mp-border);
  color: var(--mp-muted);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.mp-pill:hover { color: #fff; border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.06); }
.mp-pill.active { background: rgba(255,184,0,.1); border-color: rgba(255,184,0,.3); color: var(--mp-gold); }

.mp-count-badge {
  font-size: 13px;
  color: var(--mp-muted);
  margin-bottom: 16px;
}
.mp-count-badge strong { color: #fff; }

/* ── LISTING GRID ── */
.mp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

/* ── LISTING CARD (quote-based — no rates) ── */
.mp-card {
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 16px;
  padding: 24px;
  transition: all .25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.mp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mp-gold), var(--mp-gold-light));
  opacity: 0;
  transition: opacity .25s;
}
.mp-card:hover {
  border-color: rgba(255,184,0,.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35), 0 0 0 1px rgba(255,184,0,.1);
}
.mp-card:hover::before { opacity: 1; }

.mp-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mp-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  background: rgba(255,184,0,.08);
  border: 1px solid rgba(255,184,0,.15);
  color: var(--mp-gold);
  flex-shrink: 0;
}
.mp-card-badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  border: 1px solid rgba(16,185,129,.2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.mp-card-badge.verified { background: rgba(16,185,129,.1); color: #34d399; }
.mp-card-badge.demand { background: rgba(255,184,0,.1); color: var(--mp-gold); border-color: rgba(255,184,0,.2); }
.mp-card-badge.limited { background: rgba(239,68,68,.08); color: #f87171; border-color: rgba(239,68,68,.15); }

.mp-card-program {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mp-gold);
  margin-bottom: 6px;
}
.mp-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Availability info block replacing old rate stats */
.mp-card-avail {
  padding: 14px;
  background: rgba(255,255,255,.02);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.04);
  margin-bottom: 14px;
}
.mp-card-avail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
.mp-card-avail-row:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.mp-card-avail-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--mp-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mp-card-avail-lbl i { font-size: 10px; }
.mp-card-avail-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--mp-text);
}
.mp-card-avail-val.gold { color: var(--mp-gold); }
.mp-card-avail-val.green { color: #34d399; }

.mp-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 11px;
  color: var(--mp-muted);
}
.mp-card-freshness {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mp-card-freshness i { font-size: 8px; color: var(--mp-green); }

.mp-card-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark));
  color: #000;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(255,184,0,.15);
}
.mp-card-btn:hover {
  box-shadow: 0 6px 24px rgba(255,184,0,.25);
  transform: translateY(-1px);
}

/* ── EMPTY STATE ── */
.mp-empty {
  text-align: center;
  padding: 80px 24px;
  grid-column: 1 / -1;
}
.mp-empty i { font-size: 56px; opacity: .15; margin-bottom: 20px; display: block; color: var(--mp-gold); }
.mp-empty h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.mp-empty p { font-size: 13px; color: var(--mp-muted); max-width: 360px; margin: 0 auto; line-height: 1.5; }

/* ── PRICING EXPLAINER ── */
.mp-pricing-section {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 0 24px;
}
.mp-pricing-card {
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 6px 6px 16px rgba(0,0,0,.35), -3px -3px 8px rgba(255,255,255,.02);
}
.mp-pricing-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.mp-pricing-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
  background: rgba(255,184,0,.08);
  border: 1px solid rgba(255,184,0,.15);
  color: var(--mp-gold);
}
.mp-pricing-card-header h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.mp-pricing-card-header p {
  font-size: 12px;
  color: var(--mp-muted);
  margin-top: 2px;
}
.mp-pricing-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mp-pricing-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,.02);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.04);
}
.mp-pricing-point i {
  color: var(--mp-gold);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.mp-pricing-point strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.mp-pricing-point span {
  font-size: 11px;
  color: var(--mp-muted);
  line-height: 1.5;
}

/* ── CUSTOM SOURCING CTA ── */
.mp-custom-cta {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 0 24px;
}
.mp-custom-card {
  background: linear-gradient(135deg, rgba(255,184,0,.06), rgba(255,184,0,.02));
  border: 1px solid rgba(255,184,0,.15);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.mp-custom-card-text h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.mp-custom-card-text p {
  font-size: 13px;
  color: var(--mp-muted);
  line-height: 1.5;
}
.mp-custom-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark));
  color: #000;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: all .2s;
}
.mp-custom-card-btn:hover { box-shadow: 0 6px 24px rgba(255,184,0,.25); }

/* ── BOTTOM CTA ── */
.mp-bottom-cta {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 40px 32px;
  text-align: center;
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 18px;
  box-shadow: 6px 6px 16px rgba(0,0,0,.35), -3px -3px 8px rgba(255,255,255,.02);
}
.mp-bottom-cta h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.mp-bottom-cta p { font-size: 13px; color: var(--mp-muted); margin-bottom: 20px; max-width: 480px; margin-left: auto; margin-right: auto; }
.mp-bottom-cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.mp-bottom-cta-btns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
}
.mp-bottom-cta .mp-cta-wa { background: #25d366; color: #fff; }
.mp-bottom-cta .mp-cta-wa:hover { background: #1fbd5a; }
.mp-bottom-cta .mp-cta-sell { background: rgba(255,184,0,.08); border: 1px solid rgba(255,184,0,.2); color: var(--mp-gold); }
.mp-bottom-cta .mp-cta-sell:hover { background: rgba(255,184,0,.14); }

/* ── FAQ ── */
.mp-faq-section { max-width: 800px; margin: 48px auto 0; padding: 0 24px; }
.mp-faq-title { text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mp-gold); margin-bottom: 24px; }
.mp-faq-item {
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.mp-faq-item.open { border-color: rgba(255,184,0,.15); }
.mp-faq-q {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: color .15s;
}
.mp-faq-q:hover { color: var(--mp-gold); }
.mp-faq-q i { font-size: 12px; color: var(--mp-muted); transition: transform .2s; }
.mp-faq-item.open .mp-faq-q i { transform: rotate(180deg); }
.mp-faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.mp-faq-item.open .mp-faq-a { max-height: 200px; padding: 0 20px 16px; }
.mp-faq-a p { font-size: 13px; color: var(--mp-muted); line-height: 1.6; }

/* ── MODAL ── */
.mp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.mp-modal.open { display: flex; }

.mp-modal-box {
  background: var(--mp-surface);
  border: 1px solid var(--mp-border);
  border-radius: 18px;
  max-width: 520px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
  animation: mp-modal-in .25s ease;
}
@keyframes mp-modal-in {
  from { opacity: 0; transform: scale(.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.mp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.mp-modal-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mp-modal-header h3 i { color: var(--mp-gold); }
.mp-modal-close {
  background: none;
  border: 1px solid var(--mp-border);
  color: var(--mp-muted);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
}
.mp-modal-close:hover { color: #fff; border-color: rgba(255,255,255,.15); }

/* Modal summary */
.mp-modal-summary {
  background: rgba(255,184,0,.06);
  border: 1px solid rgba(255,184,0,.15);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mp-modal-summary-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 18px;
  background: rgba(255,184,0,.1);
  color: var(--mp-gold);
  flex-shrink: 0;
}
.mp-modal-summary-info { flex: 1; }
.mp-modal-summary-info .prog { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--mp-gold); }
.mp-modal-summary-info .pts { font-size: 16px; font-weight: 900; color: #fff; margin-top: 2px; }
.mp-modal-summary-info .avail-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  background: rgba(16,185,129,.1);
  color: #34d399;
  border: 1px solid rgba(16,185,129,.2);
  margin-top: 4px;
}

/* Modal form fields */
.mp-modal-divider {
  border: none;
  border-top: 1px solid var(--mp-border);
  margin: 16px 0;
}
.mp-modal-section-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mp-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mp-modal-section-label i { font-size: 10px; }

.mp-modal-field { margin-bottom: 14px; }
.mp-modal-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mp-muted);
  margin-bottom: 6px;
}
.mp-modal-field input,
.mp-modal-field textarea,
.mp-modal-field select {
  width: 100%;
  background: var(--mp-surface2);
  border: 1px solid var(--mp-border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--mp-text);
  font-size: 13px;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.mp-modal-field input:focus,
.mp-modal-field textarea:focus,
.mp-modal-field select:focus { border-color: rgba(255,184,0,.3); }
.mp-modal-field input.error { border-color: #ef4444; }
.mp-modal-field textarea { min-height: 68px; resize: vertical; }
.mp-modal-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.mp-modal-field select option { background: var(--mp-surface2); color: var(--mp-text); }

.mp-modal-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mp-modal-note {
  font-size: 11px;
  color: var(--mp-muted);
  line-height: 1.5;
  padding: 10px 14px;
  background: rgba(255,255,255,.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.04);
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.mp-modal-note i { color: var(--mp-gold); font-size: 12px; margin-top: 2px; flex-shrink: 0; }

.mp-modal-submit {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--mp-gold), var(--mp-gold-dark));
  color: #000;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(255,184,0,.15);
}
.mp-modal-submit:hover { box-shadow: 0 6px 24px rgba(255,184,0,.25); }
.mp-modal-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ── Success State ── */
.mp-success { text-align: center; padding: 20px 8px; }
.mp-success-icon {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  background: rgba(16,185,129,.1);
  border: 2px solid rgba(16,185,129,.25);
  color: #34d399;
  margin-bottom: 16px;
  animation: mp-success-pop .4s ease;
}
@keyframes mp-success-pop { 0%{transform:scale(0)} 60%{transform:scale(1.15)} 100%{transform:scale(1)} }
.mp-success h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.mp-success .subtitle { font-size: 13px; color: var(--mp-muted); margin-bottom: 16px; }

.mp-success .ticket {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  background: rgba(255,184,0,.08);
  border: 1px solid rgba(255,184,0,.2);
  color: var(--mp-gold);
  font-family: 'Space Grotesk', monospace;
  margin-bottom: 20px;
}

.mp-success-timeline {
  text-align: left;
  padding: 16px;
  background: rgba(255,255,255,.02);
  border-radius: 10px;
  border: 1px solid var(--mp-border);
  margin-bottom: 16px;
}
.mp-success-timeline h4 {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mp-gold);
  margin-bottom: 12px;
}
.mp-success-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  position: relative;
}
.mp-success-timeline-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.04); }
.mp-success-timeline-dot {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 10px;
  flex-shrink: 0;
}
.mp-success-timeline-dot.done { background: rgba(16,185,129,.12); color: #34d399; }
.mp-success-timeline-dot.pending { background: rgba(255,184,0,.08); color: var(--mp-gold); }
.mp-success-timeline-item strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.mp-success-timeline-item span {
  font-size: 11px;
  color: var(--mp-muted);
  line-height: 1.4;
}

.mp-success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}
.mp-success-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s;
}
.mp-success-wa:hover { background: #1fbd5a; transform: translateY(-1px); }
.mp-success-email-note {
  font-size: 11px;
  color: var(--mp-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mp-success-email-note i { color: var(--mp-gold); }

/* ── Spinner ── */
.mp-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: mp-spin .6s linear infinite;
}
@keyframes mp-spin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .mp-hero-section { padding: 32px 16px 0; }
  .mp-hero-section h1 { font-size: 26px; }
  .mp-trust-bar { gap: 16px; padding: 16px; }
  .mp-trust-badge { font-size: 12px; }
  .mp-trust-badge i { width: 32px; height: 32px; font-size: 13px; }
  .mp-stats-bar { gap: 12px; padding: 16px; }
  .mp-stat-card { min-width: 100px; padding: 12px 16px; }
  .mp-stat-card .mp-stat-val { font-size: 20px; }
  .mp-how-steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mp-content { padding: 20px 16px; }
  .mp-grid { grid-template-columns: 1fr; gap: 14px; }
  .mp-filters { flex-wrap: nowrap; }
  .mp-search { min-width: 100%; max-width: 100%; margin-bottom: 8px; }
  .mp-section-header h2 { font-size: 20px; }
  .mp-bottom-cta { margin: 32px 16px 0; padding: 28px 20px; }
  .mp-bottom-cta h3 { font-size: 18px; }
  .mp-faq-section { padding: 0 16px; }
  .mp-modal-box { width: 95%; padding: 20px; }
  .mp-modal-row { grid-template-columns: 1fr; gap: 10px; }
  .mp-pricing-points { grid-template-columns: 1fr; }
  .mp-custom-card { flex-direction: column; text-align: center; }
  .mp-pricing-section, .mp-custom-cta { padding: 0 16px; }
}

@media (max-width: 480px) {
  .mp-how-steps { grid-template-columns: 1fr; }
}
