.mm-loader-done {
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 248, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.mm-loader-done.show {
  display: flex;
}

.mm-loader-done-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #67b57c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  box-shadow: 0 12px 30px rgba(103, 181, 124, 0.28);
  animation: mmLoaderCheckInOut 1.1s ease forwards;
}

@keyframes mmLoaderCheckInOut {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  20% {
    opacity: 1;
    transform: scale(1.08);
  }
  45% {
    opacity: 1;
    transform: scale(1);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.85);
  }
}

.thanks-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 38, 68, 0.58);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000000;
  padding: 20px;
}

.thanks-popup-overlay.show {
  display: flex;
}

.thanks-popup-box {
  width: 100%;
  max-width: 920px;
  background: #f7f7f8;
  border-radius: 24px;
  border: 1px solid #e8eaf0;
  box-shadow: 0 20px 50px rgba(15, 24, 45, 0.28);
  padding: 28px 34px 26px;
  position: relative;
}

.thanks-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #ececf1;
  color: #24365d;
  font-size: 22px;
  cursor: pointer;
}

.thanks-popup-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-right: 56px;
}

.thanks-popup-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #6ba36c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  flex: 0 0 auto;
}

.thanks-popup-head-text h3 {
  margin: 4px 0 12px;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  color: #1f3158;
}

.thanks-popup-head-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #4f5c76;
  max-width: 620px;
}

.thanks-popup-divider {
  height: 1px;
  background: #e4e7ef;
  margin: 24px 0 18px;
}

.thanks-popup-divider.thin {
  margin: 16px 0 22px;
}

.thanks-popup-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #2f3e5e;
  font-size: 17px;
  line-height: 1.5;
}

.thanks-popup-row-icon {
  color: #b6842b;
  font-size: 24px;
}

.thanks-popup-body h4 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  color: #1f3158;
}

.thanks-popup-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.thanks-popup-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #3f4b63;
  font-size: 17px;
}

.thanks-popup-item span:first-child {
  color: #5ea56c;
  font-size: 22px;
  line-height: 1;
}

.thanks-popup-warning {
  display: flex;
  gap: 10px;
  color: #4b556b;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 24px;
  justify-content: center;
}

.thanks-popup-warning-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

.thanks-popup-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 12px;
  text-decoration: none;
  background: linear-gradient(180deg, #6c9c6d 0%, #5b8a5c 100%);
  color: #fff;
  font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 10px 22px rgba(91, 138, 92, 0.24);
}

.thanks-popup-whatsapp i {
  font-size: 30px;
}

.thanks-popup-secondary,
.thanks-popup-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid #d9dee8;
  background: #f7f7f8;
  color: #1f3158;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 10px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .thanks-popup-overlay {
    padding: 14px;
  }

  .thanks-popup-box {
    padding: 22px 18px 20px;
    border-radius: 20px;
  }

  .thanks-popup-close {
    width: 32px;
    height: 32px;
    font-size: 14px;
    top: 12px;
    right: 12px;
  }

  .thanks-popup-head {
    gap: 14px;
    padding-right: 44px;
  }
.thanks-popup-divider {
  margin:10px 0
}
  .thanks-popup-divider.thin {
  margin:10px 0
}
  .thanks-popup-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .thanks-popup-head-text h3 {
    font-size: 16px;
  }

  .thanks-popup-head-text p {
    font-size: 14px;
  }

  .thanks-popup-row,
  .thanks-popup-item,
  .thanks-popup-warning {
    font-size: 15px;
  }

  .thanks-popup-whatsapp {
    font-size: 16px;
    min-height: 54px;
  }

  .thanks-popup-whatsapp i {
    font-size: 26px;
  }

  .thanks-popup-secondary,
  .thanks-popup-link {
    min-height: 50px;
    font-size: 16px;
  }
}




/* =========================
   POPUP LEAD
========================= */
.lead-popup-overlay,.boxRichiestaMotore {
  position: fixed;
  inset: 0;
  background: rgba(25, 38, 68, 0.55);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
}
 
