.hero-marketplace-section {
  width: 100%;
  background: #fff;
  padding: 24px 0 0px 0;
}
.hero-marketplace-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 48px;
  justify-content: center;
}
.hero-marketplace-image-col {
  flex: 1 1 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 32px;
}
.hero-marketplace-building {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 24px 0 rgba(59,130,246,0.07);
}
.hero-marketplace-badge {
  position: absolute;
  top: 32px;
  right: -38px;
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  font-weight: 500;
  color: #222;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  transform: rotate(-18deg);
}
.hero-marketplace-badge span {
  display: block;
  text-align: center;
  width: 90px;
  font-size: 0.98rem;
  font-weight: 400;
}
.hero-marketplace-video-thumb {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: 140px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px 0 rgba(59,130,246,0.13);
  background: #2c1010;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-marketplace-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-marketplace-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(59,130,246,0.13);
  cursor: pointer;
  font-size: 1.3rem;
  color: #2563eb;
}
.hero-marketplace-content-col {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 0;
  text-align: left;
}
.hero-marketplace-title {
  font-size: 2.4rem;
  /* font-family removed, global font applies */
  font-weight: 700;
  color: var(--hr-primary, #3B82F6);
  margin-bottom: 18px;
  line-height: 1.18;
}
.hero-marketplace-desc {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-marketplace-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.hero-marketplace-features li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}
.feature-icon {
  font-size: 1.5rem;
  color: #2563eb;
  background: #f1f5ff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
}
.feature-desc {
  font-size: 0.98rem;
  color: #64748b;
}
.hero-marketplace-btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 32px;
  text-decoration: none;
  margin-top: 8px;
  box-shadow: 0 2px 8px 0 rgba(59,130,246,0.13);
  transition: background 0.2s, color 0.2s;
}
.hero-marketplace-btn:hover {
  background: #1746a2;
  color: #fff;
}
@media (max-width: 900px) {
  .hero-marketplace-section {
    padding: 12px 0 18px 0;
    flex-direction: column;
    display: flex;
    align-items: stretch;
  }
  .hero-marketplace-container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    display: flex;
  }
  .hero-marketplace-image-col, .hero-marketplace-content-col {
    width: 100%;
    max-width: 100vw;
    flex: 1 1 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .hero-marketplace-arch {
    width: 90vw;
    height: 220px;
    min-width: 0;
    min-height: 0;
    border-top-left-radius: 80px 80px;
    border-top-right-radius: 80px 80px;
  }
  .hero-marketplace-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: center;
  }
  .hero-marketplace-desc {
    font-size: 1.01rem;
    text-align: center;
  }
}