:root {
  --mp-bg: #f3f6fb;
  --mp-surface: #ffffff;
  --mp-surface-2: #e7eef8;
  --mp-border: #cfdbea;
  --mp-text: #101c2f;
  --mp-muted: #4d617d;
  --mp-primary: #1f4f86;
  --mp-primary-strong: #163d68;
  --mp-primary-soft: #376aa3;
  --mp-shadow: 0 18px 40px rgba(16, 34, 58, 0.1);
  --mp-radius-xl: 28px;
  --mp-radius-lg: 22px;
  --mp-radius-md: 18px;
}

html {
  scroll-behavior: smooth;
}

body.marketplace-page {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--mp-text);
  background:
    radial-gradient(circle at top left, rgba(31, 79, 134, 0.05), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 18%, #f3f6fb 100%);
}

body.marketplace-page .main-page-wrapper {
  position: relative;
}

body.marketplace-page #site-header {
  position: relative;
  z-index: 100;
}

body.marketplace-page #main-content {
  position: relative;
  z-index: 1;
}

body.marketplace-page #main-content .container,
#marketplace-embed .container {
  width: 100%;
  max-width: 1690px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  body.marketplace-page #main-content .container,
  #marketplace-embed .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 768px) {
  body.marketplace-page #main-content .container,
  #marketplace-embed .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media (min-width: 1200px) {
  body.marketplace-page #main-content .container,
  #marketplace-embed .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

#marketplace-embed {
  width: 100%;
  max-width: 100%;
}

#marketplace-embed .mp-hero-band-full {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.py-xl-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mp-inline-ic,
.mp-btn-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
  align-self: center;
}

.mp-inline-ic {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
}

.mp-btn-ic {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin-right: 0;
  position: relative;
  top: 2px;
  transform: none;
}

.mp-inline-ic svg,
.mp-btn-ic svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: none;
}

.mp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  color: #fff;
  background: linear-gradient(135deg, var(--mp-primary) 0%, var(--mp-primary-soft) 100%);
  border: none;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(31, 79, 134, 0.2);
  line-height: 1;
  vertical-align: middle;
  padding: 0.9rem 1.25rem;
}

.mp-btn-primary > span,
.mp-filter-btn > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.mp-btn-primary:hover,
.mp-btn-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, var(--mp-primary-strong) 0%, var(--mp-primary) 100%);
}

.mp-eyebrow,
.mp-section-label,
.mp-partner-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--mp-primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.mp-eyebrow::before,
.mp-section-label::before,
.mp-partner-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
  align-self: center;
}

.mp-hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.mp-hero .row.align-items-center {
  row-gap: 2rem !important;
}

.mp-hero .lead {
  max-width: 820px;
  margin-bottom: 1.4rem !important;
}

.mp-hero .d-flex.flex-wrap.gap-3.mb-4 {
  margin-bottom: 1.6rem !important;
}

.mp-hero-market,
.mp-stat-card,
.mp-feature-card,
.mp-sidebar,
.mp-card,
.mp-step-card {
  border-radius: var(--mp-radius-lg);
  background: var(--mp-surface);
  box-shadow: var(--mp-shadow);
}

