/* ===== MARKETPLACE SPECIFIC STYLES ===== */

/* Import Syne font used by marketplace */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&display=swap');

/* Marketplace wrapper */
.mp-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 120px;
}

/* Fade-up animation */
@keyframes mp-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mp-fade {
  animation: mp-fadeUp 0.5s ease both;
}

.mp-fade-d1 {
  animation: mp-fadeUp 0.5s ease 0.1s both;
}

.mp-fade-d2 {
  animation: mp-fadeUp 0.5s ease 0.2s both;
}

.mp-fade-d3 {
  animation: mp-fadeUp 0.5s ease 0.3s both;
}

.mp-fade-d4 {
  animation: mp-fadeUp 0.4s ease both;
}

.mp-fade-d5 {
  animation: mp-fadeUp 0.4s ease 0.08s both;
}

.mp-fade-d6 {
  animation: mp-fadeUp 0.4s ease 0.16s both;
}

/* ===== STEP 0: INTRO ===== */
.mp-intro {
  text-align: center;
}

.mp-intro-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--green-bright);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mp-intro h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.mp-intro h1 span {
  color: var(--green-bright);
}

.mp-intro-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.mp-intro-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}

.mp-intro-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border-radius: 14px;
  border: 1px solid rgba(0, 140, 0, 0.06);
}

.mp-intro-step-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.mp-intro-step-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
}

.mp-intro-step-desc {
  font-size: 13px;
  color: var(--text-secondary);
}

.mp-btn-start {
  margin-top: 36px;
  padding: 16px 40px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--green-primary), var(--green-bright));
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px var(--green-glow);
  transition: transform 0.2s;
}

.mp-btn-start:hover {
  transform: translateY(-2px);
}

/* ===== STEP BAR ===== */
.mp-stepbar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.mp-stepbar-item {
  display: flex;
  align-items: center;
  flex: 1;
}

.mp-stepbar-item:last-child {
  flex: none;
}

.mp-stepbar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 2px solid rgba(0, 140, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s;
}

.mp-stepbar-dot.active {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: var(--bg-primary);
}

.mp-stepbar-dot.done {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
}

.mp-stepbar-line {
  flex: 1;
  height: 2px;
  background: rgba(0, 140, 0, 0.1);
  margin: 0 6px;
  transition: background 0.3s;
}

.mp-stepbar-line.active {
  background: var(--green-bright);
}

/* ===== SECTION HEADINGS ===== */
.mp-heading {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.mp-heading-sm {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.mp-subtext {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.mp-subtext-sm {
  margin-bottom: 24px;
}

/* ===== SERVICE CARDS (STEP 1) ===== */
.mp-service-card {
  padding: 22px 24px;
  border-radius: 16px;
  margin-bottom: 12px;
  cursor: pointer;
  background: var(--bg-card);
  border: 2px solid rgba(0, 140, 0, 0.06);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.mp-service-card:hover {
  border-color: var(--green-bright);
  box-shadow: 0 0 20px var(--green-glow);
}

.mp-service-tag {
  position: absolute;
  top: 14px;
  right: 16px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.mp-service-tag.popular {
  background: var(--accent-warm-glow);
  color: var(--accent-warm);
  border: 1px solid rgba(232, 185, 49, 0.2);
}

.mp-service-tag.new {
  background: rgba(0, 196, 39, 0.08);
  color: var(--green-bright);
  border: 1px solid rgba(0, 196, 39, 0.2);
}

.mp-service-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mp-service-emoji {
  font-size: 36px;
  flex-shrink: 0;
}

.mp-service-body {
  flex: 1;
}

.mp-service-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.mp-service-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.mp-service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-service-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--green-bright);
  font-family: 'Syne', sans-serif;
}

.mp-service-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-bright);
}

/* ===== TIER BUTTONS ===== */
.mp-tiers {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.mp-tier-btn {
  flex: 1;
  padding: 16px 10px;
  border-radius: 14px;
  cursor: pointer;
  background: var(--bg-card);
  border: 2px solid rgba(0, 140, 0, 0.06);
  color: var(--text-primary);
  transition: all 0.2s;
  position: relative;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  box-shadow: none;
}

.mp-tier-btn.active {
  background: var(--bg-card-hover);
  border-color: var(--green-bright);
  box-shadow: 0 0 24px var(--green-glow);
}

.mp-tier-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.mp-tier-btn.active .mp-tier-label {
  color: var(--green-bright);
}

.mp-tier-price {
  font-size: 22px;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  margin-top: 4px;
  color: var(--text-primary);
}

.mp-tier-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.mp-tier-rec {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-warm-glow);
  color: var(--accent-warm);
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
  border: 1px solid rgba(232, 185, 49, 0.2);
}

/* ===== PILL TOGGLE ===== */
.mp-pill-toggle {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 16px;
}

.mp-pill-btn {
  flex: 1;
  padding: 10px 6px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-align: center;
}

.mp-pill-btn.active {
  background: var(--green-bright);
  color: var(--bg-primary);
}

.mp-pill-sub {
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

.mp-pill-btn.active .mp-pill-sub {
  color: var(--bg-card);
}

.mp-pill-btn .mp-pill-sub {
  color: var(--green-bright);
}

/* ===== INFO BOX ===== */
.mp-infobox {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
}

.mp-infobox.amber {
  background: var(--accent-warm-glow);
  color: var(--accent-warm);
  border: 1px solid rgba(232, 185, 49, 0.2);
}

.mp-infobox.green {
  background: rgba(0, 196, 39, 0.08);
  color: var(--green-bright);
  border: 1px solid rgba(0, 196, 39, 0.2);
}

/* ===== FEATURE LIST ===== */
.mp-feature-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 16px 0 6px;
}

.mp-feature-cat:not(:first-child) {
  margin-top: 8px;
}

.mp-feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 12px;
  margin-bottom: 3px;
  transition: all 0.2s;
  cursor: pointer;
}

