    :root {
      --nav-total-height: 112px;
      --primary: #d32027;
      --primary-title: #1d2733;
      --primary-card-title: #d32027;
      --primary-dark: #111419;
      --accent: #d32027;
      --green: #4d8b57;
      --bg: #f6f8fb;
      --text: #1d2733;
      --muted: #555e68;
      --white: #ffffff;
      --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
      --max-width: 1180px;
    }

    * {
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--nav-total-height);
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      padding-top: 0;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

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

    .container {
      width: min(100% - 2rem, var(--max-width));
      margin: 0 auto;
    }

    .main-nav {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: var(--nav-total-height);
      z-index: 100;
    }

    .sticky-nav {
      background: var(--white);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      height: var(--nav-total-height);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
      transition:
        opacity 0.18s ease-out,
        visibility 0s linear 0.18s,
        box-shadow 0.18s ease-out;
    }

    .sticky-nav.visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      transition:
        opacity 0.65s ease-out,
        visibility 0s linear 0s,
        box-shadow 0.65s ease-out;
    }

    .sticky-nav.compact {
      --nav-total-height: 82px;
    }

    .nav-flag {
      display: flex;
      flex-direction: column;
      width: 100%;
      background: var(--white);
    }

    .nav-stripe {
      width: 100%;
    }

    .nav-stripe-red {
      height: 8px;
      background: var(--primary);
      flex: 0 0 8px;
    }

    .nav-main {
      background: var(--white);
      color: var(--text);
      height: calc(var(--nav-total-height) - 8px);
      display: flex;
      align-items: center;
    }

    .sticky-nav.compact .nav-main {
      height: calc(var(--nav-total-height) - 8px);
    }

    .nav-inner {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .sticky-nav.compact .nav-inner {
      min-height: 74px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
      overflow: visible;
    }

    .brand-logo {
      display: block;
      font-size: 0;
      width: 100%;
      height: 88px;
      object-fit: contain;
      object-position: center;
      transform: scale(1);
      flex-shrink: 0;
      overflow: visible;
    }

    .sticky-nav.compact .brand-logo {
      width: 100%;
      height: 60px;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 1.35rem;
      color: var(--text);
      font-weight: 700;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
    }

    .sticky-nav.compact .nav-links {
      gap: 1rem;
      font-size: 0.86rem;
    }

    .nav-links a {
      padding: 0.45rem 0.2rem;
      position: relative;
      transition: color 0.25s ease, opacity 0.25s ease;
    }

    .nav-links a:hover {
      color: var(--primary);
      opacity: 1;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 3px;
      background: var(--primary);
      transition: width 0.25s ease;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: none;
      color: var(--primary);
      font-size: 1.8rem;
      cursor: pointer;
    }

    .hero {
      position: relative;
      height: 100vh;
      min-height: 100vh;
      overflow: hidden;
      user-select: none;
      -webkit-user-select: none;
      cursor: grab;
    }

    .hero.dragging {
      cursor: grabbing;
    }

    .slides {
      position: absolute;
      inset: 0;
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.45s ease;
      will-change: transform;
      touch-action: pan-y;
    }

    .slide {
      position: relative;
      min-width: 100%;
      width: 100%;
      height: 100%;
      flex: 0 0 100%;
      opacity: 1;
      visibility: visible;
      cursor: grab;
    }

    .slide[data-link] {
      cursor: pointer;
    }

    .hero.dragging .slide,
    .hero.dragging .slide[data-link] {
      cursor: grabbing;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.67);
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    /* Fix anti-gap: evita la linea bianca tra una slide e l'altra durante il drag */
    .slides {
      gap: 0;
      background: #111419;
    }

    .slide {
      min-width: calc(100% + 2px);
      flex-basis: calc(100% + 2px);
      margin-right: -2px;
      overflow: hidden;
      background: #111419;
    }

    .slide img {
      width: calc(100% + 4px);
      max-width: none;
      margin-left: -2px;
    }


    .slide-overlay,
    .hero-content,
    .hero-content * {
      user-select: none;
      -webkit-user-select: none;
    }

    .slide-overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      align-items: center;
      pointer-events: none;
    }

    .hero-content {
      max-width: 760px;
      color: var(--white);
      padding: 5rem 0 5.5rem;
      pointer-events: auto;
    }

    .eyebrow {
      display: inline-block;
      background: rgba(211, 32, 39, 0.22);
      color: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.35);
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      font-size: 0.95rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .hero h1 {
      font-size: clamp(2.9rem, 6vw, 5.25rem);
      line-height: 1.02;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .hero h1 span {
      color: var(--primary);
    }

    .hero p {
      font-size: clamp(1.05rem, 2vw, 1.3rem);
      color: rgba(255, 255, 255, 0.94);
      margin-bottom: 1.75rem;
      max-width: 60ch;
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.95rem 1.4rem;
      border-radius: 8px;
      font-weight: 800;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
      text-transform: uppercase;
      font-size: 0.88rem;
    }

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

    .btn-primary {
      background: var(--primary);
      color: var(--white);
    }

    .btn-secondary {
      border: 1px solid rgba(255, 255, 255, 0.5);
      color: var(--white);
      background: rgba(255, 255, 255, 0.08);
    }

    .slide-nav {
      position: absolute;
      top: 55%;
      transform: translateY(-55%);
      z-index: 10;
      width: 52px;
      height: 52px;
      border: none;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.16);
      color: var(--white);
      font-size: 2rem;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(8px);
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
      transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
    }

    .slide-nav:hover {
      background: rgba(255, 255, 255, 0.28);
      transform: translateY(-55%) scale(1.05);
    }

    .slide-nav:active {
      transform: translateY(-55%) scale(0.98);
    }

    .slide-nav-prev {
      left: 1.25rem;
    }

    .slide-nav-next {
      right: 1.25rem;
    }

    .slider-controls {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 5;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .slider-dots {
      display: flex;
      gap: 0.75rem;
    }

    .mouse-scroll-down {
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .mouse-scroll-down:hover {
      opacity: 0.7;
    }

    .mouse {
      width: 25px;
      height: 40px;
      border: 2px solid white;
      border-radius: 25px;
      position: relative;
      margin: 0 auto;
    }

    .scroll-wheel {
      display: block;
      width: 5px;
      height: 10px;
      background-color: white;
      border-radius: 10px;
      margin: 6px auto;
      position: relative;
      animation: scroll 1.5s infinite;
    }

    @keyframes scroll {
      0% {
        opacity: 1;
        transform: translateY(0);
      }

      100% {
        opacity: 0;
        transform: translateY(8px);
      }
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .dot.active {
      background: var(--primary);
      transform: scale(1.2);
    }

    section {
      padding: 5rem 0;
    }

    .section-kicker {
      display: block;
      width: 42px;
      height: 42px;
      margin: 0 auto 1rem;
      background: url("assets/images/logo-pest-graphic.png") center/contain no-repeat;
      opacity: 0.9;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 0.75rem;
      color: var(--primary-title);
      text-align: center;
      text-transform: uppercase;
    }

    .section-title span {
      color: var(--primary);
    }

    .section-lead {
      color: var(--muted);
      max-width: 70ch;
      margin: 0 auto 2rem;
      text-align: center;
    }

    .services-grid,
    .numbers-grid,
    .highlights-grid {
      display: grid;
      gap: 1.5rem;
    }

    .services-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .card {
      background: var(--white);
      border-radius: 20px;
      padding: 1.75rem;
      box-shadow: var(--shadow);
    }

    .service-card {
      min-height: 220px;
      text-align: center;
      display: grid;
      align-content: start;
      justify-items: center;
    }

.service-icon {
  color: var(--primary);
  line-height: 1;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  transition: transform 0.3s ease;
}

.service-icon .material-symbols-outlined {
  font-size: 4.2rem;
  font-variation-settings:
    'FILL' 0,
    'wght' 500,
    'GRAD' 0,
    'opsz' 48;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
}

    .service-card h3,
    .highlight-card h3 {
      margin-bottom: 0.65rem;
      color: var(--primary-card-title);
      text-transform: uppercase;
      font-size: 1.05rem;
    }

    .service-card p,
    .highlight-card p {
      color: var(--muted);
    }

    .highlights {
      background: #edf1f5;
    }

    .highlights-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 2rem;
    }

    .highlight-card {
      overflow: hidden;
      padding: 0;
      display: flex;
      flex-direction: column;
      text-align: center;
    }

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

    .highlight-content {
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      flex: 1;
    }

    .highlight-content p {
      margin-bottom: 1.5rem;
    }

    .highlight-content .btn {
      margin-top: auto;
      align-self: center;
    }

    .numbers {
      background: linear-gradient(135deg, #111419, #222933);
      color: var(--white);
      text-align: center;
    }

    .numbers .section-title,
    .numbers .section-lead {
      color: var(--white);
    }

    .numbers-grid {
      grid-template-columns: repeat(3, 1fr);
      margin-top: 2rem;
    }

    .number-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      padding: 1.75rem;
      text-align: center;
    }

    .number-card strong {
      display: block;
      font-size: 2.2rem;
      margin-bottom: 0.35rem;
      color: var(--primary);
    }

    .footer-site {
      background: #151515;
      color: rgba(255, 255, 255, 0.86);
      padding: 3.25rem 0 0;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 2rem;
      align-items: start;
      padding-bottom: 2rem;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .footer-logo img {
      width: 80%;
      height: auto;
    }

    .footer-column h4 {
      font-size: 1rem;
      color: #ffffff;
      margin-bottom: 1rem;
      text-transform: uppercase;
    }

    .footer-column ul {
      list-style: none;
      display: grid;
      gap: 0.75rem;
    }

    .footer-column li,
    .footer-column a {
      color: rgba(255, 255, 255, 0.78);
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: #ffffff;
    }

    .footer-bottom-bar {
      background: #090909;
      margin-top: 2rem;
      padding: 1.2rem 0;
    }

    .footer-bottom {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 0.5rem;
      align-items: center;
    }

    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.95rem;
    }

    .footer-credit {
      display: flex;
      align-items: center;
      gap: 0.9rem;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .footer-credit-label {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
    }

    .footer-credit-badge {
      display: inline-flex;
      align-items: center;
    }

    .footer-credit-badge img {
      max-height: 40px;
      width: auto;
      display: block;
    }

    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links a {
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    @media (max-width: 1120px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .footer-bottom {
        grid-template-columns: 1fr;
      }

      .footer-credit,
      .footer-legal {
        justify-content: center;
      }
    }

    @media (max-width: 900px) {

      .services-grid,
      .numbers-grid,
      .highlights-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 760px) {
      :root {
        --nav-total-height: 94px;
      }

      .menu-toggle {
        display: block;
      }

      .brand-logo {
        width: 96px;
        height: 68px;
      }

      .nav-links {
        position: absolute;
        top: var(--nav-total-height);
        left: 0;
        right: 0;
        background: var(--white);
        color: var(--text);
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        display: none;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
      }

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

      .sticky-nav.compact .nav-links {
        top: var(--nav-total-height);
      }

      .hero-content {
        padding: 2rem 0 5rem;
      }

      .slider-controls {
        bottom: 1rem;
      }

      .slide-nav {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
      }

      .slide-nav-prev {
        left: 0.75rem;
      }

      .slide-nav-next {
        right: 0.75rem;
      }
    }

    @media (max-width: 640px) {
      .footer-site {
        padding: 2.5rem 0 0;
      }

      .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 1.5rem;
      }

      .footer-bottom-bar {
        margin-top: 1.5rem;
        padding: 1rem 0;
      }

      .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 0.35rem;
        text-align: center;
      }

      .footer-legal span,
      .footer-credit span {
        display: block;
        width: 100%;
        text-align: center;
      }

      .footer-credit {
        justify-content: center;
        text-align: center;
      }
    }