/* ============================================================
       01. HERO
    ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__content {
  width: 100%;
  padding-top: 160px;
  padding-bottom: var(--sp-lg);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(250, 152, 47, 0.12);
  border: 1px solid rgba(250, 152, 47, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--global-button-font-family);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--global-palette10);
  text-transform: capitalize;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-sm);
}

.hero__headline {
  font-family: var(--global-heading-font-family);
  font-weight: 700;
  font-size: var(--fs-hero);
  color: var(--global-palette3);
  text-transform: capitalize;
  max-width: 1100px;
  margin-bottom: var(--sp-sm);
}

.hero__headline .accent {
  background: var(--global-palette-btn-bg);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-family: "Barlow", sans-serif;
  font-size: var(--fs-lg);
  color: var(--global-palette7);
  max-width: 1100px;
  line-height: 1.6;
  margin-bottom: var(--sp-lg);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  margin-bottom: var(--sp-xl);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-number {
  font-family: var(--global-heading-font-family);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--global-palette10);
  line-height: 1;
}

.hero__stat-label {
  font-family: "Barlow", sans-serif;
  font-size: var(--fs-sm);
  color: var(--global-palette7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hero__trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}
