.gt-hero {
  position: relative;
  padding: 80px 0 60px;
  display: flex;
  align-items: center;
}

.gt-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.gt-hero__heading {
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: 72px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}

.gt-hero__subheading {
  font-family: var(--font-syne);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
  max-width: 780px;
}

.gt-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
}

.gt-hero__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 6px;
}

.gt-hero__badge-label {
  font-family: var(--font-syne);
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #ffffff;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .gt-hero__heading {
    font-size: 56px;
  }
  .gt-hero__subheading {
    font-size: 20px;
  }
}

@media (max-width: 1023px) {
  .gt-hero {
    padding: 48px 0 32px;
  }
}

@media (max-width: 767px) {
  .gt-hero {
    padding: 28px 0 20px;
  }
  .gt-hero__content {
    gap: 24px;
  }
  .gt-hero__heading {
    font-size: 34px;
  }
  .gt-hero__subheading {
    font-size: 15px;
  }
  .gt-hero__badges {
    gap: 20px;
  }

  .gt-hero__badge-icon img {
    width: 36px;
    height: 36px;
  }
  .gt-hero__badge-label {
    font-size: 12px;
  }
}
