:root {
      --bg: #0f1115;
      --surface: #ffffff;
      --surface-2: #f6f7f9;
      --text: #101828;
      --muted: #667085;
      --line: #e4e7ec;
      --primary: #ff6a00;
      --primary-dark: #df5c00;
      --success: #12b76a;
      --shadow: 0 20px 60px rgba(16, 24, 40, 0.16);
      --radius: 22px;
      --radius-sm: 14px;
      --container: 1350px;
    }

    * {
      box-sizing: border-box;
    }
/* ===============================
   PAGINA PRODOTTO
================================ */
.prodotto,
.descrizioneprodotto,
.caratteristiche-motore {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.prodotto {
  padding: 24px 20px 10px;
}

/* ===============================
   BREADCRUMB
================================ */
.head-prodotto {
  margin-bottom: 18px;
}

.urldestination {
  font-size: 14px;
  line-height: 1.5;
  color: #7a7a7a;
}

.urldestination a {
  color: #7a7a7a;
  text-decoration: none;
}

.urldestination a:hover {
  text-decoration: underline;
}

/* ===============================
   LAYOUT 2 COLONNE
================================ */
.struttura-prodotto {
  display: flex;
  align-items: flex-start;
  gap: 42px;
}

/* ===============================
   COLONNA IMMAGINE
================================ */
.slide-prodotto {
  flex: 0 0 48%;
  background: #fff;
  border: 1px solid #d9d9d9;
  padding: 18px;
  box-sizing: border-box;
}

.slide-prodotto img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===============================
   COLONNA DESTRA
================================ */
.layoutdestro-prodotto {
  flex: 1;
  min-width: 0;
}

.titoloprod {
  width: 100%;
}

.infotitolo h3 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 800;
  color: #1b1b1b;
}

.infotitolo h4 {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: #1b1b1b;
}

/* ===============================
   BADGE DISPONIBILITA'
================================ */
.disponibilita {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 26px;
  margin: 8px 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #009688 0%, #009673 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  box-sizing: border-box;
}

/* ===============================
   TESTI EXTRA
================================ */
.extrainfo {
  margin-bottom: 18px;
}

.extrainfo p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #1f1f1f;
}

.extratag {
  display: inline-block;
  margin: 8px 0 22px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f4f6f8;
  color: #333;
  font-size: 14px;
  font-weight: 700;
}

/* ===============================
   BOTTONE ACQUISTO
================================ */
.acquista {
  margin-top: 6px;
}

.acquistawp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 54px;
  padding: 0 28px;
  background: #f58e01;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.acquistawp:hover {
  background: #e61d17;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

/* ===============================
   DESCRIZIONE
================================ */
.descrizioneprodotto {
  padding: 28px 20px 0;
}

.titledescr {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
  color: #1b1b1b;
}

.descrizioneprodotto p {
  margin: 0;
  padding: 22px;
  border: 1px solid #e2e2e2;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  color: #303030;
  box-sizing: border-box;
}

/* ===============================
   CARATTERISTICHE TECNICHE
================================ */
.caratteristiche-motore {
  padding: 28px 20px 40px;
}

.tabella-caratteristiche {
  width: 100%;
  border: 1px solid #e2e2e2;
  background: #fff;
  box-sizing: border-box;
}

.riga-caratteristica {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 1px solid #ededed;
}

.riga-caratteristica:last-child {
  border-bottom: none;
}

.riga-caratteristica strong {
  flex: 0 0 220px;
  font-size: 15px;
  font-weight: 800;
  color: #111;
}

.riga-caratteristica span {
  flex: 1;
  text-align: right;
  font-size: 15px;
  color: #444;
}