.lead-popup-overlay.show {
  display: flex;
}
.boxRichiestaMotore.show {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.lead-popup-box {
  width: 100%;
  max-width: 780px;
  background: #eaeaef;
  border-radius: 28px;
  padding: 28px 28px 30px;
  position: relative;
  box-shadow: 0 18px 50px rgba(15, 24, 45, 0.22);
  border: 1px solid #ececf1;
  animation: leadPopupIn 0.28s ease;
}

@keyframes leadPopupIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lead-popup-close,.lead-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #f0f1f6;
  color: #24365d;
  font-size: 22px;
  cursor: pointer;
}

.lead-popup-head h3 {
  margin: 8px 0 12px;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 700;
  color: #1f3158;
}

.lead-popup-head p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.55;
  color: #5a657d;
  max-width: 660px;
}

.lead-popup-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 22px;
}

.lead-popup-benefit,
.lead-popup-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3a4762;
  font-size: 16px;
  line-height: 1.5;
}

.lead-check {
  color: #63b37b;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
}

.lead-popup-form {
  margin-top: 6px;
}

.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-field {
  display: flex;
  flex-direction: column;
}

.lead-field.lead-full {
  grid-column: 1 / -1;
}

.lead-field input {
  width: 100%;
  height: 64px;
  border: 1px solid #dfe3ec;
  border-radius: 16px;
  background: #f7f7f8;
  padding: 0 18px;
  font-size: 17px;
  color: #24365d;
  outline: none;
  box-sizing: border-box;
  transition: .2s ease;
}

.lead-field input::placeholder {
  color: #5d6982;
  opacity: 1;
}

.lead-field input:focus {
  border-color: #f5a623;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.10);
}

.lead-popup-actions {
  margin-top: 22px;
}

.lead-popup-submit {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffa400 0%, #f28a00 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(242, 138, 0, 0.24);
  transition: .2s ease;
}

.lead-popup-submit:hover {
  transform: translateY(-1px);
}

.lead-popup-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.lead-popup-feedback {
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}

.lead-popup-feedback.error {
  color: #c62828;
}

.lead-popup-feedback.success {
  color: #2e7d32;
}

.lead-popup-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 22px;
}

.lead-popup-divider {
  height: 1px;
  background: #e4e7ef;
  margin: 18px 0 16px;
}

.lead-popup-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #4d5871;
}

.lead-popup-note-icon {
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

/* =========================
   SEARCH LOADER
========================= */
.mm-loader-progress-track {
  margin: 18px 22px 22px;
  height: 8px;
  background: #d9dde6;
  border-radius: 999px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .mm-loader-progress-track {
    margin: 14px 14px 16px;
    height: 12px;
  }
}
#searchProgress {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #f9a30a, #f7b12a);
  border-radius: 999px;
  transition: width 0.35s ease;
}
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 75%);
  z-index: 30;
  display: none;
  align-items: flex-start;
  justify-content: center;
  /* overflow-y: auto; */
  z-index: 99;
}

.search-overlay.show {
  display: flex;
}

.search-overlay-content {
  padding: 0;
}

.mm-search-loader {
  width: 100%;
  /* min-width: 100%; */
  background: #f7f7f8;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(18, 33, 67, 0.12);
  overflow: hidden;
  border: 1px solid #ececec;
  margin: auto;
}

.mm-loader-header {
  text-align: center;
  padding: 18px 20px 18px;
  background: #f7f7f8;
}