.mp-feature-row.locked {
  background: rgba(0, 196, 39, 0.08);
  border: 1px solid rgba(0, 196, 39, 0.15);
  cursor: default;
}

.mp-feature-row.checked {
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
}

.mp-feature-row.removed {
  background: rgba(232, 69, 69, 0.06);
  border: 1px solid rgba(232, 69, 69, 0.12);
}

.mp-feature-row.disabled {
  background: transparent;
  border: 1px solid transparent;
  opacity: 0.3;
  cursor: not-allowed;
}

.mp-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.mp-feature-check.on {
  background: var(--green-bright);
  border: 2px solid var(--green-bright);
  color: var(--bg-primary);
}

.mp-feature-check.off {
  background: transparent;
  border: 2px solid var(--text-muted);
}

.mp-feature-check.removed-check {
  background: transparent;
  border: 2px solid #E84545;
}

.mp-feature-body {
  flex: 1;
  min-width: 0;
}

.mp-feature-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.2s;
}

.mp-feature-row.removed .mp-feature-name {
  text-decoration: line-through;
  color: var(--text-secondary);
}

.mp-feature-row.disabled .mp-feature-name {
  color: var(--text-muted);
}

.mp-feature-val {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.mp-feature-ded {
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  color: transparent;
  transition: color 0.2s;
}

.mp-feature-row.removed .mp-feature-ded {
  color: #E84545;
}

/* ===== SECTION LABEL ===== */
.mp-section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 12px;
}

/* ===== BACK BUTTON ===== */
.mp-btn-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  margin-top: 12px;
  padding: 0;
  transition: color 0.2s;
}

.mp-btn-back:hover {
  color: var(--text-primary);
}

/* ===== PILOT PRICING CARDS ===== */
.mp-pilot-options {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.mp-pilot-card {
  flex: 1;
  padding: 20px 16px;
  border-radius: 14px;
  cursor: pointer;
  background: var(--bg-card);
  border: 2px solid rgba(0, 140, 0, 0.06);
  transition: all 0.2s;
}

.mp-pilot-card.active {
  background: var(--bg-card-hover);
  border-color: var(--green-bright);
  box-shadow: 0 0 20px var(--green-glow);
}

.mp-pilot-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: 1px;
}

.mp-pilot-price {
  font-size: 26px;
  font-weight: 800;
  font-family: 'Syne', sans-serif;
  margin-top: 6px;
  color: var(--text-primary);
}

.mp-pilot-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ===== FORM (STEP 3) ===== */
.mp-form-group {
  margin-bottom: 16px;
}

.mp-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.mp-form-input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.mp-form-input:focus {
  border-color: var(--green-bright);
}

.mp-form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  min-height: 80px;
  resize: vertical;
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
  color: var(--text-primary);
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.mp-form-textarea:focus {
  border-color: var(--green-bright);
}