.mp-hero-market,
.mp-stat-card,
.mp-feature-card,
.mp-sidebar,
.mp-card,
.mp-step-card,
.mp-video-block {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.mp-hero-market::after,
.mp-stat-card::after,
.mp-feature-card::after,
.mp-card::after,
.mp-step-card::after,
.mp-video-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-120%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.mp-hero-market:hover::after,
.mp-stat-card:hover::after,
.mp-feature-card:hover::after,
.mp-card:hover::after,
.mp-step-card:hover::after,
.mp-video-block:hover::after {
  transform: translateX(120%);
}

.mp-hero-market .card-body {
  padding: 1.45rem !important;
}

.mp-mini-top {
  color: var(--mp-primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

.mp-mini-list {
  display: grid;
  gap: 0.8rem;
}

.mp-mini-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.mp-mini-badge,
.mp-card-type,
.mp-feature-pill,
.mp-video-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: #edf4fb;
  color: var(--mp-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.mp-stat-card {
  padding: 1rem 1.05rem;
  border: 1px solid var(--mp-border);
}

.mp-stat-value {
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 800;
  color: var(--mp-primary);
}

.mp-stat-label {
  margin-top: 0.4rem;
  color: var(--mp-muted);
}

.mp-partner-rail {
  padding: 1rem 0 0.35rem;
}

.mp-partner-rail--after-hero {
  padding-top: 1.8rem;
  padding-bottom: 0.3rem;
}

.mp-partner-rail-inner {
  padding: 0.95rem 1rem 0.85rem;
  border: 1px solid var(--mp-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(16, 34, 58, 0.08);
}

.mp-partner-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 0.8rem;
}

.mp-partner-marquee::before,
.mp-partner-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.mp-partner-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.mp-partner-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.mp-partner-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: mp-partner-scroll 28s linear infinite;
}

.mp-partner-marquee:hover .mp-partner-track {
  animation-play-state: paused;
}

.mp-partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.82rem;
  border: 1px solid rgba(31, 79, 134, 0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #edf4fb 100%);
  color: #16304f;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

@keyframes mp-partner-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.mp-hero-band-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 24px 16px 0;
}

.mp-hero-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 208px;
  padding: 1.8rem 1.25rem;
  border: 1px solid rgba(31, 79, 134, 0.2);
  border-radius: 22px;
  text-align: center;
  background: linear-gradient(180deg, rgba(231, 238, 248, 0.86) 0%, rgba(244, 248, 253, 0.95) 100%);
  box-shadow: 0 18px 38px rgba(16, 34, 58, 0.08);
}

.mp-hero-band-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--mp-primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 800;
}

.mp-hero-band-title {
  display: block;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
  color: #1b497b;
  background: none;
  -webkit-text-fill-color: currentColor;
  text-shadow: none;
}

.mp-hero-band-copy {
  margin: 1rem 0 0;
  color: #455a76;
  font-size: 1rem;
}

#featured {
  padding-top: 2.1rem !important;
  padding-bottom: 1.1rem !important;
}

#featured .mb-4.mb-lg-5 {
  margin-bottom: 1.9rem !important;
}

.mp-feature-card {
  padding: 1.35rem;
  border: 1px solid var(--mp-border);
}

.mp-feature-card h3,
.mp-card h3,
.mp-step-card h3 {
  margin: 0.8rem 0 0.5rem;
}