.mm-loader-logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.mm-loader-divider {
  height: 4px;
  width: calc(100% - 80px);
  margin: 0 auto;
  background: linear-gradient(90deg, #f3d59b, #fff8eb);
  border-radius: 999px;
}

.mm-loader-body {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 48px 10px;
}

.mm-loader-title {
  margin: 0 0 18px;
  font-size: 58px;
  line-height: 1.12;
  font-weight: 700;
  color: #1f3158;
  letter-spacing: -0.02em;
}

.mm-loader-subtitle {
  margin: 0 0 38px;
  font-size: 27px;
  line-height: 1.45;
  color: #384766;
  font-weight: 400;
}

.mm-loader-steps-card {
  background: #f9f9fa;
  border: 1px solid #e7e8eb;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(20, 35, 70, 0.04);
}

.mm-loader-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 34px;
  border-bottom: 1px solid #ececef;
  color: #8f98aa;
  background: transparent;
  opacity: .45;
  transition: .25s ease;
}

.mm-loader-step:last-of-type {
  border-bottom: 0;
}

.mm-step-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mm-step-icon {
  font-size: 14px;
  line-height: 1;
  width: 42px;
  text-align: center;
  transition: .25s ease;
}

.mm-step-text {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  transition: .25s ease;
}

.mm-step-right {
  min-width: 32px;
  text-align: right;
}

.mm-step-check {
  opacity: 0;
  font-size: 18px;
  color: #66b37a;
  font-weight: 700;
  transition: .25s ease;
}

.mm-loader-step.active {
  background: linear-gradient(90deg, #fcf7eb 0%, #f7f7f8 60%);
  color: #1f3158;
  opacity: 1;
}

.mm-loader-step.active .mm-step-icon {
  color: #f5a623;
  transform: scale(1.08);
}

.mm-loader-step.active .mm-step-text {
  font-weight: 700;
  color: #1f3158;
}

.mm-loader-step.completed {
  color: #1f3158;
  opacity: 1;
}

.mm-loader-step.completed .mm-step-text {
  font-weight: 600;
}

.mm-loader-step.completed .mm-step-check {
  opacity: 1;
}

.mm-loader-progress {
  padding: 20px 22px 24px;
  background: transparent;
}

.mm-loader-progress::before {
  content: "";
  display: block;
  width: 100%;
  height: 18px;
  background: #d9dde6;
  border-radius: 999px;
}

.mm-loader-progress span {
  display: block;
  width: 0%;
  height: 18px;
  background: linear-gradient(90deg, #f9a30a, #f7b12a);
  border-radius: 999px;
  transition: width 0.35s ease;
  margin-top: -18px;
  position: relative;
}

.mm-loader-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 48px;
  margin: 5px 0 14px;
  justify-content: space-between;
}

.mm-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: #24365d;
}

.mm-benefit-check {
  color: #67b57c;
  font-size: 18px;
  font-weight: 700;
}

.mm-loader-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  color: #1f3158;
  font-weight: 700;
  text-align: center;
}

.mm-loader-highlight-icon {
  font-size: 18px;
  line-height: 1;
}

.mm-loader-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #e5e7eb;
  background: #f8f8f9;
  border-radius: 22px;
  padding: 24px 28px;
}

.mm-loader-privacy-icon {
  font-size: 16px;
  color: #9aa3b6;
  line-height: 1;
  flex: 0 0 auto;
}

.mm-loader-privacy-text {
  font-size: 12px;
  line-height: 1.5;
  color: #4e5b76;
}

.search-status {
  display: none;
}

/* =========================
   TAB / SHEET MOBILE
========================= */
.engine-tab-panels {
  display: none;
}

.engine-tabs-mobile {
  display: none;
}

.engine-tabs-mobile__trigger {
  width: auto;
  min-height: 54px;
  border: none;
  background: transparent;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  cursor: pointer;
  gap: 10px;
}

.engine-tabs-mobile__current {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.engine-tabs-mobile__current i {
  color: #1f4b99;
}

.engine-tab-panel {
  display: none;
  padding: 18px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}

.engine-tab-panel.active {
  display: block;
}

.engine-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 9998;
}

.engine-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 22px 22px 0 0;
  transform: translateY(100%);
  transition: transform .28s ease;
  z-index: 9999;
  max-height: 82vh;
  overflow: auto;
  box-shadow: 0 -12px 30px rgba(0,0,0,0.14);
  padding: 0 0 30px 0;
}

