.ev-rental-guide {
  padding: 96px 0;
  background: #fff;
  border-top: 1px solid #edf0f2;
  border-bottom: 1px solid #edf0f2;
  scroll-margin-top: 90px;
}

.ev-rental-guide__heading {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: end;
}

.ev-rental-guide__heading h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.55rem, 5vw, 4.8rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.ev-rental-guide__intro {
  color: var(--ev-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.ev-rental-guide__intro p {
  margin: 0 0 13px;
}

.ev-rental-guide__intro p:last-child {
  margin-bottom: 0;
}

.ev-rental-guide__intro strong {
  color: var(--ev-text);
}

.ev-rental-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 48px;
}

.ev-rental-path {
  border: 1px solid var(--ev-border);
  border-radius: 20px;
  background: #fbfcfc;
  overflow: clip;
  box-shadow: 0 7px 24px rgba(15,23,32,.04);
}

.ev-rental-path[open] {
  background: #fff;
  box-shadow: var(--ev-shadow-soft);
}

.ev-rental-path > summary {
  display: grid;
  grid-template-columns: auto minmax(0,1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  cursor: pointer;
  list-style: none;
}

.ev-rental-path > summary::-webkit-details-marker,
.ev-rental-faq summary::-webkit-details-marker {
  display: none;
}

.ev-rental-path__badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--ev-dark);
  color: #fff;
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.ev-rental-path__badge--store {
  background: #eef2f4;
  color: var(--ev-dark);
}

.ev-rental-path__summary-copy strong,
.ev-rental-path__summary-copy small {
  display: block;
}

.ev-rental-path__summary-copy strong {
  font-size: 1.13rem;
  letter-spacing: -.02em;
}

.ev-rental-path__summary-copy small {
  margin-top: 5px;
  color: var(--ev-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.ev-rental-path__toggle {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ev-border);
  border-radius: 50%;
  background: #fff;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .18s ease;
}

.ev-rental-path[open] .ev-rental-path__toggle {
  transform: rotate(45deg);
}

.ev-rental-path__body {
  padding: 0 22px 24px;
}

.ev-rental-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  counter-reset: ev-rental-step;
}

.ev-rental-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  counter-increment: ev-rental-step;
  padding: 0 0 22px;
}

.ev-rental-steps li:last-child {
  padding-bottom: 0;
}

.ev-rental-steps li::before {
  content: counter(ev-rental-step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ev-accent);
  border-radius: 50%;
  color: var(--ev-accent);
  font-size: .78rem;
  font-weight: 900;
  background: #fff;
  z-index: 1;
}

.ev-rental-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 34px;
  bottom: -1px;
  width: 2px;
  background: #edf0f2;
}

.ev-rental-steps strong {
  display: block;
  padding-top: 4px;
  font-size: .92rem;
}

.ev-rental-steps p {
  margin: 5px 0 0;
  color: var(--ev-muted);
  font-size: .82rem;
  line-height: 1.58;
}

.ev-rental-faq {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 54px;
  margin-top: 72px;
  padding-top: 68px;
  border-top: 1px solid #edf0f2;
}

.ev-rental-faq__heading h3 {
  margin: 0;
  max-width: 350px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.ev-rental-faq__items {
  border-top: 1px solid var(--ev-border);
}

.ev-rental-faq details {
  border-bottom: 1px solid var(--ev-border);
}

.ev-rental-faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 66px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ev-text);
  font-size: .97rem;
  font-weight: 800;
}

.ev-rental-faq summary span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f1f3f5;
  color: #34404a;
  font-size: 1.15rem;
  transition: transform .18s ease;
}

.ev-rental-faq details[open] summary span {
  transform: rotate(45deg);
}

.ev-rental-faq details p {
  max-width: 760px;
  margin: -2px 52px 20px 0;
  color: var(--ev-muted);
  font-size: .9rem;
  line-height: 1.65;
}

.ev-rental-guide__cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  padding: 26px 28px;
  border: 1px solid var(--ev-border);
  border-radius: 18px;
  background: #f8f9fa;
}

.ev-rental-guide__cta strong,
.ev-rental-guide__cta span {
  display: block;
}

.ev-rental-guide__cta strong {
  font-size: 1.08rem;
}

.ev-rental-guide__cta span {
  margin-top: 4px;
  color: var(--ev-muted);
  font-size: .84rem;
}

.ev-rental-guide__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .ev-rental-guide__heading,
  .ev-rental-faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ev-rental-paths {
    grid-template-columns: 1fr;
  }

  .ev-rental-faq__heading h3 {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .ev-rental-guide {
    padding: 68px 0;
  }

  .ev-rental-guide__heading h2 {
    font-size: 2.72rem;
  }

  .ev-rental-paths {
    margin-top: 34px;
  }

  .ev-rental-path > summary {
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 11px;
    min-height: 102px;
    padding: 16px;
  }

  .ev-rental-path__badge {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    font-size: .72rem;
  }

  .ev-rental-path__summary-copy strong {
    font-size: .98rem;
  }

  .ev-rental-path__summary-copy small {
    font-size: .74rem;
  }

  .ev-rental-path__toggle {
    width: 32px;
    height: 32px;
  }

  .ev-rental-path__body {
    padding: 0 16px 20px;
  }

  .ev-rental-faq {
    margin-top: 54px;
    padding-top: 50px;
  }

  .ev-rental-faq details p {
    margin-right: 0;
  }

  .ev-rental-guide__cta {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 50px;
    padding: 22px;
  }

  .ev-rental-guide__actions {
    width: 100%;
  }

  .ev-rental-guide__actions .ev-primary-button,
  .ev-rental-guide__actions .ev-secondary-button {
    width: 100%;
  }
}