/* ===============================
   TABLET
================================ */
@media (max-width: 1100px) {
  .struttura-prodotto {
    gap: 26px;
  }

  .infotitolo h3 {
    font-size: 28px;
  }
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 768px) {
  .prodotto,
  .descrizioneprodotto,
  .caratteristiche-motore {
    padding-left: 15px;
    padding-right: 15px;
  }

  .struttura-prodotto {
    flex-direction: column;
    gap: 22px;
  }

  .slide-prodotto,
  .layoutdestro-prodotto {
    flex: 0 0 100%;
    width: 100%;
  }

  .slide-prodotto {
    padding: 12px;
  }

  .infotitolo h3 {
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .infotitolo h4 {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .disponibilita {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
    line-height: 1.4;
    min-height: auto;
  }

  .acquista {
    width: 100%;
  }

  .acquistawp {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    font-size: 17px;
  }

  .titledescr {
    font-size: 24px;
  }

  .descrizioneprodotto p {
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .tabella-caratteristiche {
    border: 1px solid #e2e2e2;
  }

  .riga-caratteristica {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px;
  }

  .riga-caratteristica strong {
    flex: none;
    font-size: 14px;
  }

  .riga-caratteristica span {
    text-align: left;
    font-size: 14px;
  }
}

/* ===============================
   MOBILE PICCOLO
================================ */
@media (max-width: 480px) {
  .infotitolo h3 {
    font-size: 22px;
  }

  .infotitolo h4 {
    font-size: 24px;
  }

  .urldestination {
    font-size: 12px;
  }

  .extrainfo p {
    font-size: 15px;
  }
}
.statsf-box {display:flex;flex-direction:column;gap: 10px;}
.stats-text {font-size:22px;padding: 0;margin: 0;}
.stats-item {display:flex;flex-direction:row;gap:20px;justify-content: flex-start;align-items: center;height: auto;padding: 0;margin: 0;}
.stats-icon{
  width: 40px;
  height: 40px;
  background: #5f9d7c;
  border-radius: 10px;
  position: relative;
  display: inline-block;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.stats-icon::before{
  content: "";
  position: absolute;
  left: 11px;
  top: 10px;
  width: 15px;
  height: 8px;
  border-left: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  transform: rotate(-45deg);
  border-radius: 1px;
}
.mano-hero {width: 500px;position: fixed;right: -40%;height: 800px;background: url(../immagini/mano-heroo.png) no-repeat right/contain;z-index: 9;top: 0;}
.mm24-seller-section {
  padding: 40px 0;
  background: #eeeef1;
  /* font-family: Arial, Helvetica, sans-serif; */
}

.mm24-seller-wrap {
  max-width: 1450px;
  margin: 0 auto;
  /* background: linear-gradient(180deg, #f7f7fb 0%, #f4f4f8 100%); */
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(21, 32, 72, 0.05);
}

.mm24-seller-top {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: center;
  /* padding: 18px 30px 0; */
}

.mm24-seller-content {
  padding: 0 0 20px;
}

.mm24-seller-title {
  margin: 0 0 24px;
  font-size: 29px;
  line-height: 1.15;
  font-weight: 700;
  color: #22284a;
  letter-spacing: -0.5px;
}

.mm24-seller-title span {
  color: #f58c00;
}

.mm24-seller-text {
  max-width: 520px;
  margin: 0 0 28px;
  font-size: 25px;
  line-height: 1.5;
  color: #40455f;
  font-weight: 400;
}

.mm24-seller-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 248px;
  height: 54px;
  padding: 0 28px;
  background: linear-gradient(180deg, #012c60 0%, #012c60 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(31, 85, 178, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.mm24-seller-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31, 85, 178, 0.28);
  filter: brightness(1.03);
}

.mm24-seller-image-box {
  position: relative;
}

.mm24-seller-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(16, 28, 66, 0.10);
}
.engine-search-section .mm24-seller-bottom {padding: 15px 30px;}
.mm24-seller-bottom {
  border-top: 1px solid #e6e8f0;
  padding: 34px 30px 22px;
}

.mm24-seller-subtitle {
  margin: 0 0 22px;
  font-size: 30px;
  line-height: 1.15;
  color: #22284a;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.mm24-seller-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 44px;
}

.mm24-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mm24-feature-item {
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.35;
  color: #012c60;
  font-weight: 400;
}

.mm24-feature-item:last-child {
  margin-bottom: 0;
}

.mm24-feature-item::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 24px;
  font-family:'arial';
  line-height: 1;
  font-weight: 700;
  color: #69b67d;
}

/* Stato iniziale animazioni */
.mm24-anim {
  opacity: 0;
  will-change: transform, opacity;
}

.mm24-fade-up {
  transform: translateY(35px);
}

.mm24-fade-right {
  transform: translateX(45px);
}

.mm24-show {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.delay-2.mm24-show {
  transition-delay: 0.15s;
}

.delay-3.mm24-show {
  transition-delay: 0.25s;
}

.delay-4.mm24-show {
  transition-delay: 0.35s;
}

.delay-5.mm24-show {
  transition-delay: 0.45s;
}

/* Tablet */
@media (max-width: 1024px) {
  .mm24-seller-top {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 28px 24px 0;
  }

  .mm24-seller-content {
    order: 1;
  }

  .mm24-seller-image-box {
    order: 2;
  }

  .mm24-seller-text {
    max-width: 100%;
    font-size: 21px;
  }

  .mm24-seller-title {
    font-size: 25px;
  }

  .mm24-seller-subtitle {
    font-size: 28px;
  }

  .mm24-feature-item {
    font-size: 21px;
  }

  .mm24-seller-features {
    gap: 20px 28px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .mm24-seller-section {
    padding: 20px 0;
  }

  .mm24-seller-top {
    padding: 22px 18px 0;
  }

  .mm24-seller-bottom {
    padding: 26px 18px 18px;
    display: none;
  }

  .mm24-seller-title {
    font-size: 21px;
    margin-bottom: 16px;
  }

  .mm24-seller-text {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .mm24-seller-btn {
    width: 100%;
    min-width: 100%;
    height: 50px;
    font-size: 18px;
  }

  .mm24-seller-subtitle {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .mm24-seller-features {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mm24-feature-item {
    font-size: 18px;
    padding-left: 30px;
    margin-bottom: 14px;
  }

  .mm24-feature-item::before {
    font-size: 20px;
    top: 0;
  }

  .mm24-seller-image {
    border-radius: 10px;
  }
}
 .process-section {
      padding: 70px 20px 90px;
      background: #ffffff;
      overflow: hidden;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-top-text {
      /* max-width: 1100px; */
      margin: 0 auto 48px;
      font-size: clamp(16px, 2.2vw, 22px);
      line-height: 1.5;
      color: #2a3050;
      text-align: left;
    }

    .section-title {
      text-align: center;
      font-size: clamp(32px, 3vw, 52px);
      line-height: 1.1;
      font-weight: 700;
      color: #161c3d;
      margin-bottom: 42px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .process-card {
      position: relative;
      background: rgba(255,255,255,0.92);
      border-radius: 22px 22px 0 0;
      overflow: hidden;
      box-shadow: 0 14px 40px rgba(17, 24, 39, 0.08);
      border: 1px solid rgba(29, 38, 79, 0.06);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      opacity: 0;
      transform: translateY(50px);
    }

    .process-card.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .process-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(17, 24, 39, 0.14);
    }

    .process-card-media {
      position: relative;
      height: 220px;
      overflow: hidden;
      background: #dfe6f3;
    }

    .process-card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1);
      transition: transform 0.6s ease;
    }

    .process-card:hover .process-card-media img {
      transform: scale(1.06);
    }

    .step-badge {
      position: absolute;
      top: 0;
      left: 0;
      width: 68px;
      height: 68px;
      background: #eef3fb;
      color: #39548d;
      font-size: 34px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border-bottom-right-radius: 18px;
      z-index: 2;
      box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    }

    .process-card-content {
      padding: 28px 22px 26px;
    }

    .process-card h3 {
      font-size: 19px;
      line-height: 1.25;
      color: #1c2343;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .process-card p {
      font-size: 16px;
      color: #4f5673;
      line-height: 1.65;
    }

    .process-card::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 3px;
      background: linear-gradient(90deg, #5b84d7, #90a9e8);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }

    .process-card:hover::after {
      transform: scaleX(1);
    }

    /* Tablet */
    @media (max-width: 1199px) {
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-card-media {
        height: 240px;
      }
    }

    /* Mobile */
    @media (max-width: 767px) {
      .process-section {
        padding: 50px 16px 70px;
      }

      .section-top-text {
        margin-bottom: 34px;
        text-align: left;
      }

      .section-title {
        margin-bottom: 28px;
      }

      .process-grid {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .process-card-media {
        height: 210px;
      }

      .step-badge {
        width: 58px;
        height: 58px;
        font-size: 28px;
      }

      .process-card-content {
        padding: 22px 18px 22px;
      }
    }
  :root {
      --primary: #1f56b5;
      --primary-dark: #173f86;
      --text: #21274a;
      --text-soft: #4b516f;
      --white: #ffffff;
      --bg: #f4f5fb;
      --card: rgba(255, 255, 255, 0.78);
      --shadow: 0 20px 50px rgba(18, 31, 73, 0.12);
      --radius: 18px;
      --transition: 0.35s ease;
    }

   

    .hero-mm24 {
      position: relative;
      overflow: hidden;
      /* border-radius: 28px; */
      /* background: linear-gradient(90deg, rgb(0 42 236) 0%, rgb(198 198 220) 45%, rgb(216 196 196) 62%, rgb(66 76 138 / 18%) 78%, rgb(144 144 144 / 58%) 100%), url(your-image.jpg) center right / cover no-repeat; */
      min-height: 600px;
      display: flex;
      align-items: center;
      /* box-shadow: var(--shadow); */
    }

    .hero-mm24::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("../immagini/sfondo-hero.jpg") center/ cover no-repeat;
      pointer-events: none;
    }

    .hero-mm24__container {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1320px;
      margin: 0 auto;
      padding: 50px 60px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 30px;
    }

    .hero-mm24__content {
      max-width: 650px;
    }

    .hero-mm24__title,
    .hero-mm24__desc,
    .hero-mm24__actions {
      opacity: 0;
      transform: translateY(28px);
    }

    .hero-mm24__title {
      font-size: clamp(34px, 4vw, 64px);
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -1.6px;
      color: var(--text);
      margin-bottom: 18px;
    }

    .hero-mm24__desc {
      font-size: clamp(18px, 1.5vw, 22px);
      line-height: 1.45;
      color: var(--text-soft);
      max-width: 760px;
      margin-bottom: 34px;
    }

    .hero-mm24__actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 190px;
      padding: 18px 28px;
      border-radius: 12px;
      border: 1px solid transparent;
      text-decoration: none;
      font-size: 17px;
      font-weight: 600;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
      position: relative;
      overflow: hidden;
    }

    .hero-btn::after {
      content: "";
      position: absolute;
      top: 0;
      left: -120%;
      width: 80%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
      transform: skewX(-20deg);
      transition: left 0.6s ease;
    }

    .hero-btn:hover::after {
      left: 140%;
    }

    .hero-btn--primary {
      background: linear-gradient(180deg, #012b61 0%, #002b61 100%);
      color: #fff;
      /* box-shadow: 0 14px 28px rgba(31, 86, 181, 0.28); */
    }

    .hero-btn--primary:hover {
      transform: translateY(-3px);
      /* box-shadow: 0 18px 34px rgba(31, 86, 181, 0.34); */
    }

    .hero-btn--secondary {
      background: rgba(255,255,255,0.85);
      color: var(--text);
      border-color: rgb(213 223 235);
      /* box-shadow: 0 8px 18px rgba(18, 31, 73, 0.08); */
      /* backdrop-filter: blur(6px); */
    }

    .hero-btn--secondary:hover {
      transform: translateY(-3px);
      background: #fff;
      /* box-shadow: 0 14px 28px rgba(18, 31, 73, 0.12); */
    }

    .hero-mm24__media {
      min-height: 300px;
    }

    .hero-mm24.is-visible .hero-mm24__title {
      animation: fadeUp 0.75s ease forwards;
    }

    .hero-mm24.is-visible .hero-mm24__desc {
      animation: fadeUp 0.75s ease 0.18s forwards;
    }

    .hero-mm24.is-visible .hero-mm24__actions {
      animation: fadeUp 0.75s ease 0.34s forwards;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(28px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 1024px) {
      .hero-mm24 {
        min-height: 380px;
        background:
          linear-gradient(180deg, rgba(244,245,251,0.98) 0%, rgba(244,245,251,0.94) 48%, rgba(244,245,251,0.78) 100%),
          url("your-image.jpg") center right / cover no-repeat;
      }

      .hero-mm24__container {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 50px 40px;
      }
.mano-hero { display:none }
      .hero-mm24__media {
        display: none;
      }

      .hero-mm24__content {
        max-width: 100%;
      }
    }

    @media (max-width: 767px) {
      body {
        /* padding: 16px; */
      }

      .hero-mm24 {
        border-radius: 22px;
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(244,245,251,0.96) 0%, rgba(244,245,251,0.97) 100%),
          url("your-image.jpg") center right / cover no-repeat;
      }

      .hero-mm24__container {
        padding: 36px 22px;
      }

      .hero-mm24__title {
        letter-spacing: -1px;
        margin-bottom: 14px;
      }

      .hero-mm24__desc {
        margin-bottom: 24px;
      }

      .hero-mm24__actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-btn {
        width: 100%;
        min-width: 100%;
        padding: 16px 20px;
      }
    }
.mini-title {
      display: inline-block;
      color: #f68e00;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
      background: #FF9800;
      width: 100%;
      height: 2px;
    }
    .steps-section {
      position: relative;
      padding: 40px 20px 70px;
      background: linear-gradient(180deg, #184f9e 0%, #0d3f84 100%);
      overflow: hidden;
    }

    .container {
      max-width: 1450px;
      margin: 0 auto;
    }

    .section-head {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 55px;
    }
.steps-section .section-head {
      text-align: center;
      width: 100%;
      margin: 0 auto 55px;
      color:#fff;
      max-width: 1400px;
    }
    .section-head .mini-title {
      display: inline-block;
      color: #f68e00;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 14px;
      background: #FF9800;
      width: 100%;
      height: 2px;
    }

    .section-head h2 {
      font-size: 54px;
      line-height: 1.1;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .section-head h2 span {
      color: #f69201;
    }

    .section-head p {
      font-size: 20px;
      line-height: 1.6;
      color: #d9e4ff;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-bottom: 30px;
    }

    .step-card {
      position: relative;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 24px;
      padding: 0px 10px 10px;
      text-align: center;
      backdrop-filter: blur(8px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.22);
      transition: all 0.35s ease;
      opacity: 0;
      transform: translateY(40px);
    }

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

    .step-card:hover {
      transform: translateY(-8px);
      border-color: rgba(255, 200, 61, 0.55);
      box-shadow: 0 18px 45px rgba(0,0,0,0.32);
    }

    .step-number {
      position: absolute;
      top: 16px;
      left: 16px;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(180deg, #f68f01, #f78f01);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 800;
      /* box-shadow: 0 8px 20px rgba(255,180,0,0.3); */
    }

    .step-icon {
      width: 92px;
      height: 92px;
      margin: 40px auto 24px;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 40px;
      color: #ffffff;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.10);
    }

    .step-card h3 {
      font-size: 16px;
      line-height: 1.2;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 14px;
      color: #fff;
    }

    .step-line {
      width: 52px;
      height: 4px;
      margin: 0 auto 16px;
      border-radius: 50px;
      background: linear-gradient(90deg, #f68f01, #f68f00);
    }

    .step-card p {
      font-size: 16px;
      line-height: 1.7;
      color: #d8e2ff;
    }

    .features-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 20px;
    }

    .feature-box {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 18px;
      padding: 18px;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.4s ease;
    }

    .feature-box.show {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-box i {
      font-size: 26px;
      color: #ffffff;
      min-width: 32px;
    }

    .feature-box h4 {
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 4px;
      color: #fff;
    }

    .feature-box p {
      font-size: 14px;
      color: #d8e2ff;
      line-height: 1.5;
    }

    @media (max-width: 1100px) {
      .steps-grid,
      .features-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-head h2 {
        font-size: 42px;
      }

      .section-head p {
        font-size: 18px;
      }
    }

    @media (max-width: 767px) {
      .steps-section {
        padding: 70px 16px 50px;
      }

      .section-head {
        margin-bottom: 35px;
      }

      .section-head h2 {
        font-size: 32px;
      }

      .section-head p {
        font-size: 16px;
      }

      .steps-grid,
      .features-row {
        grid-template-columns: 1fr;
      }

      .step-card {
        padding: 26px 18px 24px;
      }

      .step-icon {
        width: 82px;
        height: 82px;
        font-size: 34px;
      }

      .step-card h3 {
        font-size: 21px;
      }

      .step-card p {
        font-size: 15px;
      }
    }
      .motori-section {
        background: #f4f2f5;
        padding: 32px 0 26px;
        overflow: hidden;
    }

    .motori-container {
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 18px;
        box-sizing: border-box;
    }

    .motori-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 42px;
        margin-bottom: 52px;
    }

    .motori-row.reverse {
        align-items: stretch;
    }

    .motori-text,
    .motori-image {
        width: 50%;
    }

    .motori-text h2 {
        margin: 0 0 16px;
        font-size: 25px;
        line-height: 1.2;
        font-weight: 700;
        color: #24345f;
        letter-spacing: -0.3px;
    }

    .motori-text .motori-intro {
        font-weight: 700;
        color: #1c1c1c;
        margin-bottom: 16px;
    }

    .motori-text p {
        margin: 0 0 14px;
        font-size: 15px;
        line-height: 1.72;
        color: #2d2d2d;
        text-align: justify;
    }

    .motori-text p:last-child {
        margin-bottom: 0;
    }

    .motori-image img {
        width: 100%;
        height: 100%;
        min-height: 265px;
        display: block;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .motori-note {
        background: #e9e7eb;
        color: #3d3d3d;
        font-size: 14px;
        line-height: 1.5;
        text-align: center;
        padding: 13px 18px;
        border-radius: 6px;
    }

    /* ANIMAZIONI */
    .reveal {
        opacity: 0;
        transition: opacity 0.8s ease, transform 0.8s ease;
        will-change: transform, opacity;
    }

    .reveal-left {
        transform: translateX(-60px);
    }

    .reveal-right {
        transform: translateX(60px);
    }

    .reveal-up {
        transform: translateY(40px);
    }

    .reveal.active {
        opacity: 1;
        transform: translate(0, 0);
    }

    .motori-image img {
        transition: transform 0.45s ease, box-shadow 0.45s ease;
    }

    .motori-row:hover .motori-image img {
        transform: scale(1.02);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
    }

    /* TABLET */
    @media screen and (max-width: 991px) {
        .motori-row {
            gap: 26px;
            margin-bottom: 42px;
        }

        .motori-text h2 {
            font-size: 22px;
        }

        .motori-text p {
            font-size: 14px;
            line-height: 1.65;
        }

        .motori-image img {
            min-height: 230px;
        }
    }

    /* MOBILE */
    @media screen and (max-width: 767px) {
        .motori-section {
            padding: 24px 0 20px;
        }

        .motori-row,
        .motori-row.reverse {
            flex-direction: column;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 34px;
        }

        .motori-text,
        .motori-image {
            width: 100%;
        }

        .motori-text h2 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .motori-text .motori-intro {
            margin-bottom: 12px;
        }

        .motori-text p {
            font-size: 14px;
            margin-bottom: 12px;
        }

        .motori-image img {
            min-height: 220px;
            border-radius: 8px;
        }

        .motori-note {
            font-size: 13px;
            padding: 12px 14px;
        }
    }
    .carousel{
  overflow:hidden;
  position:relative;
}

.track{
  display:flex;
  transition:.4s ease;
}

.slide{
  min-width: 15%;
  padding:10px;
}

.card{
  background:#fff;
  border-radius:18px;
  border:1px solid #eee;
  overflow:hidden;
}

.card img{
  width:100%;
  height:180px;
  object-fit:cover;
}

.content{
  padding:16px;
}

.stars{
  color:#c79a2c;
  margin-bottom:8px;
}

.text{
  font-size: 14px;
  font-weight:600;
  margin-bottom:8px;
}

.author{
  font-size:14px;
  color: #006ae9;
  font-weight: bold;
}

.engine{
  margin-top:10px;
  font-size: 14px;
  font-weight: 500;
}

.engine small{
  display:block;
  color:#777;
  font-weight:normal;
}

.carousel .nav{
  position:absolute;
  top:50%;
  width:100%;
  display:flex;
  justify-content:space-between;
  transform:translateY(-50%);
}

.carousel.btn{
  width:45px;
  height:45px;
  border-radius:50%;
  border:none;
  background:#173f86;
  color:#fff;
  cursor:pointer;
}

.dots{
  margin-top:20px;
  text-align:center;
}

.dot{
  width:10px;
  height:10px;
  background:#ccc;
  border-radius:50%;
  display:inline-block;
  margin:5px;
  cursor:pointer;
}

.dot.active{
  background:#173f86;
}

@media(max-width:1000px){
  .slide{min-width:50%;}
}

@media(max-width:600px){
  .carousel .nav{ display:none }
  .slide{min-width: 50%;}
  h2{font-size:28px;}
}
      .top-features-wrapper {
      max-width: 1500px;
      margin: 30px auto 20px;
    }

    .top-features {
      background: #fff;
      border-radius: 20px;
      padding: 22px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
      overflow: hidden;
    }

    .feature-item {
      flex: 1 1 0;
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      position: relative;
      padding: 6px 10px;
    }

    .feature-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 10%;
      right: -9px;
      width: 1px;
      height: 80%;
      background: #e9e9e9;
    }
.feature-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 32px;
  color: #032d61; /* oro */
}
    .feature-icon {
      flex: 0 0 58px;
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .feature-icon svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .feature-text {
      min-width: 0;
      line-height: 1.15;
    }

    .feature-title {
      font-size: 19px;
      font-weight: 700;
      color: #1f2b3a;
      margin-bottom: 3px;
    }

    .feature-subtitle {
      font-size: 14px;
      color: #6f7782;
      font-weight: 500;
    }

    .rating-number {
      color: #f68e02;
      font-size: 50px;
      font-weight: 800;
      line-height: 1;
      margin-right: 4px;
      /* font-family: Georgia, "Times New Roman", serif; */
    }

    .rating-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

   .rating-content .stars {
      color: #f78f01;
      font-size: 29px;
      letter-spacing: 2px;
      line-height: 1;
      margin-bottom: 6px;
    }

    .rating-label {
      font-size: 15px;
      color: #6f6f6f;
      font-weight: 500;
      white-space: nowrap;
    }

    .feature-item.rating-box {
      gap: 10px;
    }

    /* Tablet */
    @media (max-width: 1100px) {
      .top-features {
        flex-wrap: wrap;
        row-gap: 22px;
      }

      .feature-item {
        flex: 1 1 calc(50% - 12px);
      }

      .feature-item:nth-child(2)::after {
        display: none;
      }
    }

    /* Mobile */
    @media (max-width: 640px) {
      .top-features {
         padding: 18px;
    border-radius: 22px;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per riga */
    gap: 16px;
      }.feature-text{text-align:center}
      .feature-item {
        flex: 1 1 100%;
        padding: 8px 0;
        /* width: 25%; */
        flex-direction: column;
      }

      .feature-item::after {
        display: none !important;
      }

      .feature-title {
        font-size: 18px;
      }

      .feature-subtitle,
      .rating-label {
        font-size: 14px;
      }

      .rating-number {
        font-size: 36px;
      }

      .feature-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
      }
    }
      :root {
    --green-main: #62923c;
    --green-dark: #406229;
    --green-deep: #2e4922;
    --orange-main: #ef7d00;
    --orange-dark: #cf6800;
    --white: #ffffff;
    --line: #d8d8d8;
    --text-muted: #747b87;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }
     .engine-search-section {
      padding: 30px 20px 50px;
      background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    }

    .engine-search-container {
      max-width: 1450px;
      margin: 0 auto;
    }

    .engine-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 30px;
      /* margin-bottom: 26px; */
      flex-wrap: wrap;
    }

    .engine-top-left h2 {
      font-size: 30px;
      line-height: 1.15;
      font-weight: 800;
      color: #162744;
      margin-bottom: 10px;
    }

    .engine-top-left p {
      font-size: 17px;
      color: #24344d;
    }

    .engine-top-right {
      display: flex;
      gap: 34px;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-end;
      margin: 30px 0;
    }

    .engine-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      min-width: 170px;
      /* width: 100%; */
    }

    .engine-feature i {
      font-size: 28px;
      color: #162744;
      margin-top: 2px;
    }

    .engine-feature span {
      font-size: 15px;
      line-height: 1.25;
      color: #162744;
    }

    .engine-search-box {
      position: relative;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 28px rgba(0,0,0,0.10);
      overflow: hidden;
      min-height: 300px;
    }

    .engine-tabs {
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid #e4e7ec;
      background: #f2f4f7;
      overflow-x: auto;
    }

    .engine-tab {
      flex: 1;
      min-width: 210px;
      padding: 16px 22px;
      font-size: 14px;
      font-weight: 700;
      color: #162744;
      border: 0;
      background: transparent;
      cursor: pointer;
      position: relative;
      transition: background .25s ease;
    }

    .engine-tab i {
      margin-right: 10px;
    }

    .engine-tab.active {
      background: #fff;
    }

    .engine-tab.active::after {
      content: "";
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 0;
      height: 3px;
      background: #f39200;
      border-radius: 10px;
    }

    .engine-form-wrap {
      padding: 28px 24px 20px;
      position: absolute;
      width: 100%;
      /* min-height: 300px; */
    }

    .engine-panel {
      display: none;
    }

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

    .engine-form-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: end;
    }

    .engine-field label {
      display: block;
      margin-bottom: 10px;
      font-size: 16px;
      font-weight: 600;
      color: #1d2d46;
    }

    .engine-field input,
    .engine-field select {
      width: 100%;
      height: 50px;
      border: 1px solid #cfd5dd;
      border-radius: 10px;
      padding: 0 15px;
      font-size: 15px;
      background: #fff;
      color: #23334f;
      outline: none;
      transition: border-color .25s ease, box-shadow .25s ease;
    }

    .engine-field input:focus,
    .engine-field select:focus {
      border-color: #f39200;
      box-shadow: 0 0 0 4px rgba(243,146,0,.12);
    }

    .engine-submit-col {
      display: flex;
      flex-direction: column-reverse;
      gap: 14px;
      justify-content: flex-end;
      align-items: stretch;
    }

    .engine-submit-btn {
      height: 50px;
      border: 0;
      border-radius: 10px;
      background: #f49102;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
      /* box-shadow: 0 10px 24px rgba(243,146,0,.25); */
    }

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

    .engine-submit-btn i {
      margin-right: 10px;
    }

    .engine-advanced {
      display: inline-flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      color: #162744;
      text-decoration: none;
    }

    .engine-results {
      padding: 0 24px 28px;
      display: none;
    }

    .engine-results.show {
      display: block;
    }

    .engine-results-inner {
      margin-top: 8px;
      padding: 22px;
      background: #f8fafc;
      border: 1px solid #e5e7eb;
      border-radius: 14px;
    }

    .engine-results-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 16px;
      color: #162744;
    }

    .result-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .result-card {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #e6e9ef;
      box-shadow: 0 8px 24px rgba(0,0,0,.05);
      padding: 18px;
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .result-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 30px rgba(0,0,0,.08);
    }

    .result-card h4 {
      font-size: 18px;
      margin-bottom: 8px;
      color: #162744;
    }

    .result-card p {
      font-size: 14px;
      line-height: 1.6;
      color: #40516d;
      margin-bottom: 8px;
    }

    .result-card a {
      color: #f39200;
      text-decoration: none;
      font-weight: 700;
    }

    .company-card {
      text-align: center;
      padding: 24px 18px;
    }

    .company-card img {
      max-width: 130px;
      max-height: 70px;
      object-fit: contain;
      margin-bottom: 14px;
    }

   

   
    .search-overlay-content {
      width: 100%;
      max-width: 900px;
      text-align: center;
      /* height: 100%; */
    }

    .search-overlay-content h3 {
      font-size: 16px;
      color: #162744;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .search-overlay-content p {
      color: #4b5d78;
      font-size: 12px;
      margin-bottom: 12px;
    }

    .search-progress-bar {
      width: 100%;
      max-width: 520px;
      height: 10px;
      background: #e5e7eb;
      border-radius: 20px;
      margin: 0 auto 32px;
      overflow: hidden;
    }

    .search-progress-bar span {
      display: block;
      width: 0%;
      height: 100%;
      background: linear-gradient(90deg, #f39200, #ffb54c);
      border-radius: 20px;
    }

    .company-animator {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 170px;
      position: relative;
    }

    .company-orbit {
      position: relative;
      width: 340px;
      height: 340px;
      animation: orbitRotate 7s linear infinite;
    }

    .company-item {
      position: absolute;
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 10px 28px rgba(0,0,0,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(.6) rotate(-30deg);
      transition: opacity .5s ease, transform .5s ease;
      padding: 16px;
    }

    .company-item img {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
    }

    .company-item.active {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .company-item.pos1 { top: 0; left: 115px; }
    .company-item.pos2 { top: 115px; right: 0; }
    .company-item.pos3 { bottom: 0; left: 115px; }
    .company-item.pos4 { top: 115px; left: 0; }

    .search-status {
      margin-top: 18px;
      font-size: 15px;
      color: #40516d;
      min-height: 24px;
    }

    .fade-up {
      opacity: 0;
      transform: translateY(26px);
      transition: all .7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes orbitRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @media (max-width: 1200px) {
      .engine-form-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .result-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 1024px) {
      .engine-top-right {flex-direction:column;display:flex;width: 100%;align-items: center;display: none;}
      .engine-feature {display:flex;flex-direction:column !important;align-items: center;}
      .engine-top-left h2 {
        font-size: 26px;
      }

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

      .engine-submit-col {
        align-items: stretch;
      }

      .engine-submit-btn,
      .engine-advanced {
        width: 100%;
        justify-content: center;
      }

      .result-list {
        grid-template-columns: 1fr;
      }

      .company-orbit {
        width: 260px;
        height: 260px;
      }

      .company-item {
        width: 84px;
        height: 84px;
        padding: 12px;
      }

      .company-item.pos1 { top: 0; left: 88px; }
      .company-item.pos2 { top: 88px; right: 0; }
      .company-item.pos3 { bottom: 0; left: 88px; }
      .company-item.pos4 { top: 88px; left: 0; }

      .search-overlay-content h3 {
        font-size: 24px;
      }
    }
  .motori-cert-section {
  background: #616c7a;
  padding: 80px 20px;
  font-family: Arial, Helvetica, sans-serif;
  position: relative;
  overflow: hidden;
}

.motori-cert-container {
  max-width: 1200px;
  margin: 0 auto;
}

.motori-cert-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.motori-badge {
  display: inline-block;
  /* background: rgba(255, 106, 0, 0.12); */
  color: #bdbdbd;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.motori-cert-heading h2 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
}

.motori-cert-heading p {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #dfdfdf;
}

.motori-cert-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.motori-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(40px);
}

.motori-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motori-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.motori-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  background: #fff3eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f48d02;
  font-size: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 106, 0, 0.12);
}

.motori-card-text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  color: #2c2c2c;
  font-weight: 700;
}

.motori-card-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b4b4b;
}

.motori-step {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 12px;
  font-weight: 800;
  color: rgb(246 143 1 / 60%);
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  .motori-cert-heading h2 {
    font-size: 32px;
  }

  .motori-cert-heading p {
    font-size: 16px;
  }

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

@media (max-width: 575px) {
  .motori-cert-section {
    padding: 60px 15px;
  }

  .motori-cert-heading h2 {
    font-size: 27px;
  }

  .motori-card {
    padding: 22px 18px;
    gap: 14px;
  }

  .motori-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 20px;
  }

  .motori-card-text h3 {
    font-size: 19px;
  }

  .motori-card-text p {
    font-size: 14px;
  }
}
    .motori-section,
  .motori-section * {
    box-sizing: border-box;
  }

  .motori-section {
    padding: 40px 20px;
    background: #f5f5f7;
    font-family: Arial, Helvetica, sans-serif;
  }

  .motori-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: start;
  }

  .motori-filters {
    background: #ffffff;
    border-radius: 16px;
    /* box-shadow: 0 8px 24px rgba(0,0,0,0.08); */
    overflow: hidden;
    /* border: 1px solid #e6e6e6; */
  }

  .motori-filters__head {
    padding: 18px 20px;
    /* background: linear-gradient(135deg, #2f5d25, #3f7431 60%, #2f5d25); */
    color: #000;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
  }

  #motoriFilterForm {
    padding: 18px;
  }

  .filter-group {
    margin-bottom: 16px;
  }

  .filter-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
  }

  .filter-group select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d9d9de;
    border-radius: 50px;
    background: #f8f8fb;
    font-size: 15px;
    color: #495057;
    outline: none;
  }

  .btn-filter {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 50px;
    background: #6082af;
    color: #fff;
    font-size: 16px;
    /* font-weight: 800; */
    cursor: pointer;
    /* box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 6px 18px rgba(36,86,31,0.25); */
  }

  .motori-topbar h2 {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.1;
    color: #000;
    font-weight: 400;
  }

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

  .motore-card {
    background: #fff;
    border-radius: 16px;
    /* border: 1px solid #e7e7ea; */
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .motore-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  }

  .motore-card__image {
    display: block;
    width: calc(100% - 0px);
    height: 170px;
    /* margin: 8px auto 0; */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    background: #2b2b2b;
  }

  .motore-card__body {
    padding: 12px 14px 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;
}

  .motore-card__title {
    font-size: 18px;
    line-height: 1.12;
    font-weight: 600;
    color: #000;
    margin: 0 0 8px;
    min-height: 40px;
  }

  .motore-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #5c6674;
    margin-bottom: 8px;
  }

  .motore-card__badge i {
    color: #4ea94b;
  }

  .motore-card__price {
    font-size: 18px;
    font-weight: 700;
    color: #1f792b;
    margin-bottom: 8px;
  }

  .motore-card__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 12px;
    flex-direction: column;
  }

  .motore-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #f2b01e;
    white-space: nowrap;
  }

  .motore-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    text-decoration: none;
    background: #012c61;
    color: #fff;
    font-size: 16px;
    /* font-weight: 800; */
  }

  .motori-empty {
    grid-column: 1 / -1;
    background: #fff;
    border: 1px dashed #d7d7dc;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    color: #6b7280;
    font-size: 16px;
  }

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

  @media (max-width: 991px) {
    .motori-wrapper {
      grid-template-columns: 1fr;
    }

    .motori-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
      .motore-card__image {
   
    height: 130px;
      }
  }

  @media (max-width: 640px) {
    .motori-section {
      padding: 24px 14px;
    }

    .motori-topbar h2 {
      font-size: 30px;
    }

    .motori-grid {
      /* grid-template-columns: 1fr; */
    }
  }
