.hero {
  padding: 70px 0 90px;
  overflow: hidden;
}

.hero__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.hero__left h1 {
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: var(--navy);
}

.hero__left h1 span {
  color: var(--blue);
}

.hero__left p {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 440px;
}

.hero__left p + p {
  margin-top: 10px;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__buttons .btn-primary {
  flex-basis: 100%;
  max-width: 320px;
}

.hero__msgs {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 4px;
}

.hero__map {
  position: relative;
  aspect-ratio: 1264 / 842;
  min-height: 440px;
}

.hero__map__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.rating {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 11px 14px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}

.rating img {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 7px;
}

.rating h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.rating .stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.rating .score {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.rating .stars-svg {
  width: 64px;
  height: 12px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

.r1 { top: 4%; left: 34%; animation-delay: 0s; }
.r2 { top: 20%; left: 0%; animation-delay: 0.6s; }
.r3 { top: 40%; left: 6%; animation-delay: 1.2s; }
.r4 { top: 60%; left: 22%; animation-delay: 0.9s; }
.r5 { top: 2%; right: 0%; animation-delay: 0.3s; }
.r6 { top: 22%; right: 2%; animation-delay: 1.5s; }
.r7 { top: 42%; right: 0%; animation-delay: 0.4s; }
.r8 { top: 62%; right: 4%; animation-delay: 1.1s; }
.r9 { bottom: 2%; left: 44%; animation-delay: 0.8s; }