.mp-feature-media {
  overflow: hidden;
  margin-bottom: 0.95rem;
  border: 1px solid rgba(31, 79, 134, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, #f4f8fd 0%, #eaf1f8 100%);
}

.mp-feature-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.mp-feature-card:hover .mp-feature-image {
  transform: scale(1.03);
}

.mp-graphic-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 96px;
  width: 100%;
  margin-bottom: 0.85rem;
  padding: 14px 18px;
  border: 1px solid rgba(31, 79, 134, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, rgba(245, 249, 255, 0.98), rgba(234, 241, 248, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mp-graphic-placeholder::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 8px 20px rgba(16, 34, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mp-graphic-placeholder::after {
  content: '';
  position: absolute;
  left: 86px;
  right: 18px;
  top: 50%;
  height: 16px;
  transform: translateY(-50%);
  border-radius: 999px;
  opacity: 0.9;
  background:
    linear-gradient(
      90deg,
      rgba(31, 79, 134, 0.11) 0 27%,
      transparent 27% 34%,
      rgba(31, 79, 134, 0.08) 34% 61%,
      transparent 61% 68%,
      rgba(31, 79, 134, 0.06) 68% 100%
    );
}

.mp-card.featured .mp-graphic-placeholder {
  border-color: rgba(29, 78, 216, 0.16);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, rgba(231, 240, 255, 0.98), rgba(224, 234, 252, 0.98));
}

.mp-graphic-placeholder svg {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  margin: 0 0 0 13px;
  display: block;
}

.mp-graphic-placeholder svg,
.mp-graphic-placeholder svg * {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mp-graphic-placeholder--feature {
  min-height: 182px;
  margin-bottom: 0.9rem;
}

.mp-graphic-placeholder span {
  display: none;
}

#video-showcase {
  padding-top: 2.1rem !important;
  padding-bottom: 1.4rem !important;
}

.mp-video-block {
  padding: 1.2rem;
  border: 1px solid var(--mp-border);
  border-radius: var(--mp-radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(243, 248, 253, 0.97) 100%);
  box-shadow: var(--mp-shadow);
}

.mp-video-card {
  padding: 1rem;
  border: 1px solid var(--mp-border);
  border-radius: 20px;
  background: #fff;
}

.mp-video-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.mp-video-open-btn {
  flex-shrink: 0;
}

.mp-video-copy-lines {
  width: 100%;
  max-width: 820px;
  margin-top: 1rem;
}

.mp-video-copy-lines p {
  margin: 0;
  line-height: 1.55;
}

.mp-video-copy-lines span {
  display: block;
  width: 100%;
  max-width: none;
  color: var(--mp-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.mp-video-shell {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border: 1px solid rgba(31, 79, 134, 0.2);
  border-radius: 20px;
  background: linear-gradient(180deg, #dfeaf7 0%, #edf4fb 100%);
}

.mp-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  color: var(--mp-primary);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mp-video-fallback-icon {
  position: relative;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(31, 79, 134, 0.24);
  border-radius: 50%;
}

.mp-video-fallback-icon::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--mp-primary);
}

.mp-video-shell.has-video .mp-video-fallback {
  display: none;
}

.mp-demo-video,
.mp-overlay-video {
  display: block;
  width: 100%;
  height: auto;
  background: #0e1730;
}

.mp-overlay-video {
  max-height: calc(92vh - 140px);
  object-fit: contain;
  border-radius: 18px;
}

body.mp-video-open {
  overflow: hidden;
}

.mp-video-overlay[hidden] {
  display: none;
}

.mp-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.mp-video-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 36, 0.72);
  backdrop-filter: blur(6px);
}

.mp-video-overlay-dialog {
  position: relative;
  z-index: 2;
  width: min(94vw, 1320px);
  max-height: 92vh;
  margin: 4vh auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(8, 17, 36, 0.3);
}

.mp-video-overlay-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.8rem;
}

.mp-video-overlay-title {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.mp-video-overlay-close {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 14px;
  background: #edf4fb;
  color: #22354f;
  font-size: 1.8rem;
  line-height: 1;
}

.mp-video-overlay-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 0 1rem 1rem;
  overflow: auto;
}

#catalog {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#catalog .row.align-items-start,
#catalog .col-xl-3 {
  align-items: flex-start !important;
  align-self: flex-start !important;
}

.mp-sidebar {
  top: 18px;
  margin-top: 0 !important;
}

.mp-sidebar .card-body {
  padding: 1.15rem !important;
}

.mp-sidebar .mb-3 {
  margin-bottom: 0.9rem !important;
}

.form-control,
.form-control:focus {
  border-color: var(--mp-border);
  box-shadow: none;
}

.mp-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.92rem 1rem;
  border: 1px solid var(--mp-border);
  border-radius: 14px;
  background: #ffffff;
  color: var(--mp-text);
  text-align: left;
  font-weight: 600;
  line-height: 1;
}

.mp-filter-btn:hover,
.mp-filter-btn:focus,
.mp-filter-btn.active {
  border-color: rgba(31, 79, 134, 0.26);
  background: #e7eef8;
  color: var(--mp-primary);
}

.mp-result-box {
  margin-top: 1rem !important;
  padding: 1rem;
  border: 1px solid var(--mp-border);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfe 0%, #eef4fb 100%);
}

.mp-result-count {
  margin-top: 0.3rem;
  color: var(--mp-primary);
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
}

.mp-card {
  overflow: hidden;
  border: 1px solid var(--mp-border) !important;
  border-radius: var(--mp-radius-lg);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.mp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 79, 134, 0.2) !important;
  box-shadow: 0 22px 44px rgba(16, 34, 58, 0.12);
}

.mp-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
}

.mp-card .card-body {
  padding: 1.2rem !important;
}

.mp-card h3 {
  margin: 0.7rem 0 0.45rem;
}

.mp-card p {
  margin-bottom: 0.75rem;
}

.mp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem !important;
}

