@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

.rental-page {
  font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
  background: #051029;
  color: #fff;
  width: 100%;
  overflow-x: hidden;
}

.rental-page * {
  box-sizing: border-box;
}

.rental-page :where(a) {
  color: #5fc6ff;
  text-decoration: none;
}

.rental-page :where(a):hover {
  color: #8fdbff;
}

.rental-section {
  padding: 96px 64px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.rental-badge {
  display: inline-block;
  background: rgba(95, 198, 255, 0.12);
  border: 1px solid rgba(95, 198, 255, 0.35);
  color: #5fc6ff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.rental-h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
}

.rental-h2--center {
  text-align: center;
}

/* HEADER */
.rental-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 16, 41, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rental-header__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.rental-header__logo {
  display: flex;
  align-items: center;
}

.rental-header__logo img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}

.rental-header__nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 20px;
  font-weight: 500;
  color: #93a7cc;
  white-space: nowrap;
}

.rental-header__nav a {
  color: #93a7cc;
  white-space: nowrap;
  padding: 3px;
}

.rental-header__nav a:hover {
  color: #5fc6ff;
}

.rental-header__current {
  background: rgba(95, 198, 255, 0.12);
  border: 1px solid rgba(95, 198, 255, 0.35);
  color: #5fc6ff;
  padding: 6px 16px;
  border-radius: 100px;
  font-weight: 700;
  white-space: nowrap;
}

.rental-burger {
  display: none;
  position: relative;
  width: 38px;
  height: 38px;
  background: #0b84d6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  outline: none;
  flex-shrink: 0;
}

.rental-burger-line {
  position: absolute;
  width: 18px;
  height: 2px;
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.rental-burger-line:nth-child(1) {
  top: 13px;
}

.rental-burger-line:nth-child(2) {
  top: 18px;
}

.rental-burger-line:nth-child(3) {
  top: 23px;
}

.rental-burger.active .rental-burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.rental-burger.active .rental-burger-line:nth-child(2) {
  opacity: 0;
}

.rental-burger.active .rental-burger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.rental-btn-primary {
  background: #0093d3;
  color: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  word-break: break-word;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  border: none;
  font-family: inherit;
  transition: all 0.25s;
  will-change: transform;
}

.rental-btn-primary:hover {
  color: #fff;
  opacity: 0.92;
}

.rental-btn-primary:active {
  transform: scale(0.98);
}

/* HERO */
.rental-hero {
  padding: 56px 64px 80px;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.rental-hero__glow {
  position: absolute;
  top: -60px;
  left: 0;
  width: 600px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(11, 132, 214, 0.28) 0%,
    rgba(11, 132, 214, 0) 70%
  );
  pointer-events: none;
}

.rental-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  align-items: stretch;
  position: relative;
}

.rental-hero__col {
  position: relative;
}

.rental-hero h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  color: #fff;
}

.rental-hero h1 .accent {
  position: relative;
  display: inline-block;
  color: #5fc6ff;
  text-shadow: 0 0 28px rgba(95, 198, 255, 0.55);
}

.rental-hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.12em;
  height: 0.14em;
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    rgba(95, 198, 255, 0) 0%,
    #5fc6ff 25%,
    #5fc6ff 75%,
    rgba(95, 198, 255, 0) 100%
  );
  box-shadow: 0 0 18px rgba(95, 198, 255, 0.7);
}

.rental-hero__sub {
  font-size: 19px;
  color: #93a7cc;
  margin: 0 0 20px;
}

.rental-hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.rental-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.rental-check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(95, 198, 255, 0.15);
  color: #5fc6ff;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}

.rental-hero__cta-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.rental-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 18px 30px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  display: inline-block;
}

.rental-btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.rental-btn-cta {
  background: #0b84d6;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 18px 30px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 12px 28px -8px rgba(11, 132, 214, 0.55);
  text-decoration: none;
  display: inline-block;
  border: none;
  font-family: inherit;
}

.rental-btn-cta:hover {
  color: #fff;
  opacity: 0.94;
}

.rental-hero__note {
  color: #5a7099;
  font-size: 13px;
  margin: 18px 0 0;
}

