/* Start CTA */
.start {
  background: var(--color-white);
  padding: 64px 0 80px;
  position: relative;
}

.start::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid var(--color-primary-dark);
  pointer-events: none;
}

.start__inner {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}

.start__heading {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.start__title {
  margin: 0 auto;
  font-size: 38px;
  line-height: normal;
  font-family: "Roboto Primary", sans-serif;
  color: var(--color-black);
  font-weight: 400;
  max-width: 750px;
}

.start__title strong {
  font-family: "Roboto Accent", sans-serif;
  font-weight: bold;
}

.start__arrow {
  position: absolute;
  left: 30px;
  top: 0px;
  width: 121px;
  height: 138px;
  pointer-events: none;
  /* scaleX(-1) flips horizontally, rotate(-30deg) then visually rotates 30deg clockwise */
  transform: scaleX(-1) rotate(-15deg);
}

.start__arrow img {
  width: 100%;
  height: 100%;
  display: block;
}

.start__arrow svg path {
  fill: var(--color-primary);
}

.start__steps {
  max-width: 860px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.start-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.start-step__title {
  margin: 0;
  font-size: 24px;
  font-family: "Roboto Primary", sans-serif;
  color: var(--color-black);
  font-weight: 400;
}
.start-step__title strong {
  font-family: "Roboto Accent", sans-serif;
  font-weight: bold;
}

.start-step__text {
  margin: 20px 0 0;
  font-size: 18px;
  font-family: "Roboto Primary", sans-serif;
  line-height: 1.4;
  color: var(--color-black);
  font-weight: 400;
}

.start-step--compact .start-step__text {
  display: none;
}

.start__cta {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .start {
    padding: 52px 0 64px;
  }
  .start__title {
    font-size: 32px;
  }
}

@media (max-width: 1150px) {
  .start__arrow {
    display: none;
  }
}