.mp-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: #eaf1f8;
  color: #35577f;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.mp-list {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  margin-bottom: 0.95rem !important;
  padding-left: 1.1rem;
  color: var(--mp-muted);
}

.mp-list li::marker {
  color: var(--mp-primary);
}

.mp-item.is-hidden {
  display: none;
}

#how {
  padding-top: 4rem !important;
  padding-bottom: 4.7rem !important;
}

#how .row.g-3 {
  row-gap: 0.9rem !important;
}

.mp-step-card {
  height: 100%;
  padding: 1.15rem;
  border: 1px solid var(--mp-border);
}

.mp-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(31, 79, 134, 0.14), rgba(55, 106, 163, 0.18));
  color: var(--mp-primary);
  font-weight: 800;
  line-height: 1;
}

[data-mp-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--mp-reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-mp-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1199.98px) {
  .mp-sidebar {
    position: static !important;
  }
}

@media (max-width: 991.98px) {
  body.marketplace-page #main-content .container,
  #marketplace-embed .container {
    width: min(100vw - 32px, 1780px);
  }

  .display-5 {
    font-size: calc(1.5rem + 2vw);
  }

  .mp-hero.mt-60 {
    margin-top: 0.75rem !important;
  }

  .mp-hero {
    padding-top: 1.75rem !important;
    padding-bottom: 3.4rem !important;
  }

  #featured,
  #catalog,
  #how,
  #video-showcase {
    padding-top: 2.6rem !important;
    padding-bottom: 2rem !important;
  }

  .mp-partner-marquee::before,
  .mp-partner-marquee::after {
    width: 44px;
  }

  .mp-hero-band-full {
    padding: 0;
  }

  #marketplace-embed .mp-hero-band-full {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .mp-video-shell {
    min-height: 240px;
  }
}

@media (max-width: 767.98px) {
  body.marketplace-page {
    background:
      radial-gradient(circle at top center, rgba(31, 79, 134, 0.03), transparent 38%),
      linear-gradient(180deg, #ffffff 0%, #fafcff 20%, #f3f6fb 100%);
  }

  body.marketplace-page #main-content .container,
  #marketplace-embed .container {
    width: min(100vw - 24px, 1780px);
  }

  .mp-partner-rail {
    padding-top: 0.45rem;
  }

  .mp-partner-rail--after-hero {
    padding-top: 1.1rem;
  }

  .mp-partner-rail-inner {
    padding: 0.8rem 0.8rem 0.65rem;
  }

  .mp-partner-track {
    gap: 0.6rem;
    animation-duration: 20s;
  }

  .mp-partner-pill {
    min-height: 34px;
    padding: 0.4rem 0.72rem;
    font-size: 0.74rem;
  }

  .mp-hero.mt-60 {
    margin-top: 0.2rem !important;
  }

  .mp-hero {
    padding-top: 1.05rem !important;
    padding-bottom: 0.8rem !important;
  }

  .mp-hero .row.align-items-center {
    row-gap: 1.35rem !important;
  }

  .mp-hero-market .card-body,
  .mp-card .card-body,
  .mp-sidebar .card-body,
  .mp-feature-card,
  .mp-step-card {
    padding: 1rem !important;
  }

  .mp-graphic-placeholder {
    min-height: 84px;
    padding: 12px 14px;
  }

  .mp-graphic-placeholder::before {
    left: 12px;
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    transform: translateY(-50%);
  }

  .mp-graphic-placeholder::after {
    left: 70px;
    right: 14px;
    top: 50%;
    height: 14px;
    transform: translateY(-50%);
  }

  .mp-graphic-placeholder svg {
    width: 22px;
    height: 22px;
    margin: 0 0 0 11px;
  }

  .mp-graphic-placeholder--feature {
    min-height: 160px;
  }

  .mp-video-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .mp-video_copy-lines span {
    font-size: 0.92rem;
  }

  .mp-video-shell {
    min-height: 190px;
  }

  .mp-video-overlay-dialog {
    width: 96vw;
    max-height: 96vh;
    margin: 2vh auto;
    border-radius: 18px;
  }

  .mp-video-overlay-head {
    padding: 0.8rem 0.8rem 0.7rem;
  }

  .mp-video-overlay-body {
    padding: 0 0.8rem 0.8rem;
  }

  .mp-overlay-video {
    max-height: calc(96vh - 120px);
    border-radius: 14px;
  }
}

