/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  clip-path: inset(0);
}

.hero::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../images/1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  will-change: transform;
  pointer-events: none;
}

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

.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  padding-block: 6rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem 1rem;
  border: 1px solid var(--color-accent);
  border-radius: 100px;
  font-size: var(--size-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(229, 9, 20, .1);
}

.hero__logo-mini {
  height: 100px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .hero__logo-mini {
    height: 80px;
  }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: .02em;
  max-width: 820px;
  text-transform: uppercase;
}

.hero__title span {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-accent);
  font-weight: 700;
  max-width: 600px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: .5rem;
}

.hero__scroll {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.4);
  font-size: var(--size-xs);
  letter-spacing: .08em;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

@media (max-width: 768px) {
  .hero::before {
    background-image: url('../images/1m.webp');
  }
}

@media (max-width: 767px) {
  .hero__inner {
    padding-block: 5rem 3rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }
}
