       
        :root {
  --bg-section: #f5f5f6;
  --text-dark: #101828;
  --text-muted: #526277;
  --card-bg: #ffffff;
  --accent: #ff6a21;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}
.floating-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.contact-options {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.contact-btn,
.main-btn {
  border: none;
  border-radius: 50px;
  padding: 12px 18px;
  font-size: 20px;
  cursor: pointer;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.contact-btn:hover,
.main-btn:hover {
  transform: scale(1.05);
}

.main-btn {
  background: #222;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  justify-content: center;
  font-size: 20px;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #007bff;
}
.contact-options a { margin-bottom:10px }
@media (max-width: 768px) {
    .btn-text{ display: none;}
  .main-btn {
    width: 60px;
    height: 60px;
  }

  .contact-btn {
    font-size: 26px;
    padding: 1px 1px;
  }
   .contact-btn i {
    font-size: 30px;
    padding: 14px 14px;
  }
}
 
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    
}
  
    .hero h1 {
      color: #fff;
      font-size: 28px;
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .hero p {
      color: #f3f4f6;
      font-size: 14px;
      font-weight: 500;
    }

    .wrapper {
      max-width: 840px;
      margin: -42px auto 50px;
      padding: 0 14px;
    }

    .card {
      background: #f8f8f8;
      border-radius: 14px;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
      overflow: hidden;
    }

    .card-head {
      padding: 18px 22px 14px;
      border-bottom: 1px solid #e5e7eb;
    }

    .response-time {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: #6b7280;
      margin-bottom: 8px;
    }

    .response-time .dot {
      width: 10px;
      height: 10px;
      border: 1.5px solid #ff6b35;
      border-radius: 50%;
      display: inline-block;
      position: relative;
    }

    .response-time .dot::after {
      content: "";
      width: 3px;
      height: 3px;
      background: #ff6b35;
      border-radius: 50%;
      position: absolute;
      top: 2px;
      left: 2px;
    }

    .card-head h2 {
      font-size: 17px;
      font-weight: 800;
      color: #111827;
    }

    .card-body {
      padding: 20px 20px 22px;
    }

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

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

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

    .field label {
      font-size: 11px;
      color: #1f3b73;
      margin-bottom: 7px;
      font-weight: 500;
    }

    .input,
    .select,
    .textarea {
      width: calc( 100% - 24px);
      border: 1px solid #cfd5df;
      background: #fff;
      color: #111827;
      font-size: 14px;
      padding: 11px 12px;
      outline: none;
      transition: 0.2s ease;
    }

    .input,
    .select {
      height: 35px;
    }
.select { height:59px}
    .textarea {
      min-height: 82px;
      resize: vertical;
      padding-top: 11px;
    }

    .input::placeholder,
    .textarea::placeholder {
      color: #a0a7b4;
    }

    .input:focus,
    .select:focus,
    .textarea:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    }

    .error {
      border-color: #dc2626 !important;
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08) !important;
    }

    .submit-wrap {
      margin-top: 20px;
    }

    .btn-submit {
      width: 100%;
      height: 40px;
      border: 0;
      background: linear-gradient(90deg, #2f62e8 0%, #2246d9 100%);
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: 0.2s ease;
    }

    .btn-submit:hover {
      filter: brightness(1.03);
    }

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

    .btn-submit svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .btn-submit.loadgifs {
      position: relative;
      color: transparent;
    }

    .btn-submit.loadgifs::after {
      content: "";
      width: 16px;
      height: 16px;
      border: 2px solid rgba(255, 255, 255, 0.35);
      border-top-color: #fff;
      border-radius: 50%;
      position: absolute;
      animation: spin 0.7s linear infinite;
    }

    .privacy-note {
      text-align: center;
      font-size: 10px;
      color: #7b8090;
      margin-top: 14px;
      line-height: 1.4;
    }

    .privacy-note a {
      color: #667085;
      text-decoration: none;
    }

    .privacy-note a:hover {
      text-decoration: underline;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @media (max-width: 640px) {
      .hero {
        padding-bottom: 95px;
      }

      .hero h1 {
        font-size: 23px;
      }

      .wrapper {
        margin-top: 20px;
      }

      .grid {
        grid-template-columns: 1fr;
      }
    }
.content-jotform { top:-120px ; position:relative}
    .richieste-motori-hero {
      width: 100%;
      background-color: #151515;
      padding: 84px 20px 104px;
    }

    .richieste-motori-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      text-align: center;
    }

    .richieste-motori-heading {
      color: #ffffff;
      font-size: clamp(2.2rem, 4.8vw, 3.9rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .richieste-motori-text {
      color: #f3f3f3;
      font-size: clamp(1rem, 1.8vw, 1.1rem);
      font-weight: 400;
      line-height: 1.5;
    }

    @media (max-width: 767px) {
      .richieste-motori-hero {
        padding: 60px 2% 58px;
        width: 96%;
      }

      .richieste-motori-heading {
        margin-bottom: 12px;
      }
    }
#content-html .b-rows {width: 98%;padding: 80px 1%;}
p { padding:0; margin:0}
.footer-bottom p { margin-top:50px;}
a { color:#fff; font-weight:bold; }
.footer-bottom {display:flex;color:#ddd;justify-content: space-between;width: 90%;margin: 30px auto;border-top: 1px solid #393939;}
footer {width:100%;background:#000;display: flex;flex-direction: column;gap: 10px;}
.footer-container {display:flex;color:#fff !important;justify-content: space-between;width: 90%;margin: auto;}
.footer-container h3 { color:#fff}
.testimonials-section {
  background: #f5f5f6;
  padding: 90px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-header h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #101828;
}

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

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  padding: 24px 24px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars i {
  color: #f4c21c;
  font-size: 20px;
}

.testimonial-text {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #344054;
  font-style: italic;
  min-height: 78px;
}

.testimonial-footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.testimonial-footer h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
  color: #101828;
}

.testimonial-footer span {
  font-size: 16px;
  color: #667085;
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonials-section {
    padding: 70px 0;
  }

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

/* Mobile */
@media (max-width: 767px) {
  .footer-container { flex-direction:column}
  .testimonials-section {
    padding: 55px 0;
  }

  .testimonials-header {
    margin-bottom: 30px;
  }

  .testimonials-header h2 {
    font-size: 30px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .testimonial-stars {
    margin-bottom: 14px;
  }

  .testimonial-stars i {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 16px;
    min-height: auto;
    margin-bottom: 16px;
  }

  .testimonial-footer h3 {
    font-size: 17px;
  }

  .testimonial-footer span {
    font-size: 15px;
  }
}
.testimonial-card {
  min-height: 205px;
}

.testimonial-text {
  max-width: 95%;
}
.process-number i {
  font-size: 22px;
}
.process-section {
  background: linear-gradient(90deg, #121212 0%, #161616 50%, #121212 100%);
  padding: 90px 0 95px;
  color: #fff;
  overflow: hidden;
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.process-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #d1d5db;
}

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

.process-item {
  text-align: center;
}

.process-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #ff6a21;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 0 24px rgba(255, 106, 33, 0.35);
}

.process-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}

.process-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #b7c0cd;
}

/* Tablet */
@media (max-width: 1024px) {
  .process-section {
    padding: 75px 0 80px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

  .process-header {
    margin-bottom: 55px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .process-section {
    padding: 55px 0 60px;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-header h2 {
    font-size: 30px;
  }

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

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

  .process-number {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    font-size: 21px;
  }

  .process-item h3 {
    font-size: 28px;
  }

  .process-item p {
    font-size: 16px;
  }
}
.container {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
}

.solutions-section {
  padding: 90px 0;
  background: var(--bg-section);
}

.solutions-header {
  text-align: center;
  margin-bottom: 48px;
}

.solutions-header h2 {
  margin: 0 0 14px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-dark);
}

.solutions-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
}

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

.solution-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.solution-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.solution-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08));
}

.solution-overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.solution-body {
  padding: 24px 24px 26px;
}

.solution-body p {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  transition: gap 0.25s ease, opacity 0.25s ease;
}

.solution-link:hover {
  gap: 12px;
  opacity: 0.9;
}

.solution-link span {
  font-size: 20px;
  line-height: 1;
}

/* Tablet */
@media (max-width: 1024px) {
  .solutions-section {
    padding: 70px 0;
  }

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

  .solution-image {
    height: 230px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1360px);
  }

  .solutions-section {
    padding: 55px 0;
  }

  .solutions-header {
    margin-bottom: 30px;
  }

  .solutions-header h2 {
    font-size: 30px;
  }

  .solutions-header p {
    font-size: 16px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solution-image {
    height: 220px;
  }

  .solution-overlay {
    padding: 18px 16px;
  }

  .solution-overlay h3 {
    font-size: 26px;
  }

  .solution-body {
    padding: 20px 18px 22px;
  }

  .solution-body p {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .solution-link {
    font-size: 17px;
  }
}     
        :root {
  --bg-light: #f5f5f6;
  --text-dark: #0f172a;
  --text-muted: #516074;
  --line: #e5e7eb;
  --card-bg: #ffffff;
  --primary: #2f6fed;
  --primary-dark: #245ee0;
  --shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  --radius: 18px;
}
  .container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  position: fixed;
  width: 100%;
  background: #4b4b4b;
  color: #fff;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  width:250px;
  height:50px;
  display:flex;
  position:relative;
  background:url(../immagini/logo.png) no-repeat center/contain;
  font-size: 24px;
  font-weight: bold;
}

.logo span {
  color: orange;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  /* background: #111; */
}

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

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.menu-close {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .phone-btn {
    display: none;
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 290px;
    max-width: 85%;
    height: 100vh;
    background: #111;
    padding: 90px 25px 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    z-index: 1001;
  }

  .menu a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .menu-close {
    display: block;
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 34px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
  }

  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1000;
  }
}
.phone-btn:hover {
  border-radius:0
}
.phone-btn {
  transition:all 0.5s ease;
  background: #fd651c;
  color: #fff;
  padding: 10px 15px;
  border-radius: 25px;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.b-rows {width:60%;margin:auto;min-width:200px;background: #e1e1e1;padding: 20px 0;border-radius: 8px;}
/* HERO */
.hero {
  height: 90vh;
  background: url('../immagini/sfondo.webp') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 80px;
  line-height:1em;
  font-family:'oswald',arial 
}

.hero h1 span {
  color: orange;
}

.hero h2 {
  margin: 10px 0;
}

.hero-buttons {
  margin-top: 20px;
}

.btn {
  padding: 12px 20px;
  border-radius: 30px;
  margin: 5px;
  display: inline-block;
  text-decoration: none;
}

.orange {background: #fd661d;color: #fff;}
.white { background: #fff; color: #000; }
.green { background: #25D366; color: #fff; }

/* FEATURES */
.features {
  background: #222;
  color: #fff;
  padding: 20px 0;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

.features-grid div {
  flex: 1;
  padding: 10px;
}

/* STEPS */
.steps {
  padding: 50px 0;
}

.steps-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 0px;
    right: 0;
    width: 200px;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 40px;
  }

  .features-grid,
  .steps-grid {
    flex-direction: column;
  }
}      
        
.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.why-choose {
  background: var(--bg-light);
  padding-bottom: 90px;
}

.top-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.top-note p {
  margin: 0;
  padding: 22px 0;
  text-align: center;
  color: #66758a;
  font-size: 16px;
  line-height: 1.5;
}

.note-icon {
  display: inline-block;
  margin-right: 10px;
  color: #6b7280;
  font-size: 16px;
  transform: translateY(-1px);
}

.why-choose-inner {
  padding-top: 95px;
}

.section-heading {
  text-align: center;
  margin-bottom: 55px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 700;
  color: #0b1320;
}

.section-heading p {
  margin: 0;
  font-size: 18px;
  color: var(--text-muted);
}

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

.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 32px 28px;
  min-height: 245px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.why-icon {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fd651c 0%, #ff6a21 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 12px 20px rgba(47, 111, 237, 0.28);
  margin-bottom: 24px;
}

.why-icon svg {
  width: 30px;
  height: 30px;
}

.why-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
  color: #0b1320;
}

.why-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: #4f5f73;
  max-width: 320px;
}

/* Tablet */
@media (max-width: 991px) {
  .why-choose-inner {
    padding-top: 70px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .why-card {
    min-height: auto;
  }

  .why-card p {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .top-note p {
    font-size: 14px;
    padding: 18px 0;
  }

  .why-choose {
    padding-bottom: 60px;
  }

  .why-choose-inner {
    padding-top: 55px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading p {
    font-size: 16px;
    line-height: 1.6;
  }

  .why-card {
    padding: 24px 22px;
    border-radius: 16px;
  }

  .why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .why-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-card h3 {
    font-size: 24px;
  }

  .why-card p {
    font-size: 16px;
    line-height: 1.65;
  }
}