/* === SECTIONS: why, partners, city links === */

.mh-why__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.mh-why__list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.mh-why__item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}

.mh-why__num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
}

.mh-why__title {
  font-weight: 900;
  color: var(--gray-900);
}

.mh-why__desc {
  color: var(--gray-600);
  font-weight: 600;
}

.mh-why__cta {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.mh-why__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 10px 14px;
}

.mh-why__rating-num {
  font-weight: 900;
  color: var(--gray-900);
  font-size: 1.2rem;
}

.mh-why__rating-stars {
  color: var(--warning);
}

.mh-why__phone {
  height: 475px;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 40% 30%, rgba(114, 203, 214, 0.35) 0%, rgba(0, 80, 122, 0.12) 60%, rgba(0, 0, 0, 0) 100%);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.mh-why__stores {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.mh-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-weight: 800;
}

.mh-partners .mh-logo-strip {
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mh-logo-strip__track {
  display: flex;
  gap: 18px;
  padding: 16px;
  animation: mhAutoScroll 24s linear infinite;
}

.mh-logo {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-weight: 900;
  filter: grayscale(1);
  transition: filter 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-logo:hover {
  filter: grayscale(0);
  color: var(--primary);
}

.mh-citylinks__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mh-city {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.mh-city__title {
  font-weight: 900;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.mh-city__link {
  display: block;
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray-200);
  color: var(--gray-800);
  font-weight: 600;
}

.mh-city__link:last-child {
  border-bottom: none;
}

