/* Dedicated landing page: equipment and tool rental */
.page-rental {
  --rental-ink: #0b1634;
  --rental-blue: #2459dc;
  --rental-blue-strong: #173d9e;
  --rental-cyan: #22b8f0;
  --rental-green: #059669;
  --rental-red: #dc2626;
  --rental-amber: #d97706;
  --rental-surface: #f6f8fd;
}

.page-rental .container {
  max-width: min(1420px, 100% - 24px);
}

.rental-page {
  display: grid;
  gap: clamp(42px, 5vw, 72px);
  margin-top: 18px;
  color: var(--rental-ink);
}

.rental-page h1,
.rental-page h2,
.rental-page h3,
.rental-page p {
  margin-top: 0;
}

.rental-page h1 {
  max-width: 790px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.rental-page h2 {
  max-width: 880px;
  margin-bottom: 15px;
  color: var(--rental-ink);
  font-size: clamp(27px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.rental-page h3 {
  color: var(--rental-ink);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.18;
}

.rental-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--rental-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.rental-eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.rental-eyebrow--light {
  color: #8edcff;
}

.rental-section-heading {
  max-width: 930px;
}

.rental-section-heading > p {
  max-width: 760px;
  margin-bottom: 0;
  color: #586780;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.rental-hero {
  position: relative;
  isolation: isolate;
  min-height: min(700px, calc(100vh - 130px));
  overflow: hidden;
  border: 1px solid rgba(90, 133, 255, .3);
  border-radius: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(760px 460px at 13% 10%, rgba(64, 136, 255, .38), transparent 62%),
    radial-gradient(620px 420px at 88% 8%, rgba(34, 211, 238, .2), transparent 64%),
    linear-gradient(135deg, #09142f 0%, #10265d 54%, #0a1739 100%);
  box-shadow: 0 34px 90px rgba(17, 45, 112, .24);
}

.rental-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, #000, transparent 72%);
  content: "";
}

.rental-hero::after {
  position: absolute;
  right: -160px;
  bottom: -260px;
  z-index: -1;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(120, 196, 255, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 86px rgba(92, 151, 255, .055), 0 0 0 172px rgba(92, 151, 255, .035);
  content: "";
}

.rental-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  min-height: inherit;
  padding: clamp(32px, 4.5vw, 60px);
}

.rental-hero__content {
  position: relative;
  z-index: 2;
}

.rental-hero__lead {
  max-width: 690px;
  margin-bottom: 22px;
  color: rgba(238, 245, 255, .82);
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
}

.rental-hero__actions,
.rental-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.rental-page .rental-btn {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
}

.rental-page .rental-btn--ghost {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.1);
  color: #fff;
  box-shadow: none;
}

.rental-page .rental-btn--ghost:hover {
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.16);
  color: #fff;
}

.rental-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.rental-hero__proof-item {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(255,255,255,.065);
  color: rgba(235, 243, 255, .74);
  font-size: 12px;
  line-height: 1.35;
}

.rental-hero__proof-item strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 13px;
}

.rental-dashboard {
  position: relative;
  margin: 0 -12% 0 0;
  perspective: 1400px;
}

.rental-dashboard::before {
  position: absolute;
  inset: 12% 5% -8% 12%;
  z-index: -1;
  border-radius: 50%;
  background: #3b82f6;
  opacity: .3;
  filter: blur(72px);
  content: "";
}

.rental-dashboard__bar {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.28);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: rgba(245, 248, 255, .96);
}

.rental-dashboard__bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b7c3d9;
}

.rental-dashboard__bar span:first-child { background: #ff6b6b; }
.rental-dashboard__bar span:nth-child(2) { background: #fbbf24; }
.rental-dashboard__bar span:nth-child(3) { background: #34d399; }

.rental-dashboard img {
  display: block;
  width: 100%;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 0 0 18px 18px;
  background: #fff;
  box-shadow: 0 36px 80px rgba(0, 8, 29, .42);
}

.rental-dashboard__open {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0 0 18px 18px;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.rental-gallery-trigger:focus-visible {
  outline: 3px solid #67d4ff;
  outline-offset: 4px;
}

.rental-dashboard__status {
  position: absolute;
  right: 6%;
  bottom: -22px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px;
  background: rgba(255,255,255,.94);
  color: #1c2b4a;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0, 20, 62, .3);
}

.rental-dashboard__status::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 5px rgba(16,185,129,.12);
  content: "";
}

.rental-pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.rental-pain-card {
  position: relative;
  min-height: 205px;
  overflow: hidden;
  padding: 21px;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, .07);
}

.rental-pain-card::after {
  position: absolute;
  top: -38px;
  right: -38px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(220,38,38,.055);
  content: "";
}

.rental-pain-card__number {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #fff0f0;
  color: var(--rental-red);
  font-size: 12px;
  font-weight: 900;
}

.rental-pain-card h3 { margin-bottom: 10px; }
.rental-pain-card p {
  margin-bottom: 0;
  color: #66738a;
  font-size: 14px;
  line-height: 1.6;
}

.rental-answer-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 20px;
  background: linear-gradient(115deg, #edf4ff, #f7fbff);
}

.rental-answer-strip__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--rental-blue), var(--rental-cyan));
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(37,99,235,.24);
}