.mp-sidebar-portrait-wrap {
  width: 100%;
}

.mp-sidebar-portrait-card {
  margin: 0;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(31, 79, 134, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, #f4f8fd 0%, #eaf1f8 100%);
  box-shadow: 0 16px 34px rgba(16, 34, 58, 0.1);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mp-sidebar-portrait-card[data-category="plattform"] {
  border-color: rgba(37, 99, 235, 0.2);
  background: linear-gradient(180deg, rgba(239, 246, 255, 0.98) 0%, rgba(219, 234, 254, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.14);
}

.mp-sidebar-portrait-card[data-category="dashboard"] {
  border-color: rgba(15, 118, 110, 0.2);
  background: linear-gradient(180deg, rgba(240, 253, 250, 0.98) 0%, rgba(204, 251, 241, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.14);
}

.mp-sidebar-portrait-card[data-category="portal"] {
  border-color: rgba(2, 132, 199, 0.2);
  background: linear-gradient(180deg, rgba(240, 249, 255, 0.98) 0%, rgba(224, 242, 254, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(2, 132, 199, 0.14);
}

.mp-sidebar-portrait-card[data-category="delivery"] {
  border-color: rgba(234, 88, 12, 0.22);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.98) 0%, rgba(254, 215, 170, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(234, 88, 12, 0.14);
}

.mp-sidebar-portrait-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}


.mp-market-lanes {
  padding: 1.2rem 0 0.35rem;
}

.mp-market-lanes-shell {
  padding: 1.4rem;
  border: 1px solid rgba(31, 79, 134, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 253, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(16, 34, 58, 0.08);
}

.mp-market-lanes-head {
  max-width: 100%;
}

.mp-market-lane {
  position: relative;
  display: grid;
  gap: 0.72rem;
  width: 100%;
  min-height: 100%;
  padding: 1.35rem 1.2rem 1.2rem;
  text-align: left;
  border: 1px solid rgba(31, 79, 134, 0.14);
  border-radius: 24px;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(16, 34, 58, 0.12);
  transition: box-shadow 0.22s ease, border-color 0.22s ease;
}

.mp-market-lane::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%);
  pointer-events: none;
}


.mp-market-lane--mapper {
  background: linear-gradient(135deg, #1f4f86 0%, #2c629c 52%, #3f78b5 100%);
}

.mp-market-lane--ldp {
  background: linear-gradient(135deg, #0f766e 0%, #15857d 52%, #1d968e 100%);
}

.mp-market-lane--apis {
  background: linear-gradient(135deg, #ea580c 0%, #f06a17 48%, #f68734 100%);
}

.mp-market-lane-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mp-market-lane strong {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #fff;
}

.mp-market-lane small {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.94rem;
  line-height: 1.58;
  color: rgba(255, 255, 255, 0.92);
}

.mp-market-lane-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-top: 0.2rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}



.mp-market-banner {
  padding: 1.1rem 0 0.35rem;
}

.mp-market-banner-card {
  width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

.mp-market-banner-slider {
  display: grid;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}

.mp-market-banner-image {
  grid-area: 1 / 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 0;
  border-radius: 14px;
  box-shadow: none;
  opacity: 0;
  transition: opacity 0.95s ease-in-out;
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.mp-market-banner-image.is-active {
  opacity: 1;
}

@media (max-width: 767.98px) {
  .mp-video-card {
    padding: 0.85rem;
  }

  .mp-video-card-top {
    margin-bottom: 0.7rem;
  }

  .mp-video-shell {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .mp-demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
  }
}

@media (max-width: 767.98px) {
  .mp-btn-primary {
    padding: 0.64rem 0.88rem;
    border-radius: 11px;
    font-size: 0.9rem;
    gap: 0.38rem;
    box-shadow: 0 7px 14px rgba(31, 79, 134, 0.14);
  }

  .mp-btn-ic {
    width: 13px;
    height: 13px;
    min-width: 13px;
    min-height: 13px;
  }

  .mp-video-block .d-flex.flex-wrap.gap-3 {
    gap: 0.55rem !important;
  }
}