/* ============================================================
   studio24.css — stili della sola pagina prodotto Studio24
   POSIZIONE: public_html/css-7/studio24.css

   Estende /css-7/style.css: usa le stesse variabili e gli stessi
   font, quindi la pagina resta indistinguibile dal resto del sito.
   Qui stanno solo i blocchi che non esistono altrove.
   ============================================================ */

/* --- Confronto prima / dopo ------------------------------------------ */
.st-confronto {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 780px) {
  .st-confronto { grid-template-columns: 1fr 1fr; }
}

.st-lato {
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: 12px;
  padding: 1.75rem 1.6rem;
}
.st-lato--si {
  background: var(--wb-black);
  border-color: var(--wb-black);
}

.st-lato h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 1.1rem;
  color: var(--wb-text);
}
.st-lato--si h3 { color: var(--wb-white); }

.st-lato ul { list-style: none; margin: 0; padding: 0; }

.st-lato li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.75rem;
  border-bottom: 1px solid var(--wb-border);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--wb-muted-2);
}
.st-lato li:last-child { border-bottom: 0; }

.st-lato--si li {
  border-bottom-color: var(--wb-grey);
  color: #e5e7eb;
}

.st-lato li::before {
  position: absolute;
  left: 0;
  top: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}
.st-lato--no li::before { content: "×"; color: #b91c1c; }
.st-lato--si li::before { content: "✓"; color: #4ade80; }

/* --- Passi: qui la sequenza e' informazione, non decorazione --------- */
.st-passi {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  counter-reset: st;
  max-width: 760px;
}
.st-passi li {
  counter-increment: st;
  position: relative;
  padding: 1.4rem 0 1.4rem 3.5rem;
  border-bottom: 1px solid var(--wb-border);
}
.st-passi li:last-child { border-bottom: 0; }

.st-passi li::before {
  content: counter(st, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1.55rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--wb-muted);
}

.st-passi h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.3rem;
  color: var(--wb-text);
}
.st-passi p {
  margin: 0;
  color: var(--wb-muted-2);
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Prezzo ----------------------------------------------------------- */
.st-prezzo {
  background: var(--wb-white);
  border: 1px solid var(--wb-border);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  max-width: 540px;
  margin-top: 2.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.05);
}

.st-riga {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--wb-border);
}
.st-riga:last-of-type { border-bottom: 0; }

.st-voce {
  font-size: 1.05rem;
  color: var(--wb-text);
  font-weight: 500;
}
.st-voce small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--wb-muted-2);
}

.st-cifra {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--wb-text);
  white-space: nowrap;
}
.st-cifra small {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--wb-muted-2);
}

.st-incluso {
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--wb-border);
}
.st-incluso ul {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.st-incluso li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
  color: var(--wb-text);
}
.st-incluso li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #15803d;
  font-weight: 700;
}

.st-nota {
  margin: 1.4rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--wb-muted-2);
}

.st-btn-largo {
  margin-top: 1.6rem;
  width: 100%;
  justify-content: center;
}

/* --- Domande ---------------------------------------------------------- */
.st-domande {
  margin-top: 2.5rem;
  max-width: 760px;
}
.st-dom {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--wb-border);
}
.st-dom:last-child { border-bottom: 0; }

.st-dom h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  color: var(--wb-text);
}
.st-dom p {
  margin: 0;
  color: var(--wb-muted-2);
  font-size: 1rem;
  line-height: 1.65;
}

/* --- Schermi piccoli --------------------------------------------------- */
@media (max-width: 560px) {
  .st-prezzo { padding: 1.6rem 1.3rem; }
  .st-cifra  { font-size: 1.8rem; }
  .st-passi li { padding-left: 3rem; }
}
