  .hermes-xlp-section {
    padding: 100px 20px;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background-color: transparent;
    overflow-x: hidden;
  }

  .xlp-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
  }

  .xlp-block {
    flex: 1;
    text-align: center !important;
    min-width: 300px;
    max-width: 380px;
    padding: 35px;
    background: rgba(253, 253, 253, 0.8);
    border-radius: 4px; 
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease, opacity 0.6s ease-out, transform 0.6s ease-out;
    
    /* Stato iniziale (invisibile) */
    opacity: 0;
  }


  .xlp-block h3 {
    color: var(--gx-color-bg-hover);
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-transform: uppercase;
  }

  .xlp-block p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
  }

  /* Classi per animazione via JS */
  .is-visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }

  /* Desktop Initial Positions */
  @media (min-width: 1024px) {
    .block-l { transform: translateX(-100px); }
    .block-x { transform: translateY(100px); }
    .block-p { transform: translateX(100px); }
  }

  /* Mobile Initial Positions (S-D-S) */
  @media (max-width: 1023px) {
    .xlp-container { flex-direction: column; align-items: center; }
    .xlp-block { max-width: 100%; width: 100%; }
    
    .block-l { transform: translateX(-100px); }
    .block-x { transform: translateX(100px); }
    .block-p { transform: translateX(-100px); }
  }

  .hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #333;
  letter-spacing: -1px;
  font-family: monospace;
  display: inline-block;
  border-right: 4px solid #007BFF;
  min-height: 1.2em;
  white-space: pre;
}

.hero-title.finished {
  border-right: none;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 95%;
  margin-bottom: 40px;
  color: #555;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-description.visible {
  opacity: 1;
}

.hero-button {
  padding: 18px 48px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: #007BFF;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-button.visible {
  opacity: 1;
}

.hero-button:hover {
  transform: scale(1.05);
}


   .hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            background-color: transparent;
            min-height: 400px;
            position: relative;
            overflow: hidden;
        }

        #hero-bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .hero-title {
            position: relative;
            z-index: 1;
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: #333;
            letter-spacing: -1px;
            font-family: monospace;
            display: inline-block;
            border-right: 4px solid #007BFF;
            min-height: 1.2em;
            white-space: pre-wrap;
            max-width: 100%;
        }

        .hero-title.finished {
            border-right: none;
        }

        .hero-description {
            position: relative;
            z-index: 1;
            font-size: 1.25rem;
            line-height: 1.6;
            max-width: 800px;
            margin-bottom: 40px;
            color: #555;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .hero-button {
            position: relative;
            z-index: 1;
            padding: 18px 48px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
            background-color: #007BFF;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.2s;
        }

        .hero-description.visible, 
        .hero-button.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .hero-button:hover {
            background-color: #0056b3;
        }