.mp-form-btns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.mp-btn-secondary {
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid rgba(0, 140, 0, 0.06);
  background: var(--bg-card);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.mp-btn-secondary:hover {
  border-color: var(--green-primary);
}

.mp-btn-next {
  flex: 1;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--green-bright);
  color: var(--bg-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.mp-btn-next:hover {
  background: var(--green-primary);
  color: #fff;
}

.mp-btn-next:disabled {
  background: rgba(0, 140, 0, 0.1);
  color: var(--text-muted);
  cursor: not-allowed;
}

/* ===== SUMMARY (STEP 4) ===== */
.mp-summary-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 140, 0, 0.06);
  margin-bottom: 16px;
}

.mp-summary-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.mp-summary-date {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.mp-summary-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.mp-summary-section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--green-bright);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.mp-summary-info {
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-secondary);
}

.mp-summary-info strong {
  color: var(--text-primary);
}

.mp-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 140, 0, 0.06);
}

.mp-summary-row-name {
  font-size: 14px;
  color: var(--text-primary);
}

.mp-summary-row-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.mp-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  margin-top: 4px;
}

.mp-summary-total-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--text-primary);
}

.mp-summary-total-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--green-bright);
}

.mp-summary-terms {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.mp-summary-terms-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.mp-summary-terms-label.amber {
  color: var(--accent-warm);
  margin-top: 14px;
  margin-bottom: 8px;
}

.mp-summary-terms-label.green {
  color: var(--green-bright);
}

.mp-sign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mp-sign-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mp-sign-box {
  border-bottom: 1px solid rgba(0, 140, 0, 0.06);
  padding-bottom: 8px;
  margin-bottom: 6px;
}

.mp-sign-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.mp-sign-role {
  font-size: 12px;
  color: var(--text-muted);
}

.mp-sign-date {
  font-size: 11px;
  color: var(--text-muted);
}

.mp-action-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.mp-btn-pdf {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--green-bright);
  color: var(--bg-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.mp-btn-pdf:hover {
  background: var(--green-primary);
  color: #fff;
}

.mp-btn-mail {
  flex: 1;
  padding: 14px 20px;
  border-radius: 12px;
  cursor: pointer;
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
  color: var(--text-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.mp-btn-mail:hover {
  border-color: var(--green-primary);
}

.mp-btn-restart {
  margin-top: 12px;
  padding: 12px 28px;
  border-radius: 12px;
  background: none;
  border: 1px solid rgba(0, 140, 0, 0.06);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.mp-btn-restart:hover {
  border-color: var(--green-primary);
}

/* ===== STICKY PRICE BAR ===== */
.mp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 14, 10, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 140, 0, 0.08);
  padding: 14px 20px;
  animation: mp-fadeUp 0.3s ease;
  display: none;
}

.mp-sticky-bar.visible {
  display: block;
}

.mp-sticky-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mp-sticky-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.mp-sticky-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--green-bright);
}

.mp-sticky-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
}

.mp-sticky-btn {
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  background: var(--green-bright);
  color: var(--bg-primary);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px var(--green-glow);
  transition: all 0.2s;
}

.mp-sticky-btn:hover {
  background: var(--green-primary);
  color: #fff;
}

/* ===== NAV CONFIG STEP FLEX ===== */
.mp-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-bottom: 80px;
}

/* ===== MISC ===== */
.mp-text-info {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.mp-text-info strong {
  color: var(--text-primary);
}

/* ===== PRINT ===== */
@media print {
  body * {
    visibility: hidden;
  }

  #mp-summary,
  #mp-summary * {
    visibility: visible;
  }

  #mp-summary {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: white !important;
    color: #111 !important;
    padding: 40px;
  }

  .navbar,
  .footer,
  .mp-sticky-bar,
  .page-header {
    display: none !important;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .mp-tiers {
    flex-direction: column;
  }

  .mp-pilot-options {
    flex-direction: column;
  }

  .mp-summary-cols {
    grid-template-columns: 1fr;
  }

  .mp-sign-grid {
    grid-template-columns: 1fr;
  }

  .mp-action-btns {
    flex-direction: column;
  }

  .mp-form-btns {
    flex-direction: column;
  }

  .mp-btn-next {
    width: 100%;
  }
}

/* ===== MULTI-SERVICE: CHECKBOXES (STEP 1) ===== */
.mp-service-card.selectable {
  cursor: pointer;
  position: relative;
}

.mp-service-card.selectable.selected {
  border-color: var(--green-bright);
  box-shadow: 0 0 24px var(--green-glow);
}

