/* ========== RENTAL HERO ========== */

.rental-hero-section {
  background:
    radial-gradient(circle at top left, rgba(255, 44, 122, 0.25), transparent 55%),
    #000000;
  color: #ffffff;
  padding: 60px 0 70px;
}

.rental-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.rental-hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff8bb4;
  margin-bottom: 6px;
}

.rental-hero-title {
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.rental-hero-subtitle {
  font-size: 0.98rem;
  color: #e5e5e5;
  max-width: 640px;
  margin: 0 auto;
}

/* ========== RENTAL CONTENT ========== */

.rental-content-section {
  padding: 50px 0 70px;
  background-color: #ffffff;
}

.rental-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: flex-start;
}

.rental-main-heading {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.rental-main p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 12px;
}

/* список преимуществ */

.rental-highlights {
  margin: 14px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.rental-highlights li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: #222222;
}

.rental-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0, #ffffff 28%, transparent 29%),
    #ff2c7a;
  box-shadow: 0 0 0 3px rgba(255, 44, 122, 0.18);
}

.rental-subheading {
  font-size: 1.05rem;
  margin: 18px 0 6px;
}

/* ASIDE CARD */

.rental-aside {
  position: relative;
}

.rental-aside-card {
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 18px 20px 20px;
  border-top: 4px solid #ff2c7a;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rental-aside-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 0;
  border-bottom: 1px solid #f1f1f1;
}

.rental-aside-row:last-child {
  border-bottom: none;
}

.rental-aside-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a8a8a;
}

.rental-aside-value {
  font-size: 0.94rem;
  font-weight: 500;
  color: #222222;
}

.rental-aside-value a {
  color: inherit;
  text-decoration: none;
}

.rental-aside-value a:hover {
  color: #ff2c7a;
}

.rental-aside-cta {
  margin-top: 10px;
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: #ff2c7a;
  color: #ffffff;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.rental-aside-cta:hover {
  background-color: #ff3f86;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* Адаптив */

@media (max-width: 900px) {
  .rental-content-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .rental-aside {
    order: -1; /* карточку можно поднять над текстом, если хочешь – можешь убрать */
  }
}

@media (max-width: 600px) {
  .rental-hero-title {
    font-size: 1.7rem;
  }
}






/* ========== RENTAL FAQ ========== */

.rental-faq-section {
  padding: 60px 0 80px;
  background-color: #f7f7f7;
}

.rental-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.rental-faq-header {
  text-align: center;
  margin-bottom: 26px;
}

.rental-faq-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ff2c7a;
  margin-bottom: 4px;
}

.rental-faq-title {
  font-size: 1.6rem;
}

/* Список аккордеона */

.rental-faq-list {
  margin-top: 18px;
  display: grid;
  gap: 8px;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

/* Кнопка вопроса */

.faq-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.faq-question {
  text-align: left;
  font-size: 0.96rem;
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #bbbbbb;
  position: relative;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: #bbbbbb;
  transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.faq-icon::before {
  top: 50%;
  left: 3px;
  right: 3px;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 2px;
  transform: translateX(-50%);
}

/* Панель ответа */

.faq-panel {
  padding: 0 18px 0;
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid #f0f0f0;
  transition: max-height 0.25s ease;
}

.faq-panel p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #444444;
  margin: 10px 0 14px;
}

/* Открытое состояние */

.faq-item.is-open .faq-icon {
  border-color: #ff2c7a;
  background-color: #ff2c7a;
  transform: rotate(90deg);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background-color: #ffffff;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0; /* превращаем + в - */
}

/* подсветка вопроса при hover */

.faq-trigger:hover .faq-question {
  color: #ff2c7a;
}
