.section--rent-v2 {
  padding: clamp(24px, 4vw, 40px) 0;
  background: #332A25;
}

.rent-v2 {
  position: relative;
  background: #fff;
  border-radius: clamp(16px, 2vw, 22px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .15);
  padding: clamp(16px, 2.2vw, 28px);
  overflow: visible;
}

.rent-v2__grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(320px, 520px) minmax(320px, 420px);
  align-items: center;
  gap: clamp(16px, 2.4vw, 32px);
}

.rent-v2__pic {
  background: #F6F6F6;
  border-radius: clamp(14px, 1.6vw, 18px);
  padding: clamp(12px, 1.4vw, 18px);
}

.rent-v2__pic img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.rent-v2__title {
  margin: 0 0 14px;
  font-weight: 600;
  line-height: 1.1;
  color: #2E2622;
  text-align: center;
  font-size: clamp(26px, 3vw, 48px);
}

.rent-v2__lead {
  margin: 0;
  text-align: center;
  color: #2E2622;
  opacity: .9;
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.45;
}

.rent-v2__form-card {
  background: #2E2622;
  color: #fff;
  border-radius: clamp(14px, 1.6vw, 18px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .25);
  padding: clamp(16px, 1.8vw, 22px);
}

.rent__form-title {
  display: block;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.rent__form-row {
  margin-bottom: 14px;
}

.rent__form-input {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #fff;
  color: #2E2622;
  padding: 0 14px;
}

.rent__form-input::placeholder {
  color: #7E7E7E;
}

.rent__form-btn {
  width: 100%;
  height: 52px;
  border-radius: 8px;
  border: 3px solid #FF6E25;
  background: none;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rent__form-agree {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  opacity: .85;
}

.rent__form-agree a {
  color: #fff;
  text-decoration: underline;
}

.rent-v2__gift {
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 144px;
  height: auto;
}

.rent-v2__probe-mini {
  display: none;
}

@media (max-width: 1024px) {
  .rent-v2__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "pic form"
      "text form";
  }

  .rent-v2__col--pic { grid-area: pic; }
  .rent-v2__col--text { grid-area: text; }
  .rent-v2__col--form { grid-area: form; }
}

@media (max-width: 767.98px) {
  .rent-v2 {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .rent-v2__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "form";
    gap: 12px;
  }

  .rent-v2__col--pic {
    display: none;
  }

  .rent-v2__title,
  .rent-v2__lead {
    text-align: center;
  }

  .rent-v2__form-card {
    padding: 16px;
    border-radius: 16px;
  }

  .rent-v2__gift {
    display: block;
    left: -38px;
    top: -74px;
    bottom: auto;
    width: clamp(60px, 52vw, 120px);
    z-index: 2;
    transform: rotate(-24deg);
  }

  .rent-v2__probe-mini {
    display: block;
    position: absolute;
    right: 0;
    bottom: -58px;
    width: clamp(60px, 52vw, 120px);
    transform: rotate(12deg);
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .18));
    z-index: 2;
  }
}