.engine-sheet.is-open {
  transform: translateY(0);
}

.engine-sheet-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.engine-sheet__handle {
  width: 56px;
  height: 5px;
  border-radius: 999px;
  background: #bdbdbd;
  margin: 12px auto 10px;
}

.engine-sheet__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px 20px 18px;
  border-bottom: 1px solid #ececec;
}

.engine-sheet__title {
  font-size: 16px;
  font-weight: 800;
  color: #2f343b;
}

.engine-sheet__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #1d4ed8;
  font-size: 15px;
  cursor: pointer;
}

.engine-sheet__list {
  padding: 0;
}

.engine-sheet__item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ececec;
  background: #fff;
  min-height: 58px;
  padding: 0 18px;
  text-align: left;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #2f343b;
  font-size: 16px;
}

.engine-sheet__item:last-child {
  border: none !important;
}

.engine-sheet__left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.engine-sheet__check {
  opacity: 0;
  color: #111;
  width: 14px;
}

.engine-sheet__item.active .engine-sheet__check {
  opacity: 1;
}

.engine-sheet__item i:not(.engine-sheet__check) {
  color: #1f4b99;
  width: 18px;
  text-align: center;
}

/* =========================
   RISULTATI MOTORI
========================= */
.motori-results-section {
  padding: 40px 16px 70px;
  background: #f5f6f8;
  font-family: Arial, Helvetica, sans-serif;
}

.motori-results-container {
  max-width: 1320px;
  margin: 0 auto;
}

.motori-results-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.motori-results-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: #1d2b44;
}

.motori-results-title span {
  color: #f39200;
}

.motori-results-order {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.motori-results-order label {
  font-size: 15px;
  color: #1d2b44;
  font-weight: 600;
}

.motori-results-order select {
  min-width: 270px;
  height: 44px;
  border: 1px solid #d6dbe3;
  border-radius: 8px;
  background: #fff;
  padding: 0 14px;
  font-size: 15px;
  color: #1d2b44;
  outline: none;
}

.motori-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.motore-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border: 1px solid #e8ebf0;
  transition: transform .3s ease, box-shadow .3s ease, opacity .5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.motore-card.show {
  opacity: 1;
  transform: translateY(0);
}

.motore-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.motore-card-image-wrap {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: #eef1f4;
}

.motore-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.motore-card:hover .motore-card-image {
  transform: scale(1.05);
}

.motore-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: all .25s ease;
}

.motore-fav:hover,
.motore-fav.active {
  background: #f39200;
  border-color: #f39200;
  color: #fff;
}

.motore-card-body {
  padding: 14px 14px 16px;
}

.motore-card-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
  color: #1d2b44;
  min-height: 50px;
}

.motore-specs {
  margin-bottom: 10px;
}

.motore-specs p {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.35;
  color: #23334f;
}

.motore-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e5f1e6;
  color: #22612d;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0 12px;
}

.motore-price {
  font-size: 19px;
  font-weight: 800;
  color: #18253d;
  margin-bottom: 14px;
}

.motore-actions {
  display: flex;
  gap: 10px;
}

.motore-btn {
  flex: 1;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #1d2b44;
  background: #fff;
  color: #1d2b44;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.motore-btn:hover {
  transform: translateY(-2px);
}

.motore-btn-orange {
  background: #f39200;
  border-color: #f39200;
  color: #fff;
}

.motore-btn-orange i {
  margin-right: 8px;
}