.rental-answer-strip strong {
  display: block;
  margin-bottom: 3px;
  color: #14264f;
  font-size: 17px;
}

.rental-answer-strip p {
  margin-bottom: 0;
  color: #5c6c85;
  font-size: 14px;
}

.rental-control {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(560px, 1.18fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.rental-checklist {
  display: grid;
  gap: 4px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rental-checklist li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid #e8edf5;
  color: #283852;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.rental-checklist li::before {
  position: absolute;
  top: 13px;
  left: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: #e8f7f1;
  color: var(--rental-green);
  font-size: 13px;
  font-weight: 900;
  content: "✓";
}

.rental-shot {
  margin: 0;
}

.rental-shot__frame {
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid #dce4f2;
  border-radius: 22px;
  background: #fff;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
  box-shadow: 0 24px 60px rgba(20, 43, 91, .13);
  transition: transform .24s ease, box-shadow .24s ease;
}

.rental-shot__frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(20, 43, 91, .18);
}

.rental-shot__frame img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.rental-shot figcaption {
  padding: 13px 15px 15px;
}

.rental-shot figcaption strong {
  display: block;
  margin-bottom: 4px;
  color: #152543;
  font-size: 15px;
}

.rental-shot figcaption span {
  display: block;
  color: #6b7890;
  font-size: 13px;
  line-height: 1.5;
}

.rental-workflow {
  padding: clamp(28px, 4.5vw, 48px);
  border: 1px solid #dfe7f5;
  border-radius: 30px;
  background: #f7f9fd;
}

.rental-workflow__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
}

.rental-step {
  position: relative;
  padding: 0 22px;
}

.rental-step:first-child { padding-left: 0; }
.rental-step:last-child { padding-right: 0; }

.rental-step:not(:last-child)::after {
  position: absolute;
  top: 18px;
  right: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #a5b4cc;
  border-right: 1px solid #a5b4cc;
  transform: rotate(45deg);
  content: "";
}

.rental-step__number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border: 1px solid #c9d8f5;
  border-radius: 13px;
  background: #fff;
  color: var(--rental-blue);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(30, 64, 175, .08);
}

.rental-step h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.rental-step p {
  margin-bottom: 0;
  color: #69768b;
  font-size: 13px;
  line-height: 1.55;
}

.rental-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.rental-gallery__grid .rental-shot:first-child {
  grid-column: 1 / -1;
}

.rental-gallery__grid .rental-shot:first-child .rental-shot__frame img {
  aspect-ratio: 16 / 7.5;
}

.rental-money {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(34px, 5vw, 60px);
  border-radius: 30px;
  background: linear-gradient(135deg, #0d1d43 0%, #173b82 64%, #0d285f 100%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(21, 54, 124, .2);
}

.rental-money::after {
  position: absolute;
  top: -160px;
  right: -120px;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(53, 190, 255, .14);
  filter: blur(6px);
  content: "";
}

.rental-money h2 {
  max-width: 900px;
  color: #fff;
}

.rental-money__lead {
  max-width: 760px;
  color: rgba(233,241,255,.78);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.rental-money__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.rental-money__card {
  padding: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.065);
}

.rental-money__card strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 16px;
}

.rental-money__card p {
  margin-bottom: 0;
  color: rgba(232,240,255,.69);
  font-size: 13px;
  line-height: 1.55;
}

.rental-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.rental-capability {
  min-height: 190px;
  padding: 22px;
  border: 1px solid #e0e7f1;
  border-radius: 21px;
  background: #fff;
}