.rental-hero__image-wrap {
  position: relative;
  min-width: 0;
}

.rental-hero__image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(95, 198, 255, 0.18) 0%,
    rgba(95, 198, 255, 0) 70%
  );
}

.rental-hero__image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 24px;
  object-fit: contain;
}

/* D-100 */
.rental-d100__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: stretch;
}

.rental-d100__figure {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
}

.rental-d100__figure img {
  position: absolute;
  inset: 18px;
  display: block;
  border-radius: 16px;
  object-fit: contain;
}

.rental-d100 h2 {
  margin: 0 0 16px;
}

.rental-d100__desc {
  color: #93a7cc;
  font-size: 16px;
  line-height: 1.55;
  margin: 16px 0 28px;
  max-width: 520px;
}

.rental-d100__feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.rental-feat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
}

.rental-feat-card__title {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

.rental-feat-card__text {
  color: #93a7cc;
  font-size: 13.5px;
  line-height: 1.5;
}

/* COMPARISON */
.rental-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
  position: relative;
}

.rental-compare__card {
  border-radius: 22px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.rental-compare__card--bad {
  border: 1px solid rgba(214, 69, 69, 0.35);
}

.rental-compare__card--good {
  border: 1px solid rgba(95, 198, 255, 0.4);
  background: linear-gradient(180deg, #173a72 0%, #0e2145 100%);
}

.rental-compare__card img {
  width: 100%;
  height: 320px;
  margin-bottom: 20px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.rental-compare__title {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
  color: #fff;
}

.rental-compare__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rental-compare__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: #93a7cc;
  font-weight: 600;
  text-align: center;
}

.rental-compare__row .x {
  color: #e96a6a;
}

.rental-compare__row .check {
  color: #5fd68a;
}

/* HOW IT WORKS */
.rental-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rental-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 20px;
}

.rental-step img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  display: block;
}

.rental-step__num {
  font-size: 28px;
  font-weight: 800;
  color: #5fc6ff;
  margin-bottom: 10px;
}

