main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* HERO Section */

section#hero {
  background-image: var(--bs-primary-gradient);
  min-height: 70vh;
  display: grid;
  place-content: center;
  position: relative;
}

section#hero .hero-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 1;
}

section#hero .hero-info-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 432px;
}

section#hero .hero-title {
  --font-size: clamp(32px, 7vw, 48px);
  font-size: var(--font-size);
}

section#hero .hero-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

section#hero .hero-buttons>.btn-primary {
  width: 260px;
}

section#hero .shape {
  position: absolute;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
  background: radial-gradient(39.5% 56.1% at 69.65% 43.7%, #3E3E3F 0%, #000000 100%);
  top: 0;
  bottom: 0;
  right: 0;
  left: 50%;
}

@media screen and (max-width: 768px) {
  section#hero .hero-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  section#hero .hero-info-inner {
    max-width: 100%;
  }

  section#hero .hero-img>img {
    width: 100%;
    height: auto;
  }

  section#hero .shape {
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    width: 100%;
    height: 50%;
    left: 0;
    top: auto;
    bottom: 0;
    right: auto;
  }
}

@media screen and (max-width: 520px) {
  section#hero .hero-buttons {
    flex-direction: column;
  }

  section#hero .hero-buttons>a,
  section#hero .hero-buttons>.btn-primary {
    width: 100%;
    max-width: 300px !important;
  }
}

/* END HERO Section */


/* WHY US Section */


section#why-us .why-us-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

section#why-us .why-us-cards>.card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
  margin-inline: auto;
  max-width: 260px;
  border: 1px solid var(--bs-gray-light);
  border-radius: 12px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  text-align: center;
}

section#why-us .why-us-cards>.card>img {
  margin-inline: auto;
}

section#why-us .why-us-cards>.card>p {
  font-size: 18px;
  line-height: 26px;
}

@media screen and (max-width: 1023px) {
  section#why-us .why-us-cards {
    grid-template-columns: 1fr 1fr;
  }

  section#why-us .why-us-cards>.card {
    max-width: none;
    width: 100%;
  }

}

@media screen and (max-width: 639px) {
  section#why-us .why-us-cards {
    grid-template-columns: 1fr;
  }

  section#why-us .why-us-cards>.card {
    max-width: 300px;
    margin-inline: auto;
  }
}

/* END WHY US Section */


/* SIMULATOR Section*/

section#simulator {
  background-color: var(--bs-secondary-light);
  padding-top: 40px;
  padding-bottom: 40px;
}

section#simulator>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}


section#simulator .simulator-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section#simulator .simulator-container {
  width: fit-content;
  background-color: var(--bs-white);
  border-radius: 8px;
  padding: 20px;
}

section#simulator .simulator-form-group {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

@media screen and (max-width: 1023px) {
  section#simulator>div {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  section#simulator .simulator-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
  }

  section#simulator .simulator-container {
    width: 100%;
  }

  section#simulator .simulator-form-group {
    margin-inline: auto;
    max-width: 300px;
    width: 100%;
    flex-direction: column;
  }
}

/* END SIMULATOR Section */



/* FEATURED VEHICLES Section */



/* END FEATURED VEHICLES Section */




/* STEPS Section */

section#steps {
  background-color: var(--bs-secondary-light);
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

section#steps>div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

section#steps .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

section#steps .step-number {
  position: relative;
  --font-size: clamp(64px, 12vw, 96px);
  font-size: var(--font-size);
  overflow: hidden;
  height: calc(var(--font-size) + 12px);
  width: fit-content;
  display: block;
  margin-inline: auto;
  font-weight: bold;
  background: var(--bs-primary-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

section#steps .step-number::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 12px;
  background-color: var(--bs-secondary-light);
  box-shadow: 0px -6px 8px -4px rgba(0, 0, 0, 0.25);
}

section#steps .step-text {
  color: var(--bs-primary-dark);
}

@media screen and (max-width: 1023px) {
  section#steps .steps {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* END STEPS Section */




/* BLOG Section */

section#blog {
  margin-bottom: 80px;
}

section#blog .blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: fit-content;
  margin-inline: auto;
}

section#blog .blog-cards>article {
  margin-inline: auto;
}


@media screen and (max-width: 1023px) {
  section#blog .blog-cards {
    grid-template-columns: 1fr;
  }
}

/* END BLOG Section */