
    :root {
      --yellow:      #F5C500;
      --yellow-dark: #D9AE00;
      --black:       #0E0E0E;
      --dark:        #1A1A1A;
      --dark2:       #252525;
      --gray:        #6B7280;
      --light-gray:  #F4F4F4;
      --white:       #FFFFFF;
      --green-wa:    #25D366;
      --green-wa-dk: #1ebe5d;
    }

    *, *::before, *::after { box-sizing: border-box; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .font-cond { font-family: 'Barlow Condensed', sans-serif; }

    /* --- TOP BAR --- */
    .topbar {
      background: var(--dark2);
      color: var(--gray);
      font-size: 1.1rem;
      padding: 6px 0;
      font-family: 'Barlow Condensed', sans-serif;
      letter-spacing: 0.3px;
    }
    .topbar a { color: var(--yellow); text-decoration: none; font-weight: 600; }
    .topbar a:hover { color: var(--white); }
    .topbar .badge-h24 {
      background: var(--yellow);
      color: var(--black);
      font-weight: 700;
      font-size: 1rem;
      padding: 2px 8px;
      border-radius: 3px;
      letter-spacing: 1px;
    }

    /* --- NAVBAR --- */
    .navbar {
      background: #000000;
      padding: 0.75rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 3px solid var(--yellow);
    }
    .navbar-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--white) !important;
      letter-spacing: 0.5px;
    }
    .navbar-brand span { color: var(--yellow); }
    .nav-cta {
      background: var(--yellow);
      color: var(--black) !important;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 0.45rem 1.2rem !important;
      border-radius: 4px;
      letter-spacing: 0.5px;
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--yellow-dark) !important; }
    .navbar-toggler { border-color: var(--yellow); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23F5C500' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* --- HERO --- */
    /*
      FOTO DI SFONDO HERO
      ? Sostituisci l'URL con la tua foto reale del carro attrezzi o della strada.
         Dimensioni consigliate: 1920×1080 px, formato .webp ottimizzato.
    */
    .hero {
      position: relative;
      min-height: 90vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background-image: url('img/hero-soccorso.jpg');
      background-size: cover;
      background-position: center center;
      background-attachment: fixed;
    }

    /* overlay scuro + sfumatura direzionale per leggibilità testo */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          105deg,
          rgba(8,8,8,0.92) 0%,
          rgba(8,8,8,0.78) 50%,
          rgba(8,8,8,0.30) 100%
        );
      z-index: 1;
    }

    /* righe diagonali gialle sottilissime sopra overlay */
    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 22px,
        rgba(245,197,0,0.025) 22px,
        rgba(245,197,0,0.025) 24px
      );
      pointer-events: none;
    }

    .hero .container { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--yellow);
      color: var(--black);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 0.85rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 14px;
      border-radius: 3px;
      margin-bottom: 1.2rem;
      animation: fadeDown 0.5s ease both;
    }

    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.05;
      letter-spacing: -0.5px;
      margin-bottom: 1.2rem;
      text-shadow: 0 2px 24px rgba(0,0,0,0.6);
      animation: fadeDown 0.6s ease 0.1s both;
    }
    .hero h1 em { color: var(--yellow); font-style: normal; }

    .hero p.lead {
      color: rgba(255,255,255,0.82);
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 2rem;
      text-shadow: 0 1px 10px rgba(0,0,0,0.5);
      animation: fadeDown 0.6s ease 0.2s both;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
      animation: fadeDown 0.6s ease 0.3s both;
    }

    /* CTA principale — Richiedi Intervento Immediato */
    .btn-call {
      background: var(--yellow);
      color: var(--black);
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      padding: 0.85rem 1.6rem;
      border-radius: 6px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(245,197,0,0.4);
    }
    .btn-call .btn-main  { font-size: 1.1rem; font-weight: 800; line-height: 1.2; display: block; letter-spacing: 0.2px; }
    .btn-call .btn-sub   { font-size: 1rem; font-weight: 600; opacity: 0.72; display: block; line-height: 1; margin-top: 2px; }
    .btn-call:hover { background: var(--yellow-dark); color: var(--black); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,197,0,0.55); }

    /* CTA WhatsApp — Invia Posizione */
    .btn-whatsapp {
      background: green;
      color: var(--white);
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      padding: 0.85rem 1.6rem;
      border-radius: 6px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    }
    .btn-whatsapp .btn-main { font-size: 1.1rem; font-weight: 600; line-height: 1.2; display: block; letter-spacing: 0.2px; }
    .btn-whatsapp .btn-sub  { font-size: 1rem; font-weight: 600; opacity: 0.82; display: block; line-height: 1; margin-top: 2px; }
    .btn-whatsapp:hover { background: green; color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

    /* card destra hero */
    .hero-icon-wrap {
      background: rgba(14,14,14,0.82);
      border: 2px solid rgba(245,197,0,0.22);
      border-radius: 14px;
      padding: 2.5rem 2rem;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    .hero-icon-wrap .main-icon {
      font-size: 6rem;
      color: var(--yellow);
      display: block;
      line-height: 1;
      margin-bottom: 1.5rem;
    }
    .hero-feature-list { list-style: none; padding: 0; margin: 0; }
    .hero-feature-list li {
      color: rgba(255,255,255,0.76);
      font-size: 0.93rem;
      padding: 7px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .hero-feature-list li:last-child { border-bottom: none; }
    .hero-feature-list li i { color: var(--yellow); font-size: 0.95rem; flex-shrink: 0; }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-top: 2.5rem;
      animation: fadeDown 0.6s ease 0.4s both;
    }
    .stat-item { display: flex; flex-direction: column; }
    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--yellow);
      line-height: 1;
    }
    .stat-label { font-size: 0.76rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.8px; margin-top: 3px; }

    .hero-visual { animation: fadeLeft 0.7s ease 0.3s both; }

    /* --- STRIP GIALLA --- */
    .strip { background: var(--yellow); padding: 14px 0; }
    .strip-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 1.5rem 3rem;
    }
    .strip-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--black);
      letter-spacing: 0.3px;
    }
    .strip-item i { font-size: 1.2rem; }

    /* --- HELPERS --- */
    .section-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 0.8rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--yellow-dark);
      margin-bottom: 0.5rem;
      display: block;
    }
    .section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.3px; }
    .divider { width: 48px; height: 4px; background: var(--yellow); border-radius: 2px; margin: 1rem 0 1.5rem; }
    .divider.mx-auto { margin-left: auto; margin-right: auto; }

   /* --- SERVIZI AGGIORNATI --- */
