: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;
    }
      :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);
  }
    .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: grid;
    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: #fff;
    font-size: 28px;
    font-weight: 800;
    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: 10px;
    background: #f8f8fb;
    font-size: 15px;
    color: #495057;
    outline: none;
  }

  .btn-filter {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(180deg, #4e8b35, #24561f);
    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: 42px;
    line-height: 1.1;
    color: #0e1b39;
    font-weight: 800;
  }

  .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% - 16px);
    height: 170px;
    margin: 8px auto 0;
    object-fit: cover;
    border-radius: 10px;
    background: #ececec;
  }

  .motore-card__body {
    padding: 12px 14px 14px;
  }

  .motore-card__title {
    font-size: 18px;
    line-height: 1.12;
    font-weight: 800;
    color: #111827;
    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: 600;
    color: #0d172f;
    margin-bottom: 8px;
  }

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

  .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:#f68e00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
  }

  .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: 1200px) {
    .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));
    }
  }

  @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: #62923c;
    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);
    }

    .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: #6d7c8f;
    min-height: 500px;
    font-family: Arial, Helvetica, sans-serif;
  }

  .hero-search__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, 520px) 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);
    max-width: 720px;
  }

  .hero-search__content h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 3.7rem);
    line-height: 1.05;
    /* font-weight: 800; */
    letter-spacing: -0.03em;
    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: rgba(255,255,255,0.94);
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 18px;
    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);
    /* border-radius: 14px; */
    overflow: hidden;
    border: 1px solid var(--line);
  }

  .field {
    position: relative;
    background: var(--white);
  }

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

  .field::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14px;
    bottom: 14px;
    width: 0;
    background: var(--green-main);
    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: 800;
    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;
    }

    .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;
    }

    .hero-search__content h1 {
      font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .hero-search__content p {
      font-size: 1.05rem;
      margin-bottom: 22px;
    }

    .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: 90px 0;
  overflow: hidden;
}

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

.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: 70px 0;
  }

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

  .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;
  }

  .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;
}
    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;
    }

    .container {
      width: min(calc(100% - 32px), var(--container));
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 0;
      cursor: pointer;
      padding: 15px 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;
    }

    .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: 88px 0;
    }

    .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: var(--muted);
      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: 280px;
      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: 26px;
      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; */
      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(47 137 7);
      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 50px; */
      background: #0e1116;
      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 (max-width: 1024px) {
      .menu-toggle {
        display: block;
      }
.testimonial-card { display:none }
      .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        width: 100%;
        right: 0;
        background: #fff;
        border: 1px solid #eef1f5;
        /* border-radius: 18px; */
        padding: 16px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start;
        height: 100vh;
      }

      .nav-links.open {
        display: flex;
      }

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

      .hero-points,
      .grid-2,
      .stats-grid,
      .benefits-grid,
      .brand-logos {
        grid-template-columns: 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;
      }
    }