.trust-bar,
  .trust-bar * {
    box-sizing: border-box;
  }

  .trust-bar {
    /* background: linear-gradient(180deg, #ffffff 0%, #f7f7f9 100%); */
    border-top: 1px solid #ececf1;
    border-bottom: 1px solid #ececf1;
    font-family: Arial, Helvetica, sans-serif;
  }

  .trust-bar__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .trust-item {
    position: relative;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 20px;
    background: #fff;
  }

  .trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 0;
    width: 1px;
    height: calc(100% - 32px);
    background: #e6e6eb;
  }

  .trust-item__icon {
    font-size: 28px;
    color: #f9a443;
    flex-shrink: 0;
  }

  .trust-item__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .trust-item__text strong {
    font-size: 15px;
    color: #1f2937;
  }

  .trust-item__text span {
    font-size: 13px;
    color: #6b7280;
  }

  @media (max-width: 900px) {
    .trust-bar__container {
      grid-template-columns: repeat(2, 1fr);
    }
   .motori-filters {
     display:none
   }
    .trust-item:nth-child(2n)::after {
      display: none;
    }
  }

  @media (max-width: 500px) {
    .trust-bar__container {
      /* grid-template-columns: 1fr; */
    }

    .trust-item::after {
      display: none;
    }
  }
  .hero-search,
  .hero-search * {
    box-sizing: border-box;
  }

