/* =======================
   SEZIONE CRP CLOUD
======================== */
.crp-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0e142b 0%, #1c2240 100%);
  color: #e6edff;
}

.crp-section h2 {
  font-size: 2em;
  color: #e9c46a;
  margin-bottom: 20px;
}

.crp-section .lead {
  font-size: 1.1em;
  color: #dbe3ff;
  margin-bottom: 20px;
}

.crp-section ul.features {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.crp-section ul.features li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.crp-section ul.features li::before {
  content: "✔";
  color: #e9c46a;
  position: absolute;
  left: 0;
  font-weight: bold;
}

@media (max-width: 768px) {
  .crp-section .grid-2 {
    display: block;
    text-align: center;
  }

  .crp-section .image {
    margin-top: 30px;
  }
}

/* =======================
   ANIMAZIONE ON SCROLL (CRP CLOUD)
======================= */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* effetto leggermente ritardato per i secondi elementi */
.reveal-on-scroll.delay {
  transition-delay: 0.2s;
}