.mp-service-checkbox {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  border: 2px solid rgba(0, 140, 0, 0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--bg-primary);
}

.mp-service-checkbox.checked {
  background: var(--green-bright);
  border-color: var(--green-bright);
}

.mp-multi-info {
  background: rgba(0, 196, 39, 0.08);
  border: 1px solid rgba(0, 196, 39, 0.2);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--green-bright);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== SERVICE TABS (STEP 2) ===== */
.mp-service-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 24px;
}

.mp-service-tab {
  flex: 1;
  padding: 10px 8px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-align: center;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
}

.mp-service-tab.active {
  background: var(--green-bright);
  color: var(--bg-primary);
}

/* ===== COMPARE TABLE ===== */
.mp-compare-wrap {
  overflow-x: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mp-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 13px;
}

.mp-compare-table th {
  padding: 12px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  border-bottom: 2px solid rgba(0, 140, 0, 0.06);
  background: var(--bg-card);
}

.mp-compare-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 140, 0, 0.06);
  color: var(--text-secondary);
  font-size: 13px;
}

.mp-compare-table .cat-row td {
  padding: 14px 12px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(0, 140, 0, 0.06);
}

.mp-compare-table .rec-th {
  color: var(--accent-warm);
}

.mp-compare-table .green-th {
  color: var(--green-bright);
}

.mp-compare-table .val-check {
  color: var(--green-bright);
}

.mp-compare-table .val-dash {
  color: var(--text-muted);
}

.mp-btn-compare {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid rgba(0, 140, 0, 0.06);
  border-radius: 10px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  margin-top: 16px;
  margin-bottom: 8px;
}

.mp-btn-compare:hover {
  border-color: var(--green-bright);
  color: var(--green-bright);
}

/* ===== ANIMATED COUNTER ===== */
.mp-sticky-price {
  transition: all 0.3s ease;
}

/* ===== PRICE PARTS IN STICKY ===== */
.mp-sticky-parts {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
/* ===== AUTH MODAL ===== */
.mp-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; animation: mp-fadeUp 0.3s ease;
}
.mp-modal {
  background: var(--bg-primary); border-radius: 20px;
  border: 1px solid rgba(0,140,0,0.08); padding: 36px 32px;
  max-width: 420px; width: 100%; position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.mp-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 20px; padding: 4px;
  transition: color 0.2s;
}
.mp-modal-close:hover { color: var(--text-primary); }
.mp-modal-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: rgba(0,196,39,0.08); border: 1px solid rgba(0,196,39,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin: 0 auto 16px;
}
.mp-modal h3 {
  font-family: 'Syne', sans-serif; font-size: 22px;
  font-weight: 800; text-align: center; margin-bottom: 6px;
  color: var(--text-primary);
}

.mp-modal-desc {
  font-size: 14px; color: var(--text-secondary);
  text-align: center; margin-bottom: 24px;
}
.mp-modal .mp-form-group { margin-bottom: 12px; }
.mp-modal .mp-form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-secondary); margin-bottom: 4px; }
.mp-modal .mp-form-input { box-sizing: border-box; }
.mp-modal-error {
  background: rgba(232,69,69,0.1); border: 1px solid rgba(232,69,69,0.2);
  border-radius: 10px; padding: 8px 12px; margin-bottom: 12px;
  font-size: 13px; color: #E84545;
}
.mp-modal-success {
  background: rgba(0,196,39,0.08); border: 1px solid rgba(0,196,39,0.2);
  border-radius: 10px; padding: 8px 12px; margin-bottom: 12px;
  font-size: 13px; color: var(--green-bright);
}
.mp-modal-btn {
  width: 100%; padding: 13px; border-radius: 12px; border: none;
  cursor: pointer; margin-top: 6px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-bright));
  color: #fff; font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 6px 24px var(--green-glow);
  transition: transform 0.2s;
}
.mp-modal-btn:hover { transform: translateY(-1px); }
.mp-modal-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.mp-modal-switch {
  text-align: center; margin-top: 16px;
  font-size: 13px; color: var(--text-secondary);
}
.mp-modal-switch a {
  color: var(--green-bright); cursor: pointer;
  font-weight: 600; text-decoration: none;
}
.mp-modal-switch a:hover { text-decoration: underline; }

