/* ============================================================
   SIMULA PREVENTIVO — GA style
   - semplice, elegante, grigio/bianco + accent (blue)
   ============================================================ */

:root{
  --sp-bg: #F8F9FB;
  --sp-ink: #111827;
  --sp-muted: rgba(17,24,39,.62);
  --sp-line: rgba(15,23,42,.10);
  --sp-card: rgba(255,255,255,.72);
  --sp-white: #ffffff;
  --sp-accent: var(--blue);
}

.sp-wrap{
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 40px auto 60px auto;
}

.sp-panel{
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--sp-line);
  background: rgba(255,255,255,.72);
  box-shadow: 0 20px 60px rgba(17,24,39,.10);
}

.sp-hero{
  padding: 26px 26px 20px 26px;
  background:
    radial-gradient(1200px 500px at 50% -20%, rgba(36,86,216,.12), transparent 60%),
    linear-gradient(180deg, rgba(248,249,251,1), rgba(248,249,251,.55));
  border-bottom: 1px solid var(--sp-line);
}

.sp-brand{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  margin-bottom: 14px;
}

.sp-brand__mark{
  font-weight: 950;
  letter-spacing: .5px;
  color: var(--sp-ink);
}

.sp-title{
  margin: 0;
  font-weight: 950;
  color: rgba(17,24,39,.92);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.sp-subtitle{
  margin: 8px 0 0 0;
  color: var(--sp-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.sp-stepper{
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 9999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.62);
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
}

.sp-step{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 900;
  color: rgba(17,24,39,.70);
  font-size: .92rem;
  user-select:none;
}

.sp-step__n{
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(248,249,251,1);
  color: rgba(17,24,39,.75);
  font-weight: 950;
}

.sp-step.is-active{
  color: rgba(17,24,39,.90);
}
.sp-step.is-active .sp-step__n{
  border-color: rgba(36,86,216,.35);
  background: rgba(36,86,216,.10);
  color: rgba(36,86,216,1);
}

.sp-stepper__dot{
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(15,23,42,.18);
}

.sp-body{
  padding: 22px 26px 26px 26px;
  background: rgba(248,249,251,.60);
}

.sp-h2{
  margin: 0;
  font-weight: 950;
  color: rgba(17,24,39,.92);
  font-size: 1.35rem;
}

.sp-p{
  margin: 8px 0 0 0;
  color: var(--sp-muted);
  line-height: 1.6;
}

.sp-grid{
  display:flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.sp-card{
  flex: 1 1 280px;
  min-width: 260px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 40px rgba(17,24,39,.07);
}

.sp-card__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}

.sp-card__left{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.sp-check{
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(248,249,251,1);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.sp-card.is-selected .sp-check{
  border-color: rgba(36,86,216,.40);
  background: rgba(36,86,216,.12);
}
.sp-check::after{
  content:'';
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: transparent;
}
.sp-card.is-selected .sp-check::after{
  background: rgba(36,86,216,1);
}

.sp-card__title{
  margin: 0;
  font-weight: 950;
  color: rgba(17,24,39,.90);
  font-size: 1rem;
}
.sp-card__desc{
  margin: 4px 0 0 0;
  color: rgba(17,24,39,.62);
  font-size: .92rem;
  line-height: 1.45;
}

.sp-chip{
  border-radius: 9999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.75);
  padding: 8px 10px;
  font-weight: 900;
  font-size: .85rem;
  color: rgba(17,24,39,.75);
}

.sp-actions{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items:center;
  justify-content:center;
}

.sp-btn{
  border-radius: 9999px;
  padding: 14px 18px;
  font-weight: 950;
  letter-spacing: .2px;
  border: 1px solid rgba(15,23,42,.14);
  background: rgba(255,255,255,.80);
  color: rgba(17,24,39,.88);
  cursor:pointer;
  user-select:none;
}

.sp-btn--primary{
  border: 0;
  background: linear-gradient(180deg, rgba(36,86,216,1), rgba(28,70,190,1));
  color: #fff;
  box-shadow: 0 18px 40px rgba(36,86,216,.26);
  min-width: 260px;
  text-align:center;
}

.sp-form{
  margin-top: 16px;
  display:flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}

.sp-field{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.80);
  padding: 14px 14px;
  font-weight: 800;
  color: rgba(17,24,39,.82);
  outline: none;
}

.sp-field::placeholder{
  color: rgba(17,24,39,.45);
  font-weight: 800;
}

.sp-row{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sp-row > *{
  flex: 1 1 240px;
  min-width: 220px;
}

.sp-note{
  margin-top: 14px;
  text-align:center;
  color: rgba(17,24,39,.55);
  font-weight: 800;
  font-size: .9rem;
}

.sp-result{
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.75);
}
.sp-result__big{
  font-weight: 950;
  color: rgba(17,24,39,.92);
  font-size: 1.05rem;
}
.sp-result__small{
  margin-top: 6px;
  color: rgba(17,24,39,.60);
  line-height: 1.55;
}

/* CTA Metodo GA separata */
.sp-ga{
  width: calc(100% - 20px);
  max-width: 1100px;
  margin: 18px auto 70px auto;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background:
    radial-gradient(900px 400px at 20% 0%, rgba(36,86,216,.14), transparent 60%),
    rgba(255,255,255,.70);
  box-shadow: 0 16px 50px rgba(17,24,39,.08);
  padding: 20px 22px;
}

.sp-ga__title{
  margin: 0;
  font-weight: 950;
  color: rgba(17,24,39,.92);
  font-size: 1.25rem;
}

.sp-ga__text{
  margin: 8px 0 0 0;
  color: rgba(17,24,39,.62);
  line-height: 1.6;
  max-width: 780px;
}
.sp-ga__badges{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