.hero-search {
  position: relative;
  overflow: hidden;
  padding: 48px 20px;
  background: #6d7c8f9e;
  min-height: 600px;
  font-family: 'montserrat', Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: flex-start;
}

.hero-search::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../immagini/sfondodesktop.jpg") no-repeat center / cover;
  z-index: -1;
}

.hero-search > * {
  position: relative;
  z-index: 1;
}
  .hero-search__container {
    max-width: 1280px;
    margin: 0 2%;
    display: flex;
    grid-template-columns: minmax(320px, 720px) minmax(420px, 1fr);
    align-items: center;
    gap: 32px;
  }

  .hero-search__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
  }

  .hero-search__visual img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 16px 22px rgba(0,0,0,0.28));
    opacity: 0;
    transform: translateX(-24px);
  }

  .hero-search__content {
    color: var(--white);
    width: 100%;
  }

  .hero-search__content h1 {
    margin: 0 0 14px;
    font-size: clamp(4rem, 3vw, 5.7rem);
    line-height: 1em;
    font-weight: 600;
    letter-spacing: 0em;
    text-wrap: balance;
    opacity: 0;
    transform: translateY(14px);
  }

  .hero-search__content p {
    margin: 0 0 28px;
    font-size: clamp(1rem, 1.4vw, 1.8rem);
    line-height: 1.35;
    color: rgba(255,255,255,0.92);
    opacity: 0;
    transform: translateY(14px);
  }

  .hero-search__form {
    display: flex;
    align-items: stretch;
    gap: 12px;
    background: rgb(235 239 243);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(16px);
  }

  .hero-search__fields {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    /* background: var(--white); */
    gap: 10px;
    overflow: hidden;
    /* border: 1px solid var(--line); */
  }

  .field {
    position: relative;
    /* background: var(--white); */
    border-radius: 8px;
    /* border: 1px solid #ddd; */
  }

  .field + .field {
    /* border-left: 1px solid var(--line); */
  }

  .field::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 0;
    background: #f68d00;
    transition: width 0.2s ease;
  }

  .field:focus-within::before {
    width: 4px;
  }

  .field select,
  .field input {
    width: 100%;
    height: 56px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 18px;
    font-size: 1rem;
    color: #4b5563;
    appearance: none;
  }

  .field select {
    cursor: pointer;
    padding-right: 44px;
  }

  .field--select::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #667085;
    border-bottom: 2px solid #667085;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
  }

  .field input::placeholder {
    color: var(--text-muted);
  }

  .hero-search__button {
    flex: 0 0 auto;
    min-width: 182px;
    border: 0;
    border-radius: 14px;
    padding: 0 24px;
    background: linear-gradient(180deg, #012c61, #012c61);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    /* box-shadow: 0 10px 22px rgba(207, 104, 0, 0.35); */
    white-space: nowrap;
  }

  .hero-search__button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
  }

  .hero-search__button:active {
    transform: translateY(0);
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 1100px) {
    .hero-search__container {
      /* grid-template-columns: 1fr; */
      gap: 16px;
      width: 100%;
    }

    .hero-search__visual {
      min-height: auto;
      justify-content: flex-start;
    }

    .hero-search__visual img {
      max-width: 420px;
    }
  }

  @media (max-width: 820px) {
    .hero-search {
      padding: 36px 16px;
      min-height: auto;
    }
    .motorimarkek-mm-plan-card:first-child { transform:scale(1.0) !important}
 
.motorimarkek-mm-plan-card:last-child:hover ~ .card-centers {
  transform: scale(1) !important;
}
.motorimarkek-mm-plan-card:last-child { transform:scale(1.0) !important}
 .brand-mark {
      width: 260px !important;
      height: 60px;
      /* border-radius: 50%; */
      background: url(../immagini/logomarket.png) no-repeat center/contain;
      /* box-shadow: 0 0 0 6px rgba(255,106,0,0.12); */
    }

    .hero-search__content h1 {
      font-size: 34px;
      text-align: center;
      font-weight: bold;
    }

    .hero-search__content p {
      font-size: 1.2rem;
      margin-bottom: 22px;
      text-align: center;
      font-weight: bold;
    }

    .hero-search__form {
      flex-direction: column;
      padding: 10px;
    }

    .hero-search__fields {
      grid-template-columns: 1fr;
    }

    .field + .field {
      /* border-left: 0; */
      /* border-top: 1px solid var(--line); */
    }

    .hero-search__button {
      width: 100%;
      min-height: 56px;
    }
  }

  @media (max-width: 640px) {
    .hero-search {
      background-position: 24% center;
    }

    .hero-search__visual {
      display: none;
    }

    .hero-search__content h1 {
      margin-bottom: 10px;
      line-height: 1.08;
    }
  }
