.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  background: #000;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  transform: translateZ(0);
  will-change: transform;
  pointer-events: none;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 72% 50%,
      rgba(252, 163, 17, 0.12) 0%,
      transparent 55%
    ),
    linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(20, 33, 61, 0.55) 60%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
  pointer-events: none;
}


.hero-main {
  display: flex;
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-container-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.75rem;
  padding: 8rem 3rem 4rem 5rem;
}

.hero-title {
  font-size: var(--fs-display-lg);
  line-height: var(--lh-display-lg);
  letter-spacing: var(--ls-display-lg);
  font-family: var(--font-heading);
  font-weight: var(--fw-black);
  color: var(--white);
}

.hero-description {
  font-size: var(--fs-h6);
  line-height: 1.6;
  font-weight: var(--fw-light);
  color: var(--alabaster-grey);
  max-width: 30rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  border: none;
  border-radius: 0.25rem;
  padding: 1rem 2.5rem;
  cursor: pointer;
  touch-action: manipulation;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: hover) {
  .hero-cta:hover {
    background: #d4870a;
    transform: translateY(-0.15rem);
    box-shadow: 0 0.5rem 1.5rem rgba(212, 135, 10, 0.4);
  }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  border: 0.125rem solid rgba(255, 255, 255, 0.4);
  border-radius: 0.25rem;
  padding: 1rem 2.5rem;
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .hero-cta-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-0.15rem);
  }
}


.hero-container-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 4rem 4rem 2rem;
}

.hero-img {
  width: 100%;
  max-width: 42rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 2rem rgba(252, 163, 17, 0.45))
    drop-shadow(0 0 0.5rem rgba(252, 163, 17, 0.6));
}

.text-section {
  order: 2;
}

.hero-info-container {
  order: 1;
  position: relative;
  z-index: 2;
  width: calc(100% - 4rem);
  margin: 2rem auto;
  border-radius: 1rem;
  padding: 2.5rem 5rem;
  border: 0.0625rem solid rgba(252, 163, 17, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.hero-info-icons {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 1.5rem;
}

.hero-info-icons i {
  font-size: 2rem;
  color: var(--orange);
}

.hero-info-container p {
  color: var(--alabaster-grey);
  font-size: 1.05rem;
  line-height: 2;
  font-weight: var(--fw-light);
  text-align: center;
  max-width: 72rem;
  margin: 0 auto;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0 1.5rem;
}

.hero-info-container p strong {
  color: var(--orange);
  font-weight: var(--fw-semibold);
}

.hero-info-container p::before,
.hero-info-container p::after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--orange);
  margin: 0 auto 1.25rem;
  opacity: 0.6;
}

.hero-info-container p::after {
  margin: 1.25rem auto 0;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: unset;
    padding-bottom: 8rem;
  }

  .hero-container-left {
    padding: 7rem 2rem 3rem 3rem;
  }

  .hero-container-right {
    padding: 7rem 1rem 3rem 0.5rem;
  }

  .hero-img {
    max-width: 38rem;
  }

  .hero-title {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    letter-spacing: var(--ls-h1);
  }

  .hero-info-container {
    padding: 2rem 3rem;
  }
}

@media (max-width: 912px) {
  .hero-title {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    letter-spacing: var(--ls-h2);
  }

  .hero-info-container p {
    font-size: 1.4rem;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: unset;
  }

  .hero-section::before {
    background:
      radial-gradient(
        ellipse at 50% 30%,
        rgba(252, 163, 17, 0.12) 0%,
        transparent 55%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 33, 61, 0.6) 60%, rgba(0, 0, 0, 0.7) 100%);
  }

  .hero-main {
    flex-direction: column;
    flex: 0 0 auto;
    gap: 2rem;
  }

  .hero-container-left {
    align-items: center;
    text-align: center;
    padding: 7rem 3rem 2rem;
  }

  .hero-description {
    max-width: 36rem;
  }

  .hero-container-right {
    padding: 1rem 3rem 2rem;
  }

  .hero-img {
    max-width: 28rem;
  }

  .hero-info-container {
    padding: 2rem 3rem;
  }
}

@media (max-width: 768px) {
  .hero-container-left {
    padding: 6rem 2rem 1.5rem;
  }

  .hero-title {
    font-size: var(--fs-h2);
    line-height: var(--lh-h2);
    letter-spacing: var(--ls-h2);
  }

  .hero-container-right {
    padding: 1rem 2rem 1.5rem;
  }

  .hero-img {
    max-width: 22rem;
  }

  .hero-info-container {
    padding: 1.5rem 2rem;
  }

  .hero-info-container p {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .text-section {
    order: 1;
  }

  .hero-info-container {
    order: 2;
  }
}

@media (max-width: 480px) {
  .hero-container-left {
    padding: 5.5rem 1.5rem 0.5rem;
    gap: 1rem;
  }

  .hero-title {
    font-size: var(--fs-h3);
    line-height: var(--lh-h3);
    letter-spacing: var(--ls-h3);
  }

  .hero-description {
    font-size: 0.875rem;
    max-width: 22rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    width: fit-content;
  }

  .hero-cta,
  .hero-cta-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
  }

  .hero-container-right {
    padding: 0.25rem 1.5rem 1.5rem;
  }

  .hero-img {
    max-width: 16rem;
  }

  .hero-info-container {
    padding: 1.5rem;
  }
}

@media (max-width: 320px) {
  .hero-container-left {
    padding: 5rem 0.75rem 0.5rem;
  }

  .hero-title {
    font-size: var(--fs-h4);
    line-height: var(--lh-h4);
    letter-spacing: var(--ls-h4);
  }

  .hero-description {
    font-size: 0.8rem;
  }

  .hero-cta,
  .hero-cta-secondary {
    font-size: 0.8rem;
    padding: 0.65rem 1.25rem;
  }

  .hero-container-right {
    padding: 0.25rem 0.75rem 1rem;
  }

  .hero-img {
    max-width: 13rem;
  }

  .hero-info-container {
    width: calc(100% - 1.5rem);
    padding: 1.25rem 0.75rem;
  }

  .hero-info-container p {
    font-size: 0.85rem;
  }
}
