/* === SECTION: Hero + quick access === */

.mh-hero {
  padding: 48px 0 26px;
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.mh-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.mh-hero__title {
  font-size: var(--text-5xl);
  line-height: 1.1;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 0 18px;
}

.mh-city-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: auto;
  padding-bottom: 10px;
  margin-bottom: 14px;
}

.mh-city-tabs__tab {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-weight: 700;
  color: var(--gray-800);
  white-space: nowrap;
}

.mh-city-tabs__tab.is-active {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.mh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mh-hero__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.mh-hero__card-title {
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.mh-hero__card-sub {
  color: var(--gray-600);
}

.mh-hero__illustration {
  height: 220px;
  margin-top: 14px;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at 30% 30%, rgba(114, 203, 214, 0.35) 0%, rgba(0, 80, 122, 0.08) 60%, rgba(0, 0, 0, 0) 100%);
}

.mh-quick {
  padding: 18px 0 0;
}

.mh-quick__row {
  display: flex;
  gap: 14px;
  overflow: auto;
  padding: 10px 2px 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}

.mh-quick__row::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.mh-quick__item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  min-width: 108px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--gray-800);
}

.mh-quick__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.1rem;
}