.rental-capability__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 13px;
  background: #edf3ff;
  color: var(--rental-blue);
  font-size: 18px;
  font-weight: 900;
}

.rental-capability h3 { margin-bottom: 9px; }
.rental-capability p {
  margin-bottom: 0;
  color: #65728a;
  font-size: 14px;
  line-height: 1.6;
}

.rental-owner {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
  padding: clamp(32px, 4.5vw, 50px);
  border: 1px solid #dce6f5;
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f3f7ff);
}

.rental-owner__promise {
  margin: 0;
  color: var(--rental-blue-strong);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.rental-owner__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.rental-owner__item {
  padding: 17px 18px;
  border: 1px solid #e1e8f3;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  color: #34435d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.rental-faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.rental-faq__list {
  display: grid;
  gap: 10px;
}

.rental-faq details {
  padding: 0 18px;
  border: 1px solid #dde5f0;
  border-radius: 17px;
  background: #fff;
}

.rental-faq summary {
  position: relative;
  padding: 17px 34px 17px 0;
  color: #172642;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  list-style: none;
}

.rental-faq summary::-webkit-details-marker { display: none; }

.rental-faq summary::after {
  position: absolute;
  top: 16px;
  right: 0;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: #edf3ff;
  color: var(--rental-blue);
  content: "+";
}

.rental-faq details[open] summary::after { content: "−"; }

.rental-faq details p {
  margin: -1px 0 17px;
  color: #647188;
  font-size: 14px;
  line-height: 1.65;
}

.rental-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(40px, 6vw, 68px);
  border-radius: 32px;
  background: linear-gradient(120deg, #143e9b, #2465e8 60%, #1aa9df);
  color: #fff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(29, 78, 216, .25);
}

.rental-final::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .16;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 24px 24px;
  content: "";
}

.rental-final h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
}

.rental-final p {
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
}

.rental-final__actions {
  justify-content: center;
}

.rental-final .rental-btn--light {
  border-color: #fff;
  background: #fff;
  color: #1747ad;
}

.rental-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 8px;
}

.rental-links__group {
  padding: 22px;
  border: 1px solid #e1e7f0;
  border-radius: 20px;
  background: rgba(255,255,255,.68);
}

.rental-links__group h2 {
  margin-bottom: 12px;
  font-size: 18px;
  letter-spacing: -.01em;
}

.rental-links__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.rental-links__items a {
  color: #4e5e78;
  font-size: 13px;
}

body.rental-lightbox-open {
  overflow: hidden;
}

.rental-lightbox[hidden] {
  display: none;
}

.rental-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.rental-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 22, .84);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.rental-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1500px, 100%);
  max-height: calc(100dvh - 32px);
  outline: 0;
}

.rental-lightbox__figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 22px;
  background: #081226;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .52);
}

.rental-lightbox__stage {
  display: grid;
  place-items: center;
  height: min(78dvh, calc(100dvh - 150px));
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(45, 91, 180, .18), transparent 55%),
    #050c1c;
  cursor: grab;
  touch-action: pan-y;
}

.rental-lightbox__stage.is-dragging {
  cursor: grabbing;
}

.rental-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.rental-lightbox__caption {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 18px;
  background: #fff;
  color: #172642;
}

.rental-lightbox__caption > div {
  min-width: 0;
}

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

.rental-lightbox__caption strong {
  margin-bottom: 2px;
  font-size: 15px;
  line-height: 1.35;
}

.rental-lightbox__caption [data-lightbox-description] {
  color: #66738a;
  font-size: 12px;
  line-height: 1.4;
}

.rental-lightbox__count {
  flex: 0 0 auto;
  color: #52617a;
  font-size: 13px;
  font-weight: 800;
}

.rental-lightbox__close,
.rental-lightbox__arrow {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  background: rgba(5, 13, 31, .76);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  transition: background .18s ease, transform .18s ease;
}

.rental-lightbox__close:hover,
.rental-lightbox__arrow:hover {
  background: rgba(37, 89, 220, .94);
  transform: scale(1.05);
}

.rental-lightbox__close:focus-visible,
.rental-lightbox__arrow:focus-visible {
  outline: 3px solid #67d4ff;
  outline-offset: 3px;
}

