.pr1 {
  top: 20px;
}

.pr2 {
  padding-top: 9rem;
}

.landing-cta {
  margin-bottom: 15px;
  line-height: 1.15;
  padding-left: 20px;
  padding-right: 20px;
}

.landing-menu-button {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
}

.landing-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.header-cta {
  display: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 144, 0, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
  backdrop-filter: blur(10px);
}

.bg-hero-bg {
  background-image:
    radial-gradient(circle at 50% 0%, rgba(255, 144, 0, 0.18), transparent 34rem),
    linear-gradient(180deg, #050505 0%, #0d0d0d 52%, #000000 100%);
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 56px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.35;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 110px;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.78);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% 10%;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 144, 0, 0.22), transparent 68%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 144, 0, 0.64);
  background:
    linear-gradient(145deg, rgba(255, 144, 0, 0.14), rgba(255, 255, 255, 0.03)),
    rgba(14, 14, 14, 0.88);
}

.product-card--accent {
  background:
    linear-gradient(145deg, rgba(255, 144, 0, 0.24), rgba(255, 255, 255, 0.04)),
    rgba(22, 14, 3, 0.88);
}

.product-card__eyebrow,
.product-card__cta {
  position: relative;
  color: #ff9000;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.product-card h3 {
  position: relative;
  max-width: 310px;
  margin: 52px 0 18px;
  font-family: "Unbounded", "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.14;
}

.product-card p {
  position: relative;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.42;
}

.works-item p {
  font-size: 22px;
}

.works-item:nth-child(even) {
  text-align: left;
}

.steps-block,
.faq-block,
.final-cta {
  margin-top: 96px;
}

.steps-block h2,
.faq-block h2,
.final-cta h2 {
  font-family: "Unbounded", "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1.12;
}

.steps-block h2,
.faq-block h2 {
  margin-bottom: 26px;
  font-size: 42px;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-item {
  min-height: 245px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.48);
}

.step-item span {
  display: block;
  margin-bottom: 34px;
  color: #ff9000;
  font-family: "Unbounded", "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.step-item h3 {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.step-item p,
.faq-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.42;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(9, 9, 9, 0.74);
}

.faq-grid summary {
  cursor: pointer;
  padding: 22px 24px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.faq-grid p {
  padding: 0 24px 22px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 144, 0, 0.26), rgba(255, 144, 0, 0.05)),
    rgba(0, 0, 0, 0.76);
  box-shadow: inset 0 0 0 1px rgba(255, 144, 0, 0.24);
}

.final-cta p {
  margin-bottom: 10px;
  color: #ff9000;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 36px;
}

.final-cta span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 700;
}

.final-cta .btn_primary {
  min-width: 230px;
}

@media (min-width: 1024px) {
  .landing-menu-button {
    display: none;
  }

  .header .header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }

  .header .menu__list {
    gap: 38px;
  }

  .header-cta {
    display: flex;
    width: auto;
    height: 46px;
    min-width: 0;
    max-width: none;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-size: 13px;
    line-height: 1;
  }

  .hero-proof {
    justify-content: flex-start;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .pr1 {
    top: 0;
    min-height: 50px !important;
  }

  .pr2 {
    padding-top: 50px !important;
  }

  .works-item p {
    font-size: 18px;
  }

  .hero-proof {
    gap: 7px;
    margin-top: 6px;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .section-lead {
    margin-bottom: 34px;
    font-size: 15px;
  }

  .product-grid,
  .steps-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    gap: 12px;
    margin-bottom: 66px;
  }

  .product-card {
    min-height: 270px;
    padding: 22px;
  }

  .product-card h3 {
    margin-top: 36px;
    font-size: 23px;
  }

  .product-card p,
  .step-item p,
  .faq-grid p {
    font-size: 15px;
  }

  .steps-block,
  .faq-block,
  .final-cta {
    margin-top: 62px;
  }

  .steps-block h2,
  .faq-block h2 {
    font-size: 27px;
  }

  .step-item {
    min-height: 0;
    padding: 22px;
  }

  .step-item span {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .faq-grid summary {
    padding: 20px;
    font-size: 16px;
  }

  .faq-grid p {
    padding: 0 20px 20px;
  }

  .final-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .final-cta h2 {
    font-size: 24px;
  }

  .final-cta .btn_primary {
    width: 100%;
    min-width: 0;
  }
}
