.mv-header {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background: #fff;
}
.mv-header-logo {
  flex: 0 0 28%;
  background: #fff;
  display: flex;
  align-items: center;
  padding: 6px 8px;
}
.mv-header-logo img {
  width: 100%;
  height: auto;
}
.mv-header-features {
  flex: 1;
  display: flex;
  min-width: 0;
}
.mv-header-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFFFFF!important;
  padding: 8px 2px;
  gap: 2px;
  text-decoration: none;
}
.mv-header-item--1 { background: #02bfff; }
.mv-header-item--2 { background: #15b9ce; }
.mv-header-item--3 {
  background: #006ab6;
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: -4px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s;
}
.mv-header-item--3:hover {
  background: #1e6fd4;
}
.mv-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 9px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 1px 6px;
  line-height: 1.4;
}
.mv-header-badge svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.mv-header-label {
  font-size: 10px;
  line-height: 1.2;
}
.mv-header-value {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .mv-header-label { font-size: 17px; }
  .mv-header-value { font-size: 30px; }
  .mv-header-badge { font-size: 16px; }
  .mv-header-badge svg { width: 17px; height: 17px; }
  .mv-header-item { padding: 10px 4px; }
  .mv-header-logo { padding: 8px 12px; }
}
