.hero {
  position: relative;
  z-index: 1;
  height: 810px;
  display: flex;
  flex-direction: column;
  color: #fff;
  /* overflow: hidden; */
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: 1376px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero__content {
  margin-top: 120px;

  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__countries {
  display: flex;
  align-items: center;
  height: 96px;
  width: 100%;
  max-width: 912px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 22px;
  overflow: hidden;
}

.hero-country {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  text-decoration: none;
  color: #000;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.hero-country:last-child {
  border-right: none;
}

.hero-country img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.hero__title {
  margin: 0;
  font-size: 72px;
  font-weight: 500;
  line-height: 0.9;
}

.hero__subtitle {
  margin-top: 20px;
  max-width: 540px;
}

.hero__subtitle-line {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

/* Между 1×br и 2×br: ~38px (не зависит от <br> в тексте) */
.hero__subtitle-line + .hero__subtitle-line {
  margin-top: 38px;
}

.hero__bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 32px;
}

.hero__stats {
  display: flex;
  gap: 20px;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 212px;
}

.hero-stat__value {
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.hero-stat__label {
  font-size: 17px;
  line-height: 1.3;
}

.hero-contact {
  width: 377px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

.hero-contact__title {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
}

.hero-contact__note {
  margin: 0;
  font-size: 14px;
  opacity: 0.66;
}

/* КНОПКА */

.btn-primary {
  height: 36px;
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  color: #fff;
  font-weight: 600;
  font-size: 13px;

  cursor: pointer;
  transition: 0.2s;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.35);
}