/* ===== Hero ===== */
.hero {
  display: flex;
  align-items: center;
  padding-top: 156px;
  padding-bottom: 80px;
}

.hero-content {
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.hero-badge {
  display: block;
  height: 48px;
  width: auto;
  margin: 0 auto 48px;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--grey-text);
  margin-bottom: 36px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.social-proof {
  margin-top: 120px;
}

.social-proof-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.social-proof-avatars {
  display: flex;
  align-items: center;
}

.social-proof-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--white);
  object-fit: cover;
  margin-left: -8px;
}

.social-proof-avatar:first-child {
  margin-left: 0;
}

.social-proof-rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-proof-stars {
  display: flex;
  gap: 2px;
}

.social-proof-star {
  width: 20px;
  height: 20px;
}

.social-proof-text {
  font-size: 20px;
  color: var(--grey-text);
  font-weight: 500;
}

.social-proof-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin-top: 48px;
}

.social-proof-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
  flex-wrap: nowrap;
}

.social-proof-logo-row img {
  height: clamp(20px, 3vw, 28px);
  width: auto;
  flex-shrink: 1;
  min-width: 0;
}