/* ===== PAYMENT OPTIONS (STEP 4) ===== */
.mp-payment-options {
  display: flex; gap: 10px; margin: 20px 0;
}
.mp-payment-card {
  flex: 1; padding: 20px 16px; border-radius: 14px; cursor: pointer;
  background: var(--bg-card); border: 2px solid rgba(0,140,0,0.06);
  transition: all 0.2s; text-align: center;
}
.mp-payment-card.active {
  border-color: var(--green-bright);
  box-shadow: 0 0 20px var(--green-glow);
}
.mp-payment-card.disabled {
  display: none;
}
.mp-payment-icon { font-size: 28px; margin-bottom: 8px; }
.mp-payment-label {
  font-family: 'Syne', sans-serif; font-size: 14px;
  font-weight: 700; color: var(--text-primary); margin-bottom: 4px;
}
.mp-payment-desc { font-size: 12px; color: var(--text-secondary); }

/* ===== ORDER CONFIRMATION ===== */
.mp-confirm-box {
  background: rgba(0,196,39,0.06); border: 1px solid rgba(0,196,39,0.15);
  border-radius: 16px; padding: 28px; text-align: center; margin: 20px 0;
}
.mp-confirm-icon { font-size: 48px; margin-bottom: 12px; }
.mp-confirm-box h3 {
  font-family: 'Syne', sans-serif; font-size: 20px;
  font-weight: 800; color: var(--green-bright); margin-bottom: 8px;
}
.mp-confirm-box p {
  font-size: 14px; color: var(--text-secondary); margin-bottom: 4px;
}
.mp-btn-portal {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 12px; border: none; cursor: pointer;
  background: var(--green-bright); color: var(--bg-primary);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  margin-top: 16px; text-decoration: none; transition: all 0.2s;
}
.mp-btn-portal:hover { background: var(--green-primary); color: #fff; }

/* Submit spinner */
.mp-spinner {
  display: inline-block; width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff;
  animation: mp-spin 0.6s linear infinite; vertical-align: middle;
  margin-right: 6px;
}
@keyframes mp-spin { to { transform: rotate(360deg); } }
.mp-btn-next:disabled { opacity: 0.6; cursor: not-allowed; }

/* Submit error */
.mp-submit-error {
  background: rgba(232,69,69,0.1); border: 1px solid rgba(232,69,69,0.2);
  border-radius: 10px; padding: 10px 14px; margin: 12px 0;
  font-size: 13px; color: #E84545; text-align: left;
}

@media (max-width: 640px) {
  .mp-payment-options { flex-direction: column; }
}

/* ===== FÁZA 8 — SAVE DRAFT / SOFT WALL ===== */

/* Save draft tlačidlo */
.mp-btn-save-draft {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px;
  background: rgba(0,196,39,0.08);
  border: 1px solid rgba(0,196,39,0.25);
  color: var(--green-bright);
  font-family: 'Syne', sans-serif; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: all 0.2s;
}
.mp-btn-save-draft:hover {
  background: rgba(0,196,39,0.14);
  border-color: var(--green-bright);
  transform: translateY(-1px);
}
.mp-btn-save-draft:disabled {
  opacity: 0.5; cursor: not-allowed; transform: none;
}

/* Save indikátor (fixed top-right) */
.mp-save-indicator {
  position: fixed; top: 86px; right: 20px; z-index: 9998;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}
.mp-save-indicator svg { flex-shrink: 0; }
.mp-save-indicator.saving {
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-secondary);
}
.mp-save-indicator.saved {
  background: rgba(0,196,39,0.12); border: 1px solid rgba(0,196,39,0.25);
  color: var(--green-bright);
}
.mp-save-indicator.error {
  background: rgba(232,69,69,0.12); border: 1px solid rgba(232,69,69,0.25);
  color: #E84545;
}

/* Save toast (potvrdenie po ručnom Uložiť) */
.mp-save-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 10000;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: rgba(0,196,39,0.95); color: #000;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,196,39,0.3);
  max-width: 340px;
  transform: translateX(calc(100% + 40px));
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mp-save-toast.visible { transform: translateX(0); }
.mp-save-toast svg { flex-shrink: 0; margin-top: 2px; }
.mp-save-toast strong {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 14px;
  display: block;
}

@media (max-width: 640px) {
  .mp-save-indicator { top: 72px; right: 12px; font-size: 11px; padding: 6px 10px; }
  .mp-save-toast { bottom: 16px; right: 12px; left: 12px; max-width: none; }
  .mp-form-btns { flex-direction: column; }
  .mp-form-btns button { width: 100%; }
}
