/* Marketplace Sales — redesign */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&display=swap');

:root {
  --mp-navy: #012652;
  --mp-navy-deep: #0a1630;
  --mp-gold: #d4af37;
  --mp-gold-btn: #e8a33a;
  --mp-blue: #0b4ab7;
  --mp-text: #1e293b;
  --mp-muted: #475569;
  --mp-line: #d5dde8;
  --mp-serif: 'Source Serif 4', Georgia, serif;
  --mp-sans: 'Inter', 'Open Sans', Arial, sans-serif;
}

.page-mp-redesign {
  font-family: var(--mp-sans);
  color: var(--mp-text);
  background: #fff;
}

.page-mp-redesign .site-footer-nav .container {
  width: 98% !important;
  max-width: 98% !important;
}

.mp-page {
  width: 98%;
  max-width: 98%;
  margin: 0 auto;
  padding: 0 0 28px;
}

.mp-hero {
  background: linear-gradient(135deg, #012652 0%, #0a2a5c 55%, #123a72 100%);
  border-radius: 8px;
  padding: 48px 40px;
  margin-bottom: 36px;
  color: #fff;
}

.mp-hero-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mp-gold);
}

.mp-hero-title {
  margin: 0 0 12px;
  font-family: var(--mp-sans);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}

.mp-hero-text {
  margin: 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}

.mp-intro {
  margin-bottom: 32px;
  padding: 24px 26px;
  border: 1px solid var(--mp-line);
  border-radius: 10px;
  background: #fff;
}

.mp-intro h2 {
  margin: 0 0 10px;
  font-family: var(--mp-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--mp-navy);
}

.mp-intro p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--mp-muted);
}

.mp-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.mp-card {
  border: 1px solid var(--mp-line);
  border-radius: 10px;
  padding: 26px 24px;
  background: #fff;
}

.mp-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mp-card-logo {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.mp-card-logo img {
  max-width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.mp-card h3 {
  margin: 0;
  font-family: var(--mp-sans);
  font-size: 20px;
  font-weight: 800;
  color: var(--mp-navy);
}

.mp-card h4 {
  margin: 0 0 10px;
  font-family: var(--mp-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--mp-blue);
}

.mp-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--mp-muted);
}

.mp-card-label {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-navy);
}

.mp-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.mp-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--mp-muted);
}

.mp-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mp-gold);
}

.mp-capabilities {
  border: 1px solid var(--mp-line);
  border-radius: 10px;
  padding: 28px 24px;
  margin-bottom: 28px;
  text-align: center;
  background: #fff;
}

.mp-capabilities h2 {
  margin: 0 0 8px;
  font-family: var(--mp-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--mp-navy);
}

.mp-capabilities-lead {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--mp-muted);
}

.mp-cap-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}

.mp-cap-pill {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--mp-navy);
  font-size: 13px;
  font-weight: 700;
}

.mp-capabilities-foot {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mp-muted);
}

.mp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: var(--mp-navy-deep);
  border-radius: 8px;
}

.mp-cta h2 {
  margin: 0;
  font-family: var(--mp-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  color: #fff;
}

.mp-cta-btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--mp-gold-btn);
  color: #012652;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.mp-cta-btn:hover {
  color: #012652;
  text-decoration: none;
}

@media (max-width: 991px) {
  .mp-platforms {
    grid-template-columns: 1fr;
  }

  .mp-hero {
    padding: 36px 24px;
  }
}

@media (max-width: 575px) {
  .mp-list {
    grid-template-columns: 1fr;
  }

  .mp-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
