/* HERO */
.hero {
  position: relative;
  height: calc(100vh - 109px);
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 48px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
  gap: 40px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
  font-family: "montserrat","montserrat Fallback", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.hero-tag::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-white);
}
.hero-title {
  font-family: "poppins","poppins Fallback", sans-serif;
  font-size: clamp(40px, 5.5vw, 74px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-title span {
  font-weight: 200;
  font-style: italic;
  display: block;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--color-white);
  color: var(--color-black);
  font-family: "montserrat","montserrat Fallback", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border: 2px solid var(--color-white);
  transition: all 0.25s;
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
}
.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  font-family: "montserrat","montserrat Fallback", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.25s;
}
.btn-outline-white:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
.hero-stat-row {
  display: flex;
  gap: 32px;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: "poppins","poppins Fallback", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1;
}
.hero-stat-label {
  font-family: "montserrat","montserrat Fallback", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}
.hero-scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "montserrat","montserrat Fallback", sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-bar {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.block-hero-banner {
  align-items: flex-end !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-white);
  height: 800px;
  margin-block: 0;
  position: relative;
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: 100%;
}

.block-hero-banner .content-wrap {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
  justify-content: center;
  padding-left: 70px;
  padding-right: 70px;
  text-align: center;
}

.block-hero-banner figure {
  margin: 0;
  max-width: 350px;
  width: 100%;
}

.block-hero-banner figure img {
  width: 100%;
}

.block-hero-banner .heading {
  color: var(--color-white);
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: -0.02em;
}

.heading .banner-mobile-text {
  display: none;
  font-style: normal;
}

/* Style 2 */
.block-hero-banner.style-2 {
  height: auto;
}
.block-hero-banner.style-2 h1.hero-title {
  padding: 80px 0;
}
.block-hero-banner.style-2 .hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (width <= 1332px) {
  .heading .banner-mobile-text {
    display: inline-flex;
    margin-bottom: 30px;
  }

  .heading .form-label {
    display: none;
  }
}

@media screen and (width <= 767px) {
  .hero-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
  }
  .block-hero-banner {
    height: auto;
    min-height: auto;
    padding-top: 250px;
  }

  .block-hero-banner .content-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