.rental-lightbox__close {
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.rental-lightbox__arrow {
  top: calc(50% - 32px);
  width: 48px;
  height: 48px;
  font-size: 38px;
  line-height: 1;
}

.rental-lightbox__arrow--prev { left: 12px; }
.rental-lightbox__arrow--next { right: 12px; }

@media (max-width: 1120px) {
  .rental-hero {
    min-height: auto;
  }

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

  .rental-dashboard {
    width: min(920px, 106%);
    margin: 0 -3% -5% auto;
  }

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

  .rental-control .rental-shot {
    max-width: 900px;
  }

  .rental-pain-grid,
  .rental-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rental-workflow__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 0;
  }

  .rental-step:nth-child(3)::after { display: none; }
}

@media (max-width: 760px) {
  .page-rental .container {
    max-width: min(100% - 16px, 1420px);
    padding-right: 0;
    padding-left: 0;
  }

  .page-rental .brand .brand-platform-logo {
    width: clamp(124px, 38vw, 150px);
  }

  .page-rental .navwrap::after {
    inset: -16px 0;
  }

  .rental-page {
    gap: 42px;
    margin-top: 10px;
  }

  .rental-page h1 {
    font-size: clamp(31px, 10vw, 42px);
  }

  .rental-page h2 {
    font-size: clamp(26px, 7.8vw, 35px);
  }

  .rental-hero {
    border-radius: 24px;
  }

  .rental-hero__layout {
    gap: 28px;
    padding: 28px 18px 34px;
  }

  .rental-hero__actions .btn,
  .rental-final__actions .btn {
    width: 100%;
  }

  .rental-hero__proof {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .rental-dashboard {
    width: 108%;
    margin-right: -8%;
    margin-bottom: -8%;
  }

  .rental-dashboard__bar { height: 28px; }
  .rental-dashboard__status { display: none; }

  .rental-pain-grid,
  .rental-gallery__grid,
  .rental-money__grid,
  .rental-capabilities,
  .rental-owner,
  .rental-owner__list,
  .rental-faq,
  .rental-links {
    grid-template-columns: 1fr;
  }

  .rental-pain-card {
    min-height: 0;
  }

  .rental-answer-strip {
    grid-template-columns: 1fr;
  }

  .rental-workflow,
  .rental-money,
  .rental-owner,
  .rental-final {
    border-radius: 23px;
  }

  .rental-workflow__steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rental-step {
    padding: 0 0 24px 58px;
  }

  .rental-step:first-child { padding-left: 58px; }
  .rental-step:last-child { padding-right: 0; padding-bottom: 0; }

  .rental-step__number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .rental-step:not(:last-child)::after {
    top: 42px;
    right: auto;
    bottom: 2px;
    left: 19px;
    width: 1px;
    height: auto;
    border: 0;
    background: #cbd7e8;
    transform: none;
  }

  .rental-step:nth-child(3)::after { display: block; }

  .rental-gallery__grid .rental-shot:first-child {
    grid-column: auto;
  }

  .rental-gallery__grid .rental-shot:first-child .rental-shot__frame img,
  .rental-shot__frame img {
    aspect-ratio: 8 / 5;
  }

  .rental-owner__promise {
    margin-bottom: 0;
  }

  .rental-lightbox {
    padding: 8px;
  }

  .rental-lightbox__dialog {
    max-height: calc(100dvh - 16px);
  }

  .rental-lightbox__figure {
    border-radius: 17px;
  }

  .rental-lightbox__stage {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 8 / 5;
  }

  .rental-lightbox__caption {
    gap: 10px;
    min-height: 106px;
    padding: 10px 13px;
  }

  .rental-lightbox__caption [data-lightbox-description] {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .rental-lightbox__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }

  .rental-lightbox__arrow {
    top: calc(50% - 52px);
    width: 42px;
    height: 42px;
    font-size: 32px;
  }

  .rental-lightbox__arrow--prev { left: 8px; }
  .rental-lightbox__arrow--next { right: 8px; }
}

@media (max-height: 560px) {
  .rental-lightbox__stage {
    height: calc(100dvh - 98px);
    min-height: 0;
    aspect-ratio: auto;
  }

  .rental-lightbox__caption {
    min-height: 66px;
    padding-block: 8px;
  }

  .rental-lightbox__caption [data-lightbox-description] {
    display: none;
  }

  .rental-lightbox__arrow {
    top: calc(50% - 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rental-shot__frame {
    transition: none;
  }

  .rental-shot__frame:hover {
    transform: none;
  }

  .rental-lightbox__close,
  .rental-lightbox__arrow {
    transition: none;
  }
}
