/* --- REVEAL ANIMATION --- */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* --- WRAPPER --- */
  .mrv-decodifica-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }

  /* Hero */
  .mrv-decodifica-hero {
    text-align: center;
    margin: 40px auto;
  }
  .mrv-decodifica-hero img {
    max-width: 260px;
    margin: 20px auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(2, 12, 27, 0.08);
  }

  /* Benefits */
  .mrv-decodifica-benefits {
    margin: 60px auto;
  }
  .mrv-decodifica-benefits ul {
    list-style: none;
    padding: 0;
  }
  .mrv-decodifica-benefits li {
    margin: 12px 0;
    padding-left: 28px;
    position: relative;
  }
  .mrv-decodifica-benefits li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
  }

  /* CTA */
  .mrv-decodifica-cta {
    text-align: center;
    margin: 40px auto;
  }

  /* Bottoni */
  .mrv-decodifica-wrapper a.button {
    display: inline-block;
    background-color: #1697c7; /* Celeste brand */
    color: #ffffff !important; /* Testo bianco */
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 28px;
    border: none;
    border-radius: 16px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(2, 12, 27, 0.08);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  }
  .mrv-decodifica-wrapper a.button:hover {
    background-color: #0e7ca5; /* Celeste più scuro */
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(2, 12, 27, 0.12);
  }

  /* Recensioni */
  .mrv-decodifica-recensioni {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(2, 12, 27, 0.08);
    padding: 30px;
    margin: 60px auto;
  }
  .mrv-decodifica-recensioni p {
    margin-bottom: 16px;
    font-style: italic;
  }
  /*-- Stile bottone brand MyRealVet */
  .pulse {
    animation: pulse 2s infinite ease-in-out;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(22, 151, 199, 0.4);
    }
    50% {
      transform: scale(1.03);
      box-shadow: 0 0 0 12px rgba(22, 151, 199, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(22, 151, 199, 0);
    }
  }

  .custom-js-btn {
    background-color: #1697c7; /* Celeste brand */
    color: white !important;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    border: none;
    font-weight: 700;
    font-family: "Quicksand", sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .custom-js-btn:hover {
    background-color: #0e7ca5; /* Celeste più scuro */
    transform: translateY(-2px);
  }

  @media (max-width: 480px) {
    .custom-js-btn {
      font-size: 1.1rem;
      padding: 0.8rem 1.4rem;
    }
  }

  /* FAQ Accordion */
  .mrv-decodifica-faq {
    margin: 60px auto;
    padding: 30px;
    background: #f9fbfd;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(2, 12, 27, 0.06);
  }

  .mrv-decodifica-faq h2 {
    color: #1697c7;
    margin-bottom: 24px;
    text-align: center;
  }

  .faq-item {
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
  }

  .faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px;
    cursor: pointer;
    color: #0b1220;
    transition: color 0.3s ease;
  }

  .faq-question:hover {
    color: #1697c7;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 12px;
  }

  .faq-answer p {
    margin: 12px 0;
    color: #333;
    line-height: 1.5em;
  }

  .faq-item.active .faq-answer {
    max-height: 200px; /* abbastanza per una risposta media */
    padding: 12px;
  }

  /* BONUS SECTION */
  .mrv-bonus {
    margin: 80px auto;
    padding: 60px 20px;
    background: #000; /* sfondo nero */
    color: #fff;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .mrv-bonus-inner {
    position: relative;
    z-index: 2;
  }

  .mrv-bonus h2 {
    color: #1697c7;
    margin-bottom: 16px;
  }

  /* layer pixel sopra */
  .pixel-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, 6px); /* grandezza pixel */
    grid-auto-rows: 6px;
    z-index: 3; /* sopra tutto */
    pointer-events: none; /* non blocca più i click */
  }

  .pixel {
    background: #1697c7; /* colore pixel brand */
    opacity: 1;
    transition: opacity 0.2s ease;
  }

  /* Sezione universale */
  .mrv-universale {
    margin: 60px auto;
    padding: 40px 20px;
    background: #f9fbfd;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(2, 12, 27, 0.06);
  }

  .mrv-universale h2 {
    color: #1697c7;
    margin-bottom: 16px;
    text-align: left;
  }

  .mrv-universale-box {
    margin-bottom: 30px;
  }

  .mrv-universale p,
  .mrv-universale li {
    color: #333;
    line-height: 1.6em;
  }

  .mrv-universale ul {
    list-style: none;
    padding: 0;
  }

  .mrv-universale li {
    margin: 10px 0;
    padding-left: 28px;
    position: relative;
  }

  .mrv-universale li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
  }