.hero {
    position: relative;
    width: 100%;
    height: 860px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #14181D;
  }

  .hero__video,
  .hero__thumbnail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 14, 18, 0.75) 0%,
      rgba(10, 14, 18, 0.35) 35%,
      rgba(10, 14, 18, 0.45) 65%,
      rgba(10, 14, 18, 0.88) 100%
    );
    z-index: 1;
  }

  .hero__container {
    position: relative;
    z-index: 2;
    width: 1312px;
    max-width: 100%;
    padding: 0 24px 70px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    max-width: 900px;
  }

  .hero__heading {
    font-family: 'Google Sans', 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 86px;
    line-height: 122%;
    letter-spacing: -3%;
    color: #FEFEFE;
    margin: 0;
  }

  .hero__heading-line {
    display: block;
  }

  .hero__heading-underline-wrap {
    position: relative;
    display: inline-block;
  }

  .hero__underline {
    position: absolute;
    left: 2px;
    bottom: -6px;
    width: 100%;
    height: auto;
    pointer-events: none;
  }

  .hero__text {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #FEFEFE;
    margin-top: 28px;
    max-width: 460px;
  }

  .hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-shrink: 0;
    padding-bottom: 6px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #F37720;
    box-shadow: 0px 2px 4px 0px #18222D0F, 0px 6px 20px 0px #18222D1F;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #FEFEFE;
    padding: 19px 32px;
    border-radius: 57px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }

  .btn-primary:hover {
    background: #E06810;
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px 0px #18222D1A, 0px 10px 28px 0px #18222D2A;
  }

  .btn-primary:focus-visible {
    outline: 2px solid #FEFEFE;
    outline-offset: 3px;
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    line-height: 26px;
    color: #FEFEFE;
    cursor: pointer;
    padding: 15px;
    background: transparent;
    border: none;
    font-family: 'Inter Tight', sans-serif;
    font-weightx 4px;
    white-space: nowrap;
    text-decoration: none;
  }

  .btn-secondary svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .btn-secondary:hover svg {
    transform: translateX(4px);
  }

  .btn-secondary:focus-visible {
    outline: 2px solid #FEFEFE;
    outline-offset: 3px;
    border-radius: 4px;
  }

  @media (max-width: 1024px) {
    .hero__heading {
      font-size: 60px;
    }
    .hero__container {
      gap: 24px;
    }
    .hero {
      height: auto;
      min-height: 700px;
      padding-top: 100px;
    }
    .btn-primary {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 20px;
}
    .btn-secondary {
      gap: 16px;
      font-size: 16px;
      line-height: 24px;
      padding: 12px;
}
  }

  @media (max-width: 767px) {
    .hero__heading {
      font-size: 36px;
    }
    .hero__container {
    gap: 24px;
    display: flex;
    flex-direction: column;
}
    .hero {
    height: auto;
    min-height: 812px;
    padding-top: 100px;
}
    .hero__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    padding-bottom: 6px;
    width: 100%;
    justify-content: center;
    align-items: center;
}
    .btn-primary {
    font-size: 16px;
    width: 100%;
}
    .hero__container {
    padding: 0 24px 36px;
}
  }

  @media (prefers-reduced-motion: reduce) {
    .btn-primary, .btn-secondary svg {
      transition: none;
    }
  }