#content-html { max-width:1380px; margin:auto; width:100%}
    .engine-search-section {
  background: #f5f5f5;
  padding: 35px 0 35px 0;
  overflow: hidden;
  height: auto;
}

.engine-search-container {
  border-bottom: 1px solid #FF5722;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 10px 45px 10px;
  display: grid;
  /* grid-template-columns: 1.05fr 0.95fr; */
  gap: 10px;
  align-items: start;
  grid-auto-flow: row;
}

.engine-search-left {
  position: relative;
}

.engine-search-kicker,
.engine-search-form-kicker {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.engine-search-left h2 {
  margin: 0 0 28px;
  font-size: 62px;
  line-height: 1.02;
  font-weight: 800;
  color: #000;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
}

.engine-search-watermark {
  position: absolute;
  top: 8px;
  left: 0;
  font-size: 170px;
  line-height: 1;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.engine-search-left p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.8;
  color: #222;
  max-width: 780px;
}

.engine-search-left strong {
  color: #d60000;
}

.engine-search-features {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.engine-search-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  color: #222;
}

.engine-search-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #d60000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.engine-search-contact-box {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 22px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  max-width: 520px;
}

.engine-search-contact-box strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 17px;
}

.engine-search-contact-box p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.6;
}

.engine-search-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.engine-search-contact-links a {
  color: #d60000;
  text-decoration: none;
  font-weight: 700;
}

.engine-search-form-box {
  background: #fff;
  padding: 34px 30px;
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.engine-search-form-box h3 {
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #000;
  letter-spacing: -1px;
}

.engine-search-form {
  display: block;
}

.engine-search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.engine-search-field {
  margin-bottom: 16px;
}

.engine-search-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.engine-search-field input,
.engine-search-field select,
.engine-search-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 14px 14px;
  font-size: 16px;
  color: #111;
  outline: none;
  transition: border-color .3s ease, background .3s ease;
}

.engine-search-field input:focus,
.engine-search-field select:focus,
.engine-search-field textarea:focus {
  border-color: #d60000;
  background: #fff;
}

.engine-search-field textarea {
  min-height: 140px;
  resize: vertical;
}

.engine-search-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.engine-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #d60000;
  color: #fff;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .3s ease, transform .3s ease;
}

.engine-search-submit:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.engine-search-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.engine-search-response {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
}

.engine-search-response.success {
  color: #118a2f;
}

.engine-search-response.error {
  color: #c40000;
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all .9s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1200px) {
  .engine-search-left h2 {
    font-size: 50px;
  }

  .engine-search-watermark {
    font-size: 130px;
  }

  .engine-search-left p {
    font-size: 18px;
  }

  .engine-search-form-box h3 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .engine-search-section {
    padding: 15px 0;
  }
.engine-search-box {
  
    min-height: 675px;
}
  .engine-search-container {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 0 24px 30px 0;
  }

  .engine-search-left h2 {
    font-size: 40px;
  }

  .engine-search-watermark {
    font-size: 95px;
    top: 36px;
  }

  .engine-search-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .engine-search-container {
    padding: 0 18px 30px 18px;
    border: none;
  }

  .engine-search-left h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .engine-search-watermark {
    font-size: 68px;
    top: 55px;
  }

  .engine-search-left p {
    font-size: 15px;
    line-height: 1.75;
  }

  .engine-search-feature {
    font-size: 15px;
  }

  .engine-search-form-box {
    padding: 24px 18px;
  }

  .engine-search-form-box h3 {
    font-size: 28px;
  }

  .engine-search-field input,
  .engine-search-field select,
  .engine-search-field textarea {
    font-size: 15px;
  }
}
    .contact-info-section {
  background: #f5f5f5;
  padding: 90px 0 70px;
  overflow: hidden;
}

.contact-info-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 60px;
  align-items: start;
}

.contact-info-left {
  position: relative;
}

.contact-info-kicker,
.contact-form-kicker {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.contact-info-left h2 {
  margin: 0 0 26px;
  font-size: 62px;
  line-height: 1.02;
  font-weight: 800;
  color: #000;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
}

.contact-info-watermark {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 160px;
  line-height: 1;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.contact-info-left p {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.8;
  color: #222;
  max-width: 760px;
}

.contact-info-left strong {
  color: #d60000;
}

.contact-details-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 20px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-detail-item strong {
  display: block;
  font-size: 16px;
  color: #111;
  margin-bottom: 4px;
}

.contact-detail-item span,
.contact-detail-item a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  line-height: 1.6;
}

.contact-form-box {
  background: #fff;
  padding: 34px 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.contact-form-box h3 {
  margin: 0 0 22px;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #000;
  letter-spacing: -1px;
}

.contact-form-custom {
  display: block;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  margin-bottom: 16px;
}

.contact-field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid #ddd;
  background: #fafafa;
  padding: 14px 14px;
  font-size: 16px;
  color: #111;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: #d60000;
  background: #fff;
}

.contact-field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #d60000;
  color: #fff;
  padding: 15px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.contact-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form-response {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 600;
}

.contact-form-response.success {
  color: #0f8a2b;
}

.contact-form-response.error {
  color: #c40000;
}

.contact-map-section {
  background: #434343;
  padding: 0;
}

.contact-map-wrap {
  width: 100%;
  opacity: 0.5 !important;
  margin: 0 auto;
  padding: 0;
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 480px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1200px) {
  .contact-info-left h2 {
    font-size: 50px;
  }

  .contact-info-watermark {
    font-size: 130px;
  }

  .contact-info-left p {
    font-size: 18px;
  }

  .contact-form-box h3 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .contact-info-section {
    padding: 70px 0 50px;
  }

  .contact-info-container {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 24px;
  }

  .contact-info-left h2 {
    font-size: 40px;
  }

  .contact-info-watermark {
    font-size: 95px;
    top: 38px;
  }

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

  .contact-map-section {
    padding: 0 0 70px;
  }

  .contact-map-wrap {
    padding: 0 24px;
  }
}

@media (max-width: 576px) {
  .contact-info-container,
  .contact-map-wrap {
    padding: 0 18px;
  }

  .contact-info-left h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .contact-info-watermark {
    font-size: 66px;
    top: 55px;
  }

  .contact-info-left p {
    font-size: 15px;
    line-height: 1.75;
  }

  .contact-detail-item {
    padding: 16px;
  }

  .contact-detail-item strong,
  .contact-detail-item span,
  .contact-detail-item a {
    font-size: 14px;
  }

  .contact-form-box {
    padding: 24px 18px;
  }

  .contact-form-box h3 {
    font-size: 28px;
  }

  .contact-field input,
  .contact-field textarea {
    font-size: 15px;
  }

  .contact-map-wrap iframe {
    min-height: 320px;
  }
}
    .motori-process {
  background: #ececec;
  padding: 70px 0 80px;
  overflow: hidden;
}

.motori-process-top {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 36px;
}

.motori-process-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 44px;
}

.motori-process-kicker {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 8px;
}

.motori-process-head h2 {
  margin: 0 0 16px;
  font-size: 60px;
  line-height: 1;
  font-weight: 800;
  color: #000;
  letter-spacing: -1.5px;
}

.motori-process-head p {
  margin: 0 auto;
  max-width: 780px;
  font-size: 20px;
  line-height: 1.6;
  color: #222;
}

.motori-process-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.motori-box {
  background: #f9f9f9;
  padding: 26px 22px;
  min-height: 170px;
}

.motori-box h3 {
  margin: 0 0 16px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  color: #000;
}

.motori-box p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #222;
}

.motori-box strong {
  color: #d60000;
}

.motori-detail {
  background: #f7f7f7;
  padding: 80px 0 90px;
  overflow: hidden;
}

.motori-detail-container {
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: start;
}

.motori-detail-text {
  position: relative;
}

.motori-detail-kicker {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.motori-detail-text h2 {
  margin: 0 0 26px;
  font-size: 62px;
  line-height: 1.02;
  font-weight: 800;
  color: #000;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
}

.motori-detail-watermark {
  position: absolute;
  top: 10px;
  left: 0;
  font-size: 170px;
  line-height: 1;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.motori-detail-text p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.8;
  color: #222;
}

.motori-detail-text strong {
  color: #d60000;
}

.motori-list {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.motori-list li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 28px;
  font-size: 18px;
  line-height: 1.75;
  color: #222;
}

.motori-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e60000;
}

.motori-detail-media {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.motori-media-card {
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.motori-media-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1200px) {
  .motori-process-head h2 {
    font-size: 48px;
  }

  .motori-process-head p {
    font-size: 18px;
  }

  .motori-box p {
    font-size: 16px;
  }

  .motori-detail-container {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .motori-detail-text h2 {
    font-size: 48px;
  }

  .motori-detail-watermark {
    font-size: 130px;
  }

  .motori-detail-text p,
  .motori-list li {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .motori-process {
    padding: 55px 0 60px;
  }

  .motori-process-top {
    padding: 0 24px;
  }

  .motori-process-head {
    margin-bottom: 30px;
  }

  .motori-process-head h2 {
    font-size: 40px;
  }

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

  .motori-box {
    min-height: auto;
  }

  .motori-detail {
    padding: 60px 0 70px;
  }

  .motori-detail-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 34px;
  }

  .motori-detail-text h2 {
    font-size: 40px;
  }

  .motori-detail-watermark {
    font-size: 105px;
    top: 38px;
  }
}

@media (max-width: 576px) {
  .motori-process-top,
  .motori-detail-container {
    padding: 0 18px;
  }

  .motori-process-head h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .motori-process-head p {
    font-size: 16px;
  }

  .motori-box {
    padding: 20px 16px;
  }

  .motori-box h3 {
    font-size: 14px;
  }

  .motori-box p {
    font-size: 15px;
    line-height: 1.7;
  }

  .motori-detail-text h2 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .motori-detail-watermark {
    font-size: 72px;
    top: 54px;
  }

  .motori-detail-text p,
  .motori-list li {
    font-size: 15px;
    line-height: 1.75;
  }

  .motori-list li {
    padding-left: 22px;
  }

  .motori-list li::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }

  .motori-media-card {
    padding: 10px;
  }
}
    .about-hero {
  position: relative;
  min-height: 360px;
  background: url("../immagini/chisiamosection.jpg") center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 49%) 0%, rgba(0, 0, 0, 0.48) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 40px;
  color: #fff;
}

.about-hero-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
}

.about-company {
  background: #f5f5f5;
  padding: 90px 0;
  overflow: hidden;
}

.about-company-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.about-company-text {
  position: relative;
}

.about-company-kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #111;
}

.about-company-text h2 {
  margin: 0 0 30px;
  font-size: 60px;
  line-height: 1.02;
  letter-spacing: -2px;
  font-weight: 800;
  color: #000;
  position: relative;
  z-index: 2;
}

.about-company-watermark {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 170px;
  line-height: 1;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.about-company-text p {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.8;
  color: #222;
  max-width: 900px;
  text-align: justify;
}

.about-company-text strong {
  color: #d60000;
  font-weight: 700;
}

.about-company-gallery {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-gallery-item {
  background: #fff;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-gallery-item img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

.about-gallery-item.large img {
  min-height: 250px;
}

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 0.9s ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translate(0, 0);
}

@media (max-width: 1200px) {
  .about-hero h1 {
    font-size: 52px;
  }

  .about-company-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .about-company-text h2 {
    font-size: 46px;
  }

  .about-company-watermark {
    font-size: 130px;
  }

  .about-company-text p {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .about-hero {
    min-height: 280px;
  }

  .about-hero-content {
    padding: 0 24px 28px;
  }

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

  .about-company {
    padding: 70px 0;
  }

  .about-company-container {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 34px;
  }

  .about-company-text h2 {
    font-size: 40px;
  }

  .about-company-watermark {
    font-size: 110px;
    top: 35px;
  }

  .about-company-gallery {
    max-width: 700px;
  }
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 220px;
  }

  .about-hero-content {
    padding: 0 18px 22px;
  }

  .about-hero-kicker {
    font-size: 12px;
  }

  .about-hero h1 {
    font-size: 34px;
  }

  .about-company {
    padding: 50px 0;
  }

  .about-company-container {
    padding: 0 18px;
  }

  .about-company-kicker {
    font-size: 12px;
  }

  .about-company-text h2 {
    font-size: 32px;
    letter-spacing: -1px;
    margin-bottom: 22px;
  }

  .about-company-watermark {
    font-size: 72px;
    top: 55px;
  }

  .about-company-text p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .about-gallery-item {
    padding: 10px;
  }
}
    .whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-btn i {
  font-size: 28px;
  line-height: 1;
}

.whatsapp-btn .ss {
  white-space: nowrap;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  background: #20ba5a;
}

/* Freccina piena sotto il bottone */
.whatsapp-btn::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #25d366;
}

/* Mobile: solo icona, perfetta e pulita */
@media (max-width: 768px) {
  .whatsapp-btn {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    gap: 0;
  }

  .whatsapp-btn .ss {
    display: none;
  }

  .whatsapp-btn i {
    font-size: 32px;
  }

  .whatsapp-btn::after {
    right: 80%;
    transform: translateX(50%)  rotate(40deg);;
    bottom: -1px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #25d366;
  }
}
 .facility-section {
    background: #f3f3f3;
    padding: 40px 0;
    overflow: hidden;
  }

  .facility-container {
    width: min(100%, 1920px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
    min-height: 740px;
  }

  .facility-image {
    position: relative;
    min-height: 740px;
  }

  .facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .facility-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    padding: 60px 70px;
  }

  .facility-content-inner {
    display: flex;
    align-items: flex-start;
  }

  .facility-line {
    width: 2px;
    min-width: 2px;
    height: 540px;
    background: #d64b4b;
    margin-right: 34px;
  }

  .facility-text {
    max-width: 520px;
  }

  .facility-text h2 {
    margin: 0 0 34px;
    font-size: 62px;
    line-height: 1.02;
    font-weight: 300;
    letter-spacing: -1.5px;
    color: #111;
  }

  .facility-text p {
    margin: 0 0 44px;
    font-size: 21px;
    line-height: 1.85;
    font-weight: 300;
    color: #111;
  }

  .facility-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 20px;
    font-weight: 400;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .facility-link:hover {
    opacity: 0.75;
    color: #9e1c10;
  }

  .circle-arrow {
    width: 46px;
    height: 46px;
    border: 1.5px solid #111;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .facility-link:hover .circle-arrow {
    transform: translateX(4px);
    background: transparent;
    border: 1.5px solid #d64b4b;
  }

  .facility-content {
    position: relative;
  }

  .facility-content::before {
    content: "";
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 540px;
    background: #d64b4b;
  }

  .facility-text {
    margin-left: 36px;
  }
.products-content p { text-align:justify }
  .facility-text p { text-align:justify}
  .reveal-left,
  .reveal-right {
    opacity: 0;
    transition: all 1s ease;
  }

  .reveal-left {
    transform: translateX(-60px);
  }

  .reveal-right {
    transform: translateX(60px);
  }

  .reveal-left.active,
  .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
  }

  @media (max-width: 1400px) {
    .facility-container {
      grid-template-columns: 1fr 1fr;
      min-height: auto;
    }

    .facility-image {
      min-height: 620px;
    }

    .facility-content {
      padding: 50px 50px;
    }

    .facility-content::before {
      left: 50px;
      height: 470px;
    }

    .facility-text h2 {
      font-size: 50px;
    }

    .facility-text p {
      font-size: 18px;
      line-height: 1.75;
    }
  }

  @media (max-width: 1088px) {
    .facility-container {
      grid-template-columns: 1fr;
    }

    .facility-image {
      min-height: 420px;
    }

    .facility-content {
      padding: 50px 28px;
      justify-content: flex-start;
    }

    .facility-content::before {
      left: 28px;
      height: calc(100% - 100px);
      top: 50px;
      transform: none;
    }

    .facility-text {
      margin-left: 28px;
      max-width: 100%;
    }

    .facility-text h2 {
      font-size: 42px;
      margin-bottom: 24px;
    }

    .facility-text p {
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 30px;
    }

    .facility-link {
      font-size: 18px;
    }

    .circle-arrow {
      width: 42px;
      height: 42px;
      font-size: 20px;
    }
  }

  @media (max-width: 576px) {
    .facility-section {
      padding: 20px 0;
    }

    .facility-image {
      min-height: 280px;
    }

    .facility-content {
      padding: 34px 20px 40px;
    }

    .facility-content::before {
      left: 20px;
      height: calc(100% - 74px);
      top: 34px;
    }

    .facility-text {
      margin-left: 22px;
    }

    .facility-text h2 {
      font-size: 34px;
      letter-spacing: -1px;
    }

    .facility-text p {
      font-size: 15px;
      line-height: 1.65;
    }

    .facility-link {
      gap: 14px;
      font-size: 16px;
    }

    .circle-arrow {
      width: 38px;
      height: 38px;
      font-size: 18px;
    }
  }
    html {
      scroll-behavior: smooth;
    }