.motori-empty {
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 14px;
  padding: 30px 20px;
  text-align: center;
  color: #1d2b44;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
  .motori-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mm-loader-body {
    padding: 32px 28px 30px;
  }

  .mm-loader-title {
    font-size: 42px;
  }

  .mm-loader-subtitle {
    font-size: 22px;
  }

  .mm-step-text {
    font-size: 22px;
  }

  .mm-benefit {
    font-size: 21px;
  }

  .mm-loader-highlight {
    font-size: 25px;
  }

  .mm-loader-highlight span,
  .mm-loader-privacy-text {
    text-align: left;
  }

  .mm-loader-privacy-text {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .motori-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motori-results-order select {
    min-width: 220px;
  }
}

@media (max-width: 768px) {
  .engine-tabs--desktop {
    display: none;
  }

  .engine-tabs-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .lead-popup-overlay {
    padding: 14px;
  }

  .lead-popup-box {
    border-radius: 24px;
    padding: 22px 18px 24px;
  }

  .lead-popup-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .lead-popup-head h3 {
    font-size: 24px;
    padding-right: 48px;
  }

  .lead-popup-head p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .lead-popup-benefits {
    gap: 10px 16px;
    margin-bottom: 18px;
    display: none;
  }

  .lead-popup-benefit,
  .lead-popup-trust-item {
    font-size: 15px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .lead-field.lead-full {
    grid-column: auto;
  }

  .lead-field input {
    height: 48px;
    font-size: 16px;
    border-radius: 14px;
    border: 2px solid #ddd;
  }

  .lead-popup-submit {
    height: 54px;
    font-size: 18px;
    border-radius: 14px;
  }

  .lead-popup-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lead-popup-note {
    font-size: 14px;
  }

  .search-overlay {
    padding: 12px;
    align-items: flex-start;
  }

  .mm-search-loader {
    border-radius: 0;
    min-height: 100vh;
    max-width: 100%;
    box-shadow: none;
  }

  .mm-loader-header {
    padding: 26px 18px 18px;
  }

  .mm-loader-logo {
    max-width: 220px;
  }

  .mm-loader-divider {
    width: 100%;
    border-radius: 0;
    height: 4px;
  }

  .mm-loader-body {
    padding: 28px 18px 30px;
  }

  .mm-loader-title {
    font-size: 34px;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .mm-loader-subtitle {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .mm-loader-steps-card {
    border-radius: 18px;
  }

  .mm-loader-step {
    padding: 18px 18px;
  }

  .mm-step-left {
    gap: 12px;
  }

  .mm-step-icon {
    font-size: 22px;
    width: 28px;
  }

  .mm-step-text {
    font-size: 17px;
    line-height: 1.3;
  }

  .mm-step-check {
    font-size: 18px;
  }

  .mm-loader-progress {
    padding: 16px 14px 18px;
  }

  .mm-loader-progress::before,
  .mm-loader-progress span {
    height: 12px;
  }

  .mm-loader-progress span {
    margin-top: -12px;
  }

  .mm-loader-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 24px 0 20px;
  }

  .mm-benefit {
    font-size: 17px;
    gap: 10px;
  }

  .mm-benefit span {
    font-size: 21px;
  }

  .mm-loader-highlight {
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 18px;
    gap: 12px;
    margin-bottom: 22px;
    text-align: left;
  }

  .mm-loader-highlight-icon {
    font-size: 28px;
    margin-top: 2px;
  }

  .mm-loader-privacy {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    border-radius: 18px;
    padding: 18px 16px;
  }

  .mm-loader-privacy-icon {
    font-size: 28px;
  }

  .mm-loader-privacy-text {
    font-size: 16px;
    line-height: 1.55;
  }
}

@media (max-width: 640px) {
  .lead-popup-box {
    padding: 22px 16px 18px;
  }

  .lead-popup-head h3 {
    font-size: 16px;
    padding-right: 28px;
  }

  .lead-form-grid {
    grid-template-columns: 1fr;
  }

  .motori-results-section {
    padding: 30px 12px 50px;
  }

  .motori-results-top {
    align-items: flex-start;
  }

  .motori-results-title {
    font-size: 18px;
  }

  .motori-results-order {
    width: 100%;
  }

  .motori-results-order select {
    width: 100%;
    min-width: 100%;
  }

  .motori-results-grid {
    grid-template-columns: 1fr;
  }

  .motore-card-title {
    min-height: auto;
  }
}