.home-start-sales {
  margin: clamp(18px, 2vw, 28px) 0 clamp(26px, 3vw, 44px);
}

.home-start-sales__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .78fr);
  gap: clamp(14px, 1.8vw, 26px);
  align-items: start;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  background:
    linear-gradient(135deg, transparent 0 68%, rgba(46, 33, 96, .035) 68% 100%),
    #fff;
  color: #101820;
  box-shadow: 0 18px 48px rgba(46, 33, 96, .07);
}

.home-start-sales__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, transparent 0 57%, rgba(46, 33, 96, .045) 57% 72%, transparent 72% 100%);
  pointer-events: none;
}

.home-start-sales__content {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 860px;
  padding: clamp(36px, 4vw, 56px) clamp(28px, 4vw, 48px);
}

.home-start-sales__title {
  margin: 0 0 26px;
  color: #101820;
  font-family: var(--font-ui, Arial, sans-serif);
  font-size: clamp(30px, 2.6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.home-start-sales__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.home-start-sales__field {
  display: block;
  min-width: 0;
  margin: 0;
}

.home-start-sales__field--wide,
.home-start-sales__submit,
.home-start-sales__consent,
.home-start-sales__status {
  grid-column: 1 / -1;
}

.home-start-sales__field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.home-start-sales__field input {
  width: 100%;
  height: 52px;
  border: 1px solid rgba(46, 33, 96, .14);
  border-radius: 6px;
  background: rgba(246, 245, 248, .72);
  color: #101820;
  font: inherit;
  font-size: 15px;
  outline: 0;
  padding: 0 18px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.home-start-sales__field input::placeholder {
  color: rgba(16, 24, 32, .46);
}

.home-start-sales__field input:focus {
  border-color: rgba(46, 33, 96, .42);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46, 33, 96, .08);
}

.home-start-sales__submit {
  height: 54px;
  margin-top: 6px;
  border: 0;
  border-radius: 6px;
  background: #2e2160;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.home-start-sales__submit:hover {
  background: #3d2b75;
  box-shadow: 0 14px 30px rgba(46, 33, 96, .2);
  transform: translateY(-1px);
}

.home-start-sales__consent {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(46, 33, 96, .66);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}

.home-start-sales__consent a {
  color: #2e2160;
  font-weight: 700;
  text-decoration: none;
}

.home-start-sales__consent a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-start-sales__status {
  min-height: 18px;
  color: #2e2160;
  font-size: 13px;
  font-weight: 700;
}

.home-start-sales__render {
  position: relative;
  z-index: 3;
  align-self: stretch;
  min-height: clamp(248px, 23vw, 330px);
  height: auto;
  overflow: hidden;
  margin: clamp(36px, 4vw, 56px) clamp(28px, 4vw, 48px);
  border-radius: 8px;
  background: #f6f5f4;
}

.home-start-sales__render::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(60.89deg, rgba(20, 25, 26, .28) 0%, rgba(20, 25, 26, 0) 58%);
  pointer-events: none;
}

.home-start-sales__render img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .home-start-sales__card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-start-sales__content {
    padding: 28px 20px 26px;
  }

  .home-start-sales__render {
    height: 260px;
    min-height: 0;
    margin: 0 12px 12px;
  }
}

@media (max-width: 560px) {
  .home-start-sales {
    margin: 12px 0 24px;
  }

  .home-start-sales__card {
    border-radius: 8px;
  }

  .home-start-sales__title {
    margin-bottom: 20px;
    font-size: clamp(25px, 8vw, 32px);
  }

  .home-start-sales__content {
    padding: 24px 14px 22px;
  }

  .home-start-sales__form {
    grid-template-columns: 1fr;
  }

  .home-start-sales__field input,
  .home-start-sales__submit {
    height: 50px;
  }

  .home-start-sales__render {
    height: 220px;
  }
}