@font-face {
  font-family: 'Karu';
  src: url('../font/karu-regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Montserrat', sans-serif;
}
.engine-tabs-wrapper { width:100%}
  .stats-section {
      position: relative;
      overflow: hidden;
      padding: 70px 20px;
      background: linear-gradient(180deg, #184f9e 0%, #0d3f84 100%);
    }

    .stats-container {
      max-width: 1400px;
      margin: 0 auto;
      text-align: center;
    }

    .stats-title {
      font-size: 52px;
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 18px;
      opacity: 0;
      transform: translateY(30px);
      color: #fff;
      margin: 0 !important;
    }

    .stats-title strong {
      font-weight: 800;
    }

    .stats-subtitle {
      font-size: 24px;
      line-height: 1.4;
      margin-bottom: 50px;
      opacity: 0;
      transform: translateY(30px);
      color: #fff;
    }

    .stats-subtitle strong {
      font-weight: 700;
    }

    .stats-box {
      position: relative;
      border-radius: 28px;
      padding: 40px 25px 30px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.18);
      box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 10px 40px rgba(0,0,0,0.18);
      backdrop-filter: blur(8px);
      opacity: 0;
      transform: translateY(40px);
    }

    .stats-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 15%;
      width: 70%;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(120,220,255,0.95), transparent);
      box-shadow: 0 0 18px rgba(120,220,255,0.9);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-bottom: 30px;
    }

    .stat-item {
      padding: 0px 5px 0px;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
    }

    .stat-item:not(:last-child)::after {
      content: "";
      position: absolute;
      top: 10px;
      right: 0;
      width: 1px;
      height: calc(100% - 20px);
      background: rgba(255,255,255,0.18);
    }
.stat-icon .fas { color:#fff}
    .stat-icon {
      font-size: 40px;
      margin-bottom: 10px;
      line-height: 1;
    }

    .stat-number {
      font-size: 32px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 14px;
      color: #FF9800;
    }

    .stat-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #fff;
    }

    .stat-text {
      font-size: 18px;
      line-height: 1.4;
      color: rgba(255,255,255,0.92);
    }

    .bottom-note {
      display: block;
      align-items: center;
      justify-content: center;
      gap: 20px;
      font-size: 22px;
      line-height: 1.5;
      color: rgba(255,255,255,0.94);
      opacity: 0;
      transform: translateY(20px);
    }

    .bottom-note::before,
    .bottom-note::after {
      content: "";
      width: 70px;
      height: 3px;
      border-radius: 10px;
      background: #f2c94c;
      flex-shrink: 0;
    }

    .bottom-note strong {
      font-weight: 700;
    }

    @media (max-width: 991px) {
      .stats-title {
        font-size: 40px;
      }

      .stats-subtitle {
        font-size: 20px;
      }

      .stat-number {
        font-size: 54px;
      }

      .stat-title {
        font-size: 24px;
      }

      .stat-text {
        font-size: 16px;
      }

      .bottom-note {
        font-size: 18px;
      }
    }

    @media (max-width: 767px) {
      .stats-section {
        padding: 50px 16px;
      }

      .stats-title {
        font-size: 30px;
        margin-bottom: 14px;
      }

      .stats-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
      }

      .stats-box {
        padding: 20px 15px 20px;
        border-radius: 22px;
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 0;
      }

      .stat-item {
        padding: 20px 12px;
      }

      .stat-item:nth-child(2)::after {
        display: none;
      }

      .stat-item:not(:last-child)::after {
        height: calc(100% - 30px);
      }

      .stat-item:nth-child(1),
      .stat-item:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.18);
      }

      .stat-icon {
        font-size: 42px;
        margin-bottom: 12px;
      }

      .stat-number {
        font-size: 40px;
        margin-bottom: 10px;
      }

      .stat-title {
        font-size: 22px;
      }

      .stat-text {
        font-size: 15px;
      }

      .bottom-note {
        font-size: 15px;
        gap: 10px;
        flex-wrap: wrap;
      }

      .bottom-note::before,
      .bottom-note::after {
        width: 35px;
      }
    }
    body {
      margin: 0;
      letter-spacing:0px;
      color: var(--text);
      background: #fff;
      line-height: 1.5;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }
.motorimarket-btn {margin: 50px auto;display:flex;background: #e3e3e3;padding:10px 20px;color: #000;flex-direction: column;align-items: flex-start;text-transform: uppercase;font-weight: bold;width: auto;justify-content: center;align-content: flex-end;border-radius: 8px;}
.motorimarket-footer {display:flex;border-top: 1px solid #f39200;}   
.smartplan {background: linear-gradient(180deg, #436554 0%, #3f6250 100%); }
.plusplan {background: linear-gradient(180deg, #366ed7 0%, #3066cb 100%); }
.enterpriseplan {background: linear-gradient(180deg, #c54842 0%, #b63d37 100%); }
 

.container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }
   .menu-toggle {
  width: 32px;
  height: 21px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #002a60;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle span {
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      cursor: pointer;
      padding: 12px 24px;
      /* border-radius: 14px; */
      font-weight: 700;
      font-size: 15px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
      background: #012c60;
      color: #fff;
      border-radius: 10px;
    }

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

  
.btn-primary.clean{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 98px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
}

.btn-primary.clean::before,
.btn-primary.clean::after{
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
}

.btn-primary.clean::before{
  top: 18px;
  left: 18px;
  border-top: 2px solid #d60000;
  border-left: 2px solid #d60000;
}

.btn-primary.clean::after{
  right: 18px;
  bottom: 18px;
  border-right: 2px solid #d60000;
  border-bottom: 2px solid #d60000;
}

    .btn-secondary {
      background: rgba(255,255,255,0.12);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
      backdrop-filter: blur(6px);
    }

    .badge {
      display: inline-flex;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      /* background: rgba(255,255,255,0.1); */
      color: #ffffff;
      /* border: 1px solid rgba(255,255,255,0.12); */
      font-size: 20px;
      font-weight: 600;
      text-transform: uppercase;
      align-items: center;
    }
#processo {
  background:#f6f7f9;
}
    .section {
      padding: 58px 0;
      margin:0 2%
    }
.section h2 { text-align:center}
    .section-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 44px;
    }

    .section-head h2 {
      margin: 0 0 14px;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1.02;
      /* letter-spacing: -0.03em; */
    }

    .section-head p {
      margin: 0;
      color: #e7e7e7;
      font-size: 18px;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(16,24,40,0.06);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 22px;
      letter-spacing: -0.03em;
    }

    .brand-mark {
      width: 400px;
      height: 60px;
      /* border-radius: 50%; */
      background: url(../immagini/logomarket.png) no-repeat center/contain;
      /* box-shadow: 0 0 0 6px rgba(255,106,0,0.12); */
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 20px;
      color: #344054;
      font-weight: 600;
    }

    .menu-toggle {
      display: none;
      /* background: transparent; */
      /* border: 0; */
      /* font-size: 28px; */
      cursor: pointer;
    }
.elementor-video {
  top: -40px;
  position:absolute;
  width:100vw;
  /* height:100%; */
}
    .hero {
      position: relative;
      /* overflow: hidden; */
      background: url(../immagini/motoreusato.jpg) no-repeat center/cover;
      color: #fff;
      height: 700px;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: #00000095;
      pointer-events: none;
    }

    .hero-wrap {
      position: relative;
      z-index: 1;
      min-height: 860px;
      display: grid;
      grid-template-columns: 1.02fr 0.88fr;
      gap: 36px;
      align-items: center;
      padding: 54px 0 70px;
    }

    .hero-copy {
      max-width: 680px;
    }

    .eyebrow {
      margin-bottom: 18px;
    }

    .hero h1 {
      margin: 0 0 18px;
      font-size: clamp(42px, 6vw, 76px);
      line-height: 0.96;
      /* letter-spacing: -0.05em; */
    }

    .hero p.lead {
      margin: 0 0 28px;
      font-size: clamp(18px, 2vw, 25px);
      color: rgba(255,255,255,0.88);
      max-width: 610px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(220px, 1fr));
      gap: 14px;
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
    }

    .hero-points li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.94);
    }

    .hero-points i,
    .mini-check {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgb(214 0 0);
      border: 1px solid rgb(214 0 0);
      color: #ffffff;
      font-style: normal;
      font-size: 14px;
      flex-shrink: 0;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 28px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      color: rgba(255,255,255,0.84);
      font-size: 14px;
      font-weight: 600;
    }

    .testimonial-card {
      margin-top: 34px;
      max-width: 430px;
      background: rgb(37 37 37 / 97%);
      /* border: 1px solid rgba(255,255,255,0.08); */
      backdrop-filter: blur(8px);
      /* border-radius: 24px; */
      padding: 24px;
      box-shadow: 0 18px 50px rgba(0,0,0,0.22);
    }
   .testimonial-card::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -22px;
    width: 0;
    height: 0;
     border-radius:1px;
    border-left: 0px solid transparent;
    border-right: 30px solid transparent;
    border-top: 22px solid #2c2c2c;
}
    .stars {
      color: #ffb547;
      letter-spacing: 2px;
      font-size: 18px;
      margin-bottom: 14px;
    }

    .testimonial-card p {
      margin: 0 0 18px;
      color: rgba(255,255,255,0.88);
      font-size: 17px;
    }

    .author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, #292929, #656565);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      color: #fff;
    }

    .author strong {
      display: block;
      font-size: 15px;
    }

    .author span {
      color: rgba(255,255,255,0.72);
      font-size: 14px;
    }

    .form-card {
      background: rgba(255,255,255,0.97);
      color: var(--text);
      /* border-radius: 28px; */
      box-shadow: var(--shadow);
      padding: 28px;
      max-width: 500px;
      justify-self: end;
      width: 100%;
      border: 1px solid rgba(255,255,255,0.4);
    }

    .form-card h3 {
      margin: 0 0 10px;
      font-size: 31px;
      line-height: 1.05;
      /* letter-spacing: -0.03em; */
    }

    .form-card .sub {
      margin: 0 0 22px;
      color: var(--muted);
      font-size: 15px;
    }

    .lead-form {
      display: grid;
      gap: 14px;
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field label {
      font-size: 13px;
      font-weight: 700;
      color: #344054;
    }

    .field input,
    .field select,
    .field textarea {
      width: 100%;
      border: 1px solid #bfbfbf;
      border-radius: 14px !important;
      padding: 14px 15px;
      font-size: 15px;
      color: var(--text);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
      background: #fff;
    }

    .field textarea {
      min-height: 98px;
      resize: vertical;
      font-family: arial;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgb(247 142 0);
      /* transform: translateY(-1px); */
    }

    .consent {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
    }

    .form-note {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #475467;
      font-size: 13px;
      font-weight: 600;
    }

    .brands-bar {
      background: #fff;
      border-bottom: 1px solid #eef1f5;
      margin-top: 350px;
    }

    .brands-wrap {
      padding: 30px 0 34px;
      text-align: center;
    }

    .brands-wrap p {
      margin: 0 0 18px;
      color: #475467;
      font-weight: 600;
    }

    .brand-logos {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      align-items: center;
    }

    .logo-pill {
      min-height: 72px;
      border: 1px solid #eef1f5;
      border-radius: 18px;
      background: #fafbfc;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      color: #344054;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .stats {
      background: var(--surface-2);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      /* gap: 18px; */
    }

    .stat-card {
      background: #fff;
      border-radius: 22px;
      padding: 28px;
      box-shadow: 0 12px 40px rgba(16,24,40,0.06);
      border: 1px solid #eef1f5;
    }

    .stat-card strong {
      display: block;
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1;
      /* letter-spacing: -0.04em; */
      margin-bottom: 10px;
    }

    .stat-card span {
      color: var(--muted);
      font-weight: 600;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .benefit-card {
      background: #ffffff;
      border: 1px solid #eef1f5;
      /* border-radius: 24px; */
      padding: 28px;
      box-shadow: 0 5px 20px rgb(0 0 0 / 12%);
      display: flex;
      flex-direction: column;
      align-content: center;
      align-items: center;
      justify-content: space-between;
    }

    .benefit-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      background: #d64b4b;
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 18px;
    }

    .benefit-card h3 {
      margin: 0 0 10px;
      font-size: 24px;
      letter-spacing: -0.03em;
      text-align: center;
    }

    .benefit-card p {
      margin: 0;
      color: var(--muted);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: stretch;
    }

    .panel {
      background: #fff;
      border-radius: 28px;
      padding: 34px;
      border: 1px solid #eef1f5;
      box-shadow: 0 14px 50px rgba(16,24,40,0.06);
    }

    .panel h3 {
      margin: 0 0 12px;
      font-size: 34px;
      line-height: 1.02;
      letter-spacing: -0.04em;
    }

    .panel p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 17px;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: #344054;
      font-weight: 600;
    }

    .highlight-box {
      margin-top: 22px;
      background: linear-gradient(135deg, #fff4eb, #fff);
      border: 1px solid #ffd9bf;
      color: #8a3f00;
      border-radius: 18px;
      padding: 18px;
      font-weight: 700;
    }

    .workshop {
      background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    }

    .workshop-wrap {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 28px;
      align-items: center;
    }

    .media-card {
      position: relative;
      min-height: 460px;
      border-radius: 30px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(15,17,21,0.08), rgba(15,17,21,0.3)),
        url('/mnt/data/example-of-landing-page-optimization.jpg') center/cover no-repeat;
      box-shadow: var(--shadow);
    }

    .floating-card {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      border-radius: 22px;
      padding: 22px;
      border: 1px solid rgba(255,255,255,0.7);
    }

    .floating-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 20px;
      letter-spacing: -0.03em;
    }

    .steps {
      display: grid;
      gap: 16px;
    }

    .step {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 16px;
      background: #fff;
      border-radius: 20px;
      padding: 18px;
      border: 1px solid #eef1f5;
      box-shadow: 0 10px 30px rgba(16,24,40,0.05);
    }

    .step-num {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: rgba(255,106,0,0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 20px;
    }

    .step h4 {
      margin: 0 0 6px;
      font-size: 20px;
      letter-spacing: -0.02em;
    }

    .step p {
      margin: 0;
      color: var(--muted);
    }

    .cta-band {
      padding: 80px 0;
      background: linear-gradient(135deg, #141821, #0b0d12);
      color: #fff;
    }

    .cta-box {
      display: grid;
      grid-template-columns: 1.2fr auto;
      align-items: center;
      gap: 20px;
      padding: 36px;
      border-radius: 30px;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      box-shadow: 0 18px 60px rgba(0,0,0,0.22);
    }

    .cta-box h3 {
      margin: 0 0 10px;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .cta-box p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 18px;
      max-width: 760px;
    }

    footer {
       padding: 30px 0 20px; 
      background: linear-gradient(180deg, #184f9e 0%, #0d3f84 100%);
      color: rgba(255,255,255,0.7);
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity .8s ease, transform .8s ease;
    }

    @media (max-width: 1080px) {
      .hero-wrap,
      .workshop-wrap,
      .split,
      .cta-box {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .form-card {
        justify-self: stretch;
        max-width: none;
      }

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

      .brand-logos {
        grid-template-columns: repeat(3, 1fr);
      }
    }
 @media (min-width: 1024px) and (max-width: 1200px) {
       .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        width: 50% ;
        right: 0;
        background: #012a60;
        border: 1px solid #012b60;
        /* border-radius: 18px; */
       padding: 50px 20px !important;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-end;
        height: 100vh;
        gap:30px;
        font-size: 32px !important;
        font-weight: 400;
      }
    .nav-links a {
    font-size: 24px !important;
  }
}
    @media (min-width: 1024px) and (max-width: 1280px) {
      
  .nav-links a {
    font-size: 14px ;
  }
} @media (max-width: 1200px) {
       .menu-toggle {
        display: flex;
      }
      .nav-links a {
        color:#fff
      }
     
      .btn { background:#f78f01}
       .nav-links.open {
        display: flex;
        /* align-items: flex-end; */
      }
    }
      
    @media (max-width: 1024px) {
      
      .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        width: 100%;
        right: 0;
        background: #012a60;
        border: 1px solid #012b60;
        /* border-radius: 18px; */
        padding: 20px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        height: 100vh;
          font-size: 16px;
        font-weight: 400;
        
      }
.testimonial-card { display:none }
      

     

      .hero-wrap {
        min-height: auto;
        padding: 34px 0 56px;
      }

      .hero-points,
      .grid-2,
      .stats-grid,
      .benefits-grid,
      .brand-logos {
        grid-template-columns: repeat(2, 1fr);
      }

      .section {
        padding: 68px 0;
      }

      .form-card,
      .panel,
      .benefit-card {
        padding: 10px;
      }
       .stat-card {
        padding: 20px;
        border-radius:0;
        text-align: center;
      }
      .eyebrow, .badge {margin:auto;width: 100%;text-align: center;display: flex;align-items: center;flex-direction: row;justify-content: center;}
    .hero h1 { text-align:center; font-size:28px }
      .hero p.lead { text-align:center;}
      .cta-box {
        padding: 26px;
      }

      .trust-row {
        flex-direction: column;
        gap: 10px;
      }
    }