.hero-fullbleed {
  position: relative;
  display: flex;
  min-height: 92vh;
  align-items: stretch;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 8, 9, 0.96) 0%, rgba(7, 8, 9, 0.76) 36%, rgba(7, 8, 9, 0.08) 70%),
    linear-gradient(0deg, rgba(7, 8, 9, 0.66) 0%, transparent 34%),
    url("../assets/hero-taxi.png") center 51% / cover no-repeat;
}

.hero-fullbleed::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 9, 0.44), transparent 25%),
    linear-gradient(90deg, transparent 0 72%, rgba(7, 8, 9, 0.14));
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding-top: 138px;
  padding-bottom: 130px;
}

.hero-copy {
  width: min(650px, 54%);
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(245, 245, 242, 0.74);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.hero-rates {
  position: absolute;
  bottom: 35px;
  left: var(--pad);
  display: grid;
  width: min(760px, calc(100% - var(--pad) * 2));
  grid-template-columns: 210px 210px 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.rate {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rate strong {
  color: var(--white);
  font-size: 29px;
  font-weight: 580;
  line-height: 1;
}

.rate span {
  color: rgba(245, 245, 242, 0.58);
  font-size: 11px;
  line-height: 1.35;
}

.hero-rates > p {
  margin: 0;
  color: rgba(245, 245, 242, 0.58);
  font-size: 12px;
  text-align: right;
}

.scroll-mark {
  position: absolute;
  z-index: 2;
  right: max(var(--pad), calc((100vw - var(--container)) / 2 + var(--pad)));
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(245, 245, 242, 0.64);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-mark i {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.scroll-mark i::after {
  position: absolute;
  top: 14px;
  left: 17px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  content: "";
  transform: rotate(45deg);
}
