/* COMPARE: problema / soluzione */
.rsa-compare {
  padding: 28px 6% 56px;
  background: #ffffff;
}

.rsa-compare-title {
  text-align: center;
  font-size: clamp(20px, 2.2vw, 28px);
  margin-bottom: 28px;
}

.rsa-compare-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rsa-compare-card {
  border-radius: 18px;
  padding: 28px;
}
.rsa-compare-card--problem {
  background: #fdeff3;
  border: 1.5px solid rgba(251, 92, 130, 0.25);
}
.rsa-compare-card--solution {
  background: rgba(28, 140, 251, 0.06);
  border: 1.5px solid rgba(28, 140, 251, 0.25);
}

.rsa-compare-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}
.rsa-compare-card--problem h3 {
  color: #fb5c82;
}
.rsa-compare-card--solution h3 {
  color: #1c8cfb;
}

.rsa-compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rsa-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #5c6378;
}
.rsa-compare-list li ion-icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}
.rsa-compare-card--problem li ion-icon {
  color: #fb5c82;
}
.rsa-compare-card--solution li ion-icon {
  color: #1c8cfb;
}

@media (max-width: 900px) {
  .rsa-compare-grid {
    grid-template-columns: 1fr;
  }
}

/* DARK BANNER */
.rsa-banner-wrap {
  padding: 0 6% 28px;
  background: #ffffff;
}

.rsa-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #16234f, #1c3a6e);
  border-radius: 20px;
  padding: 32px 36px;
  color: #ffffff;
}
.rsa-banner h3 {
  font-size: clamp(18px, 2vw, 22px);
  color: #ffffff;
  margin-bottom: 8px;
}
.rsa-banner > p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-bottom: 28px;
}

.rsa-mini-steps {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rsa-mini-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  text-align: center;
}
.rsa-mini-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
}
.rsa-mini-step span {
  font-size: 12.5px;
  font-weight: 600;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
.rsa-mini-arrow {
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .rsa-mini-steps {
    flex-wrap: wrap;
    justify-content: center;
  }
  .rsa-mini-step {
    flex: 0 0 calc(50% - 8px);
  }
  .rsa-mini-arrow {
    display: none;
  }
}

/* FEATURES NOTE */
.rsa-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 13px;
  font-style: italic;
  color: #9a9ab0;
  margin-top: 24px;
}

/* WHY (4 columns) */
@media (min-width: 901px) {
  .why-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* FINAL CTA icon variant */
.lp-final-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fb5c82;
  flex-shrink: 0;
}