.rental-step__title {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

.rental-step__desc {
  font-size: 13px;
  color: #93a7cc;
  line-height: 1.4;
}

/* BENEFITS */
.rental-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rental-benefit-card {
  background: linear-gradient(180deg, #132a55 0%, #0e2145 100%);
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rental-benefit-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* PROMO BANNER */
.rental-promo {
  padding: 0 64px;
  max-width: 1500px;
  margin: 0 auto -24px;
  position: relative;
}

.rental-promo__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background: linear-gradient(180deg, #132a55 0%, #0e2145 100%);
  border: 1px solid rgba(95, 198, 255, 0.18);
  border-radius: 24px;
  padding: 44px 52px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
}

.rental-promo__col {
  flex: 1;
  min-width: 0;
}

.rental-promo__badge {
  display: inline-block;
  background: rgba(95, 198, 255, 0.12);
  color: #5fc6ff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.rental-promo__title {
  font-weight: 800;
  font-size: 28px;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.rental-promo__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.rental-promo__divider {
  width: 1px;
  height: 96px;
  background: rgba(95, 198, 255, 0.18);
  flex-shrink: 0;
}

.rental-promo .rental-btn-cta {
  white-space: nowrap;
}

/* TECH SPECS */
.rental-tech {
  max-width: 1120px;
  margin: 0 auto;
}

.rental-tech__panel {
  border: 1px solid rgba(95, 198, 255, 0.18);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #132a55 0%, #0e2145 100%);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
}

.rental-tech__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.rental-tech__head-left {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.rental-tech__head-title {
  font-weight: 800;
  font-size: 17px;
  color: #fff;
}

.rental-tech__head-tag {
  color: #5fc6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.rental-tech__chevron {
  transition: transform 0.2s;
  color: #93a7cc;
  font-size: 18px;
}

.rental-tech__panel.is-open .rental-tech__chevron {
  transform: rotate(180deg);
}

.rental-tech__body {
  padding: 0 14px 14px;
  cursor: zoom-in;
  display: none;
}

.rental-tech__panel.is-open .rental-tech__body {
  display: block;
}

.rental-tech__body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.rental-tech__hint {
  color: #5a7099;
  font-size: 13px;
  padding: 12px 12px 0;
}

.rental-tech-zoom {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 12, 28, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  overflow: auto;
}

.rental-tech-zoom.is-open {
  display: flex;
}

.rental-tech-zoom img {
  min-width: 320px;
  width: 100%;
  max-width: 2100px;
  height: auto;
  border-radius: 14px;
}

/* TRUST */
.rental-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.rental-logo-card {
  background: #fff;
  border-radius: 14px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rental-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rental-logo-card img.rental-logo-zoom-in {
  transform: scale(2.6);
}

.rental-logo-card img.rental-logo-zoom-out {
  transform: scale(0.6);
}

.rental-trust__note {
  text-align: center;
  color: #5a7099;
  font-size: 14px;
  margin-top: 24px;
}

/* OFFICIAL */
.rental-official {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.rental-official-card {
  position: relative;
  border-radius: 14px;
  height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 20px;
}

.rental-official-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(11, 132, 214, 0.15);
  color: #0b84d6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rental-official-card__label {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.35;
}

.rental-official__note {
  text-align: center;
  color: #5a7099;
  font-size: 14px;
  margin-top: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* CALC FORM */
.rental-calc {
  position: relative;
}

.rental-calc__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(11, 132, 214, 0.16) 0%,
    rgba(11, 132, 214, 0) 70%
  );
  pointer-events: none;
}

.rental-calc__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.rental-calc__desc {
  color: #93a7cc;
  font-size: 16px;
  margin: 16px 0 32px;
  line-height: 1.5;
}

.rental-calc__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rental-input {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: none;
  width: 100%;
}

.rental-input::placeholder {
  color: #5a7099;
}

.rental-calc__submit {
  background: #0b84d6;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 12px 28px -8px rgba(11, 132, 214, 0.55);
  border: none;
  font-family: inherit;
  width: 100%;
}

.rental-calc__submit:hover {
  opacity: 0.94;
}

.rental-calc__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.rental-success {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 32px;
  color: #fff;
}

.rental-success__icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.rental-success__title {
  font-weight: 700;
  font-size: 17px;
}

.rental-success__sub {
  color: #93a7cc;
  font-size: 14px;
  margin-top: 6px;
}

.rental-calc__form[hidden],
.rental-success[hidden] {
  display: none;
}

/* FAQ */
.rental-faq {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rental-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.rental-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  border: none;
  background: none;
  font-family: inherit;
  text-align: left;
  gap: 12px;
}

.rental-faq-item__chevron {
  transition: transform 0.2s;
  color: #93a7cc;
  flex-shrink: 0;
}

.rental-faq-item.is-open .rental-faq-item__chevron {
  transform: rotate(180deg);
}

.rental-faq-item__a {
  padding: 0 22px 20px;
  color: #93a7cc;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.rental-faq-item.is-open .rental-faq-item__a {
  display: block;
}

/* FOOTER */
.rental-footer {
  padding: 0 20px 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.rental-footer__card {
  background: linear-gradient(180deg, #0e2145 0%, #081733 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 40px 35px;
}

.rental-footer__cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.rental-footer__logo-col {
  width: 172px;
  height: 172px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-footer__logo-col img {
  width: auto;
  height: 100px;
  display: block;
  object-fit: contain;
}

.rental-footer__menu-col,
.rental-footer__contact-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.rental-footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.rental-footer__heading {
  font-weight: 800;
  font-size: 22px;
  color: #fff;
}

.rental-footer__link {
  color: #93a7cc;
  font-size: 15px;
  font-weight: 500;
}

.rental-footer__contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #dceefc;
  font-size: 15px;
  font-weight: 500;
}

.rental-footer__icon-badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(95, 198, 255, 0.12);
  border: 1px solid rgba(95, 198, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* FLOATING BUTTONS */
.rental-float-buttons {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 60;
}

.rental-float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-float-btn--wa {
  background: #25d366;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.6);
}

.rental-float-btn--phone {
  background: #0b84d6;
  box-shadow: 0 10px 24px -6px rgba(11, 132, 214, 0.6);
}

.rental-scroll-top {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: all 0.3s;
  cursor: pointer;
}

.rental-scroll-top:hover {
  background: rgba(255, 255, 255, 0.14);
}

.rental-scroll-top svg {
  width: 22px;
  height: 22px;
}

/* RESPONSIVE */
@media screen and (max-width: 1480px) {
  .rental-header__nav {
    position: absolute;
    top: 100%;
    right: -100%;
    background: #0e2145;
    border: 1px solid rgba(95, 198, 255, 0.18);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 290px;
    transition: right 0.3s ease;
    z-index: 999;
  }

  .rental-header__nav.active {
    right: 0;
  }

  .rental-header__current {
    font-size: 15px;
    padding: 6px 14px;
  }

  .rental-btn-primary {
    margin-left: auto;
  }

  .rental-burger {
    display: flex;
  }
}

@media screen and (max-width: 1024px) {
  .rental-header__logo img {
    height: 75px;
  }

  .rental-btn-primary {
    font-size: 16px;
    padding: 12px 16px;
  }

  .rental-section {
    padding: 72px 40px;
  }

  .rental-h2 {
    font-size: 32px;
  }

  .rental-hero {
    padding: 48px 40px 64px;
  }

  .rental-hero__grid {
    gap: 32px;
  }

  .rental-hero h1 {
    font-size: 42px;
  }

  .rental-hero__sub {
    font-size: 17px;
  }

  .rental-d100__grid {
    gap: 36px;
  }

  .rental-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .rental-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .rental-promo {
    padding: 0 40px;
  }

  .rental-promo__inner {
    padding: 36px 40px;
    gap: 28px;
  }

  .rental-promo__title {
    font-size: 24px;
  }

  .rental-trust {
    grid-template-columns: repeat(3, 1fr);
  }

  .rental-official {
    grid-template-columns: repeat(3, 1fr);
  }

  .rental-footer__card {
    padding: 40px 40px 32px;
  }

  .rental-footer__cols {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .rental-header__inner {
    padding: 0 20px;
    height: 56px;
  }

  .rental-header__logo img {
    height: 36px;
  }

  .rental-btn-primary {
    display: none;
  }

  .rental-section {
    padding: 48px 20px;
  }

  .rental-h2 {
    font-size: 26px;
  }

  .rental-hero {
    padding: 32px 20px 40px;
  }

  .rental-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rental-hero__image-wrap {
    aspect-ratio: 1023 / 1194;
  }

  .rental-hero h1 {
    font-size: 32px;
  }

  .rental-hero__sub {
    font-size: 17px;
  }

  .rental-hero__benefits {
    margin-bottom: 24px;
  }

  .rental-hero__cta-row {
    flex-direction: column;
  }

  .rental-d100__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .rental-d100__figure {
    aspect-ratio: 484 / 738;
  }

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

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

  .rental-compare__card img {
    height: 200px;
  }

  .rental-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .rental-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .rental-benefit-card {
    padding: 3px;
  }

  .rental-benefit-card img {
    border-radius: 15px;
  }

  .rental-promo {
    padding: 0 20px;
    margin: 0 auto 8px;
  }

  .rental-promo__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 32px 24px;
  }

  .rental-promo__title {
    font-size: 22px;
  }

  .rental-promo__divider {
    width: 100%;
    height: 1px;
  }

  .rental-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .rental-logo-card {
    height: 132px;
  }

  .rental-official {
    grid-template-columns: repeat(2, 1fr);
  }

  .rental-footer__card {
    padding: 24px;
    border-radius: 20px;
  }

  .rental-footer__cols {
    flex-direction: column;
    gap: 40px;
  }

  .rental-footer__logo-col {
    width: 92px;
    height: 92px;
    margin: auto 0;
    align-self: unset;
  }

  .rental-footer__menu-col {
    order: 1;
    gap: 20px;
  }

  .rental-footer__contact-col {
    gap: 20px;
  }

  .rental-footer__heading {
    font-size: 22px;
  }

  .rental-footer__list {
    gap: 15px;
  }

  .rental-float-buttons {
    right: 16px;
    bottom: 20px;
  }
}