.services { padding: 100px 0; background: var(--white); }

.service-card {
  border: 1.5px solid #E8E8E8;
  border-radius: 12px;
  padding: 3.5rem 2.5rem; /* Aumentato il respiro interno */
  height: 100%;
  transition: all 0.3s ease;
  background: var(--white);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}

.service-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(-8px);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 70px; /* Icona più grande */
  height: 70px;
  background: #FEF9E7;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--yellow-dark);
  margin-bottom: 1.8rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--yellow);
  color: var(--black);
  transform: rotate(-5deg) scale(1.1);
}

.service-card h3 {
  font-size: 1.6rem; /* Titolo più grande */
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--black);
}

.service-card p {
  font-size: 1.05rem; /* Testo più leggibile */
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}
    /* --- GALLERIA CARROATTREZZI --- */
    /*
      SEZIONE GALLERIA
      ? Sostituisci i src delle 4 immagini con le tue foto reali dei carroattrezzi.
         Dimensioni consigliate: 800×600 px, formato .webp ottimizzato.
    */
    .gallery { padding: 80px 0; background: var(--dark); }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .gallery-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: #111;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease, filter 0.3s ease;
      filter: brightness(0.85) saturate(0.85);
    }
    .gallery-item:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }

    /* bordo giallo all'hover */
    .gallery-item::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 3px solid var(--yellow);
      border-radius: 10px;
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
      pointer-events: none;
    }
    .gallery-item:hover::before { opacity: 1; }

    .gallery-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.82));
      padding: 3rem 1.2rem 1.1rem;
      z-index: 3;
    }
    .gallery-caption span {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: var(--white);
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 7px;
    }
    .gallery-caption span i { color: var(--yellow); }

    .gallery-num {
      position: absolute;
      top: 12px; left: 12px;
      background: var(--yellow);
      color: var(--black);
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 3px;
      z-index: 4;
    }

    /* CTA sotto la galleria */
    .gallery-cta-wrap { margin-top: 3rem; text-align: center; }
    .gallery-cta-wrap p { color: #888; font-size: 0.92rem; margin-bottom: 1.2rem; }

    /* --- PERCHÉ NOI --- */
    .why { padding: 80px 0; background: var(--light-gray); }
    .why-item {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 1.5rem;
      background: var(--white);
      border-radius: 10px;
      border: 1px solid #EBEBEB;
      height: 100%;
      transition: box-shadow 0.2s;
    }
    .why-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }
    .why-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 2.5rem;
      font-weight: 800;
      color: #E8E8E8;
      line-height: 1;
      min-width: 50px;
      transition: color 0.2s;
    }
    .why-item:hover .why-num { color: var(--yellow); }
    .why-item h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; }
    .why-item p { font-size: 0.88rem; color: var(--gray); margin: 0; line-height: 1.5; }

    /* --- ZONE --- */
    .area { padding: 80px 0; background: var(--dark); }
    .area-zone {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      color: #D0D0D0;
      font-size: 0.9rem;
      padding: 6px 14px;
      border-radius: 5px;
      margin: 4px;
      transition: background 0.2s, color 0.2s;
    }
    .area-zone:hover { background: rgba(245,197,0,0.15); color: var(--yellow); border-color: rgba(245,197,0,0.3); }
    .area-zone i { color: var(--yellow); font-size: 0.85rem; }

    /* --- CTA BAND --- */
    .cta-band { background: var(--yellow); padding: 64px 0; }
    .cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--black); line-height: 1.05; letter-spacing: -0.3px; }
    .cta-band p { font-size: 1.05rem; color: rgba(0,0,0,0.65); margin-bottom: 0; }
    .btn-cta-dark {
      background: var(--black);
      color: var(--white);
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      padding: 0.8rem 1.6rem;
      border-radius: 5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-cta-dark:hover { background: #333; color: var(--white); transform: translateY(-2px); }
    .btn-cta-wa {
      background: var(--green-wa);
      color: var(--white);
      border: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 1.05rem;
      padding: 0.8rem 1.6rem;
      border-radius: 5px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-cta-wa:hover { background: var(--green-wa-dk); color: var(--white); transform: translateY(-2px); }

    /* --- FOOTER --- */
    footer { background: var(--black); padding: 48px 0 24px; border-top: 3px solid var(--yellow); }
    footer .brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
    footer .brand span { color: var(--yellow); }
    footer p { font-size: 0.875rem; color: #777; line-height: 1.6; }
    footer .footer-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; color: var(--white); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
    footer a { color: #777; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
    footer a:hover { color: var(--yellow); }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { padding: 4px 0; }
    footer ul li i { color: var(--yellow); margin-right: 8px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 2.5rem; padding-top: 1.2rem; font-size: 0.78rem; color: #555; }

    /* --- FLOATING WA --- */
    .float-wa {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 999;
      width: 58px; height: 58px;
      background: var(--green-wa);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.75rem;
      color: var(--white);
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: pulse-wa 2.5s ease infinite;
    }
    .float-wa:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 6px 25px rgba(37,211,102,0.6); }

    /* --- ANIMAZIONI --- */
    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeLeft {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    @keyframes pulse-wa {
      0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
      50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 767.98px) {
      .hero { min-height: auto; padding: 60px 0 50px; background-attachment: scroll; }
      .hero h1 { font-size: 2.3rem; }
      .hero-ctas { flex-direction: column; }
      .hero-visual { margin-top: 2.5rem; }
      .hero-icon-wrap .main-icon { font-size: 4.5rem; }
      .strip-inner { gap: 0.8rem 1.5rem; }
      .gallery-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 575.98px) {
      .btn-call, .btn-whatsapp { width: 100%; justify-content: flex-start; }
    }
