/* =========================================================================
   Blissful Consulting — Componenti delle pagine interne
   Si carica DOPO css/style.css, di cui riusa tutti i design token.

   Convenzione cromatica: dove il documento di copy indica
   "Blu Profondo #0B1B3D" e "Oro #C5A059" si usano i colori ufficiali del
   Manuale d'uso — Abisso Nascosto (#1A3F54) e Oro Blissful (#DFB662).
   ========================================================================= */

/* -------------------------------------------------------------------------
   1. HERO DI PAGINA
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 6vw, 96px) clamp(56px, 6vw, 92px);
  background: var(--perla);
  text-align: center;
}

.page-hero--lino {
  background: var(--lino);
}

.page-hero--abisso {
  background: var(--abisso-nascosto);
  color: var(--lino);
}

.page-hero--ossidiana {
  background: var(--ossidiana);
  color: var(--lino);
}

/* Filigrana: l'icona-elemento in oro, molto ingrandita e a bassa opacità.
   Si usa l'SVG e non gli sfondi PNG forniti perché così l'opacità è
   controllabile e il segno non entra in conflitto con la lettura del titolo. */
.page-hero__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(660px, 88vw);
  height: auto;
  opacity: 0.14;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-hero--abisso .page-hero__mark,
.page-hero--ossidiana .page-hero__mark {
  opacity: 0.1;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-inline: auto;
}

.page-hero .eyebrow {
  display: block;
  margin-bottom: 16px;
}

.page-hero--abisso .eyebrow,
.page-hero--ossidiana .eyebrow {
  color: var(--oro);
}

.page-hero__title {
  margin-bottom: clamp(16px, 1.8vw, 24px);
  text-wrap: balance;
}

.page-hero__sub {
  max-width: 680px;
  margin-inline: auto;
  color: var(--testo-soft);
}

.page-hero--abisso .page-hero__sub,
.page-hero--ossidiana .page-hero__sub {
  color: var(--lino-75);
}

/* Quando l'introduzione è spezzata in più frasi (Meditazione sensoriale),
   ogni blocco respira invece di formare un muro di testo. */
.page-hero__sub + .page-hero__sub {
  margin-top: clamp(14px, 1.6vw, 22px);
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 38px);
}

/* Briciole di pane */
.crumbs {
  padding-block: 14px;
  background: var(--lino);
  border-bottom: 1px solid var(--hairline);
  font-size: var(--t-micro);
  font-weight: 500;
  color: var(--testo-muted);
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.crumbs li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--ossidiana-25);
}

.crumbs a:hover {
  color: var(--ambra-scura);
}

.crumbs [aria-current="page"] {
  color: var(--testo);
}

/* -------------------------------------------------------------------------
   2. TESTO LUNGO
   ------------------------------------------------------------------------- */
.prose {
  max-width: 44em;
  color: var(--testo-soft);
}

.prose--center {
  margin-inline: auto;
  text-align: center;
}

.prose > * + * {
  margin-top: 1.1em;
}

.prose strong {
  font-weight: 700;
  color: var(--testo);
}

.prose em {
  font-style: italic;
}

.section__lead {
  max-width: 46em;
  margin-inline: auto;
  margin-top: 18px;
  color: var(--testo-soft);
  text-align: center;
}

/* Blocco "citazione di marca": testo serif corsivo su fondo Perla */
.statement {
  max-width: 40em;
  margin-inline: auto;
  padding: clamp(26px, 3vw, 40px) clamp(24px, 3.2vw, 46px);
  background: var(--perla);
  border-left: 3px solid var(--oro);
  border-radius: 0 var(--r-card) var(--r-card) 0;
  font-family: var(--f-serif);
  font-size: clamp(19px, 16px + 0.83vw, 27px);
  font-style: italic;
  line-height: 1.4;
}

/* -------------------------------------------------------------------------
   3. GRIGLIE GENERICHE
   ------------------------------------------------------------------------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-col);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4.4vw, 68px);
  align-items: start;
}

.split--wide-left {
  grid-template-columns: 1.25fr 1fr;
}

/* -------------------------------------------------------------------------
   4. CARD BASE (riusata da più pagine)
   ------------------------------------------------------------------------- */
.card {
  padding: clamp(22px, 2.6vw, 34px);
  background: var(--lino);
  border-radius: var(--r-card-lg);
  box-shadow: var(--sh-card);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-card-hi);
}

.card--perla {
  background: var(--perla);
  box-shadow: none;
}

.card--perla:hover {
  box-shadow: var(--sh-card-hi);
}

.card--outline {
  border: 1px solid var(--oro);
}

.card--flat:hover {
  transform: none;
  box-shadow: var(--sh-card);
}

.card__icon {
  width: clamp(44px, 3.8vw, 54px);
  height: clamp(44px, 3.8vw, 54px);
  margin-bottom: 18px;
}

.card__head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 12px;
}

.card__title {
  font-family: var(--f-serif);
  font-size: clamp(21px, 18px + 0.75vw, 30px);
  font-weight: 400;
  line-height: 1.15;
}

.card__kicker {
  display: block;
  margin-bottom: 10px;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.card__sub {
  margin-bottom: 12px;
  font-size: clamp(15px, 14px + 0.21vw, 17px);
  font-weight: 500;
  font-style: italic;
  color: var(--ambra-scura);
}

.card__text {
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.6;
  color: var(--testo-soft);
}

.card__text + .card__text {
  margin-top: 0.9em;
}

.card__list {
  margin-top: 14px;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.6;
  color: var(--testo-soft);
}

.card__list li {
  position: relative;
  padding-left: 18px;
}

.card__list li + li {
  margin-top: 9px;
}

.card__list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--oro);
  border-radius: 50%;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ambra-scura);
  transition: gap var(--dur) var(--ease);
}

.card__link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.card__link:hover {
  gap: 14px;
}

/* -------------------------------------------------------------------------
   5. FONDATRICI — blocchi biografia estesa (pagina Chi Siamo)
   ------------------------------------------------------------------------- */
.bio {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(24px, 3.4vw, 52px);
  align-items: start;
  padding-block: clamp(32px, 3.6vw, 52px);
}

.bio + .bio {
  border-top: 1px solid var(--hairline);
}

.bio__aside {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.bio__mark {
  width: clamp(52px, 4.6vw, 64px);
  margin-bottom: 20px;
}

.bio__name {
  font-family: var(--f-serif);
  font-size: clamp(28px, 20.5px + 1.5625vw, 43px);
  font-weight: 400;
  line-height: 1.05;
}

.bio__role {
  margin-top: 8px;
  font-size: clamp(16px, 14.5px + 0.3125vw, 19px);
  font-weight: 500;
  font-style: italic;
  color: var(--ambra-scura);
}

.bio__text {
  color: var(--testo-soft);
}

.bio__text > * + * {
  margin-top: 1.05em;
}

.bio__text strong {
  font-weight: 700;
  color: var(--testo);
}

/* -------------------------------------------------------------------------
   6. PASSI NUMERATI
   ------------------------------------------------------------------------- */
.steps {
  counter-reset: step;
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  /* La numerazione è disegnata da .step::before: il marker nativo dell'<ol>
     va rimosso, altrimenti si vedono due numeri. */
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps--inline {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  counter-increment: step;
  position: relative;
  padding-left: 58px;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  font-family: var(--f-serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ambra-scura);
  border: 1px solid var(--oro);
  border-radius: 50%;
}

.step__title {
  margin-bottom: 6px;
  font-family: var(--f-sans);
  font-size: clamp(17px, 15.5px + 0.31vw, 20px);
  font-weight: 700;
}

.step__text {
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.6;
  color: var(--testo-soft);
}

/* -------------------------------------------------------------------------
   7. SELETTORE TARGET (pagina Risorse)
   ------------------------------------------------------------------------- */
.tabs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: clamp(36px, 4vw, 56px);
}

.tabs__btn {
  padding: 14px 26px;
  font-size: var(--t-micro);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ambra-scura);
  background: transparent;
  border: 1.5px solid var(--oro);
  border-radius: var(--r-btn);
  transition: background-color var(--dur) var(--ease),
    color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.tabs__btn:hover {
  background: rgba(223, 182, 98, 0.16);
}

.tabs__btn[aria-selected="true"] {
  background: var(--oro);
  color: var(--ossidiana);
  box-shadow: 0 4px 15px rgba(223, 182, 98, 0.3);
}

.tabs__panel[hidden] {
  display: none;
}

.tabs__panel {
  animation: tab-in 0.45s var(--ease);
}

@keyframes tab-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tabs__head {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 3.6vw, 46px);
  text-align: center;
}

.tabs__head .h3 {
  margin-bottom: 14px;
}

.tabs__head p {
  color: var(--testo-soft);
}

/* --- Card risorsa --- */
.res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 30px);
}

.res-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 36px);
  background: var(--abisso-nascosto);
  color: var(--lino);
  border: 1px solid rgba(223, 182, 98, 0.28);
  border-radius: var(--r-card-lg);
  transition: transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.res-card:hover {
  transform: translateY(-3px);
  border-color: var(--oro);
  box-shadow: 0 14px 34px rgba(26, 63, 84, 0.28);
}

.res-card__badge {
  display: block;
  margin-bottom: 16px;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--oro);
}

.res-card__title {
  margin-bottom: 14px;
  font-family: var(--f-serif);
  font-size: clamp(22px, 18.5px + 0.9375vw, 31px);
  font-weight: 400;
  line-height: 1.15;
}

.res-card__text {
  margin-bottom: 26px;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.6;
  color: var(--lino-75);
}

.res-card__cta {
  margin-top: auto;
}

.res-card .btn--gold:hover {
  background: var(--lino);
  color: var(--abisso-nascosto);
}

.res-card .btn--outline:hover {
  background: var(--oro);
  color: var(--abisso-nascosto);
}

/* -------------------------------------------------------------------------
   8. CASE STUDY
   ------------------------------------------------------------------------- */
.case {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(26px, 3.2vw, 44px);
  background: var(--lino);
  border: 1px solid var(--oro);
  border-radius: var(--r-card-lg);
  box-shadow: var(--sh-card);
}

.case__label {
  display: block;
  margin-bottom: 8px;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.case__title {
  margin-bottom: clamp(22px, 2.4vw, 32px);
  font-family: var(--f-serif);
  font-size: clamp(23px, 19px + 1.04vw, 33px);
  font-weight: 400;
  line-height: 1.15;
}

.case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.case__cell dt {
  margin-bottom: 8px;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--testo-muted);
}

.case__cell dd {
  margin: 0;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.6;
  color: var(--testo-soft);
}

.case__cell--result dd strong {
  font-weight: 700;
  color: var(--ambra-scura);
}

.case__foot {
  margin-top: clamp(24px, 2.6vw, 34px);
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}

/* -------------------------------------------------------------------------
   9. BANNER INTERNI
   ------------------------------------------------------------------------- */
.banner {
  padding: clamp(30px, 3.6vw, 52px);
  background: var(--perla);
  border-radius: var(--r-card-lg);
  text-align: center;
}

.banner--abisso {
  background: var(--abisso-nascosto);
  color: var(--lino);
}

.banner--bosco {
  background: var(--bosco-antico);
  color: var(--lino);
}

.banner__title {
  max-width: 24em;
  margin-inline: auto;
  margin-bottom: 14px;
}

.banner__text {
  max-width: 46em;
  margin-inline: auto;
  color: var(--testo-soft);
}

.banner--abisso .banner__text,
.banner--bosco .banner__text {
  color: var(--lino-75);
}

.banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(22px, 2.6vw, 32px);
}

/* -------------------------------------------------------------------------
   10. INFOGRAFICA "A FIORE" (pagina Servizi)
   ------------------------------------------------------------------------- */
.flower {
  width: min(100%, 560px);
  height: auto;
  margin-inline: auto;
}

.flower__petal {
  fill: rgba(46, 74, 34, 0.06);
  stroke: var(--oro);
  stroke-width: 1.4;
}

.flower__core {
  fill: var(--lino);
  stroke: var(--oro);
  stroke-width: 1.6;
}

.flower__label {
  font-family: var(--f-sans);
  font-size: 19px;
  font-weight: 700;
  fill: var(--ambra-scura);
  text-anchor: middle;
}

.flower__core-label {
  font-family: var(--f-sans);
  font-size: 20px;
  font-weight: 700;
  fill: var(--ossidiana);
  text-anchor: middle;
  letter-spacing: 0.01em;
}

.flower__core-sub {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  fill: var(--testo-muted);
  text-anchor: middle;
  letter-spacing: 0.04em;
}

/* -------------------------------------------------------------------------
   11. ROADMAP DEI MODULI (pagina Servizi)
   ------------------------------------------------------------------------- */
.module--essential {
  border: 1px solid var(--oro);
  background: var(--lino);
}

.module__badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--oro);
  color: var(--ossidiana);
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
}

.module__result {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.6;
}

.module__result strong {
  font-weight: 700;
  color: var(--ambra-scura);
}

.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-col);
}

.path__time {
  display: block;
  margin-bottom: 12px;
  font-family: var(--f-serif);
  font-size: clamp(30px, 24px + 1.25vw, 42px);
  font-weight: 300;
  line-height: 1;
  color: var(--oro);
}

/* -------------------------------------------------------------------------
   12. FORM (pagina Contatti)
   ------------------------------------------------------------------------- */
.form {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
}

.field {
  display: grid;
  gap: 8px;
}

.field--half {
  grid-column: span 1;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.8vw, 24px);
}

.field__label {
  font-size: var(--t-small);
  font-weight: 600;
}

.field__req {
  color: var(--ambra-scura);
}

.field__hint {
  font-size: var(--t-micro);
  font-weight: 500;
  color: var(--testo-muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--f-sans);
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--testo);
  background: var(--lino);
  border: 1px solid var(--ossidiana-25);
  border-radius: var(--r-btn);
  transition: border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232B1C18' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 42px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ossidiana-25);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--oro);
  box-shadow: 0 0 0 3px rgba(223, 182, 98, 0.28);
}

.field input:user-invalid,
.field textarea:user-invalid,
.field select:user-invalid {
  border-color: #a5442f;
}

.form__notice {
  padding: 15px 18px;
  background: var(--perla);
  border-left: 3px solid var(--oro);
  border-radius: 0 var(--r-btn) var(--r-btn) 0;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.55;
  color: var(--testo-soft);
}

.form__notice[hidden] {
  display: none;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Box "cosa succede dopo" */
.reassure {
  padding: clamp(26px, 3vw, 38px);
  background: var(--perla);
  border-radius: var(--r-card-lg);
}

.reassure__title {
  margin-bottom: clamp(20px, 2.2vw, 28px);
  font-family: var(--f-serif);
  font-size: clamp(21px, 18px + 0.75vw, 30px);
  font-weight: 400;
  line-height: 1.2;
}

.reassure .steps {
  gap: clamp(18px, 2vw, 26px);
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
}

.contact-direct {
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.7;
  color: var(--testo-soft);
}

.contact-direct a {
  color: var(--ambra-scura);
  text-decoration: underline;
  text-decoration-color: var(--ossidiana-25);
  text-underline-offset: 3px;
}

.contact-direct a:hover {
  text-decoration-color: currentColor;
}

/* -------------------------------------------------------------------------
   13. VANTAGGI NUMERATI (pagina Quiz)
   ------------------------------------------------------------------------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-col);
  counter-reset: benefit;
}

.benefit {
  counter-increment: benefit;
}

.benefit::before {
  content: counter(benefit);
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--ossidiana);
  background: var(--oro);
  border-radius: 50%;
}

.benefit__title {
  margin-bottom: 10px;
  font-family: var(--f-serif);
  font-size: clamp(20px, 17.5px + 0.52vw, 25px);
  font-weight: 400;
  line-height: 1.2;
}

.benefit__text {
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.6;
  color: var(--testo-soft);
}

/* -------------------------------------------------------------------------
   14. TESTIMONIANZE STATICHE (griglia, non carosello)
   ------------------------------------------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 28px);
}

.quotes .card-quote {
  height: 100%;
  background: var(--lino);
}

/* --- Gallery scorrevole: 3 card visibili, scroll orizzontale con snap --- */
.testi-carousel {
  --gap: 2rem;
}

.testimonials-gallery {
  display: flex;
  gap: var(--gap, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 1rem;
}

.testimonials-gallery::-webkit-scrollbar {
  display: none;
}

/* In anteprima si vedono esattamente tre testimonianze: le altre
   si raggiungono con le frecce (vedi il modulo 12 di js/main.js). */
.testimonials-gallery .card-quote {
  flex: 0 0 calc((100% - 2 * var(--gap, 2rem)) / 3);
  scroll-snap-align: start;
  min-width: 300px;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-gallery {
    scroll-behavior: auto;
  }
}

/* Le frecce compaiono solo con JS attivo e solo se c'è davvero
   qualcosa da scorrere: il modulo toglie l'attributo hidden. */
.testi-carousel__controls[hidden] {
  display: none;
}

.testi-carousel__controls .carousel__arrow[disabled] {
  opacity: 0.3;
  cursor: default;
}

.testi-carousel__controls .carousel__arrow[disabled]:hover {
  background: none;
}

@media (max-width: 768px) {
  .testimonials-gallery .card-quote {
    flex: 0 0 85%;
  }
}

/* -------------------------------------------------------------------------
   15. GATE E PLAYER AUDIO (pagina Meditazione sensoriale)
   Il gate riusa i campi della sezione 12: qui c'è solo ciò che manca —
   il messaggio d'errore sotto al campo, il consenso privacy e il player.
   ------------------------------------------------------------------------- */
.gate__lead {
  max-width: 52ch;
  margin-bottom: clamp(24px, 2.6vw, 34px);
  font-size: var(--t-body);
  font-weight: 500;
  line-height: 1.7;
  color: var(--testo-soft);
}

.gate__aside {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
}

/* Campo esca: fuori dallo schermo, ma non display:none — alcuni bot
   riconoscono i campi nascosti così e li saltano. */
.gate__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field__error {
  font-size: var(--t-micro);
  font-weight: 600;
  color: #a5442f;
}

.field [aria-invalid="true"] {
  border-color: #a5442f;
}

/* --- Consenso privacy --- */
.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: var(--t-micro);
  font-weight: 500;
  line-height: 1.6;
  color: var(--testo-soft);
  cursor: pointer;
}

.consent input {
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  background: var(--lino);
  border: 1px solid var(--ossidiana-25);
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.consent input:checked {
  background: var(--oro) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3E%3Cpath d='M1 5.5l4 4 8-8' fill='none' stroke='%232B1C18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 12px 9px;
  border-color: var(--oro);
}

.consent input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(223, 182, 98, 0.28);
}

.consent a {
  color: var(--ambra-scura);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --- Video (embed YouTube) ---
   L'iframe non ha proporzioni proprie: le impone il contenitore con
   aspect-ratio, e l'iframe lo riempie. Niente padding-bottom al 56,25%. */
.video-frame {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ossidiana);
  border-radius: var(--r-card-lg);
  box-shadow: var(--sh-card-hi);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Player --- */
.player {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(28px, 3.4vw, 44px);
  text-align: center;
  background: var(--perla);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-lg);
  box-shadow: var(--sh-card);
}

.player__eyebrow {
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.player__title {
  margin: 8px 0 clamp(24px, 2.8vw, 34px);
  font-family: var(--f-serif);
  font-size: var(--t-h5);
  font-weight: 400;
  line-height: 1.2;
}

/* Controlli nativi: visibili solo se il JS non entra in funzione */
.player__audio {
  width: 100%;
}

.player__audio[hidden] {
  display: none;
}

/* I tre controlli non si allargano a tutta la card: stanno in un blocco
   centrato, così restano sotto al titolo anche su schermi larghi. */
.player__ui {
  display: grid;
  grid-template-columns: auto minmax(0, 420px) auto;
  justify-content: center;
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
}

.player__ui[hidden] {
  display: none;
}

.player__play {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--ossidiana);
  background: var(--oro);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.player__play:hover {
  background: var(--ambra-scura);
  transform: scale(1.04);
}

.player__icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* Play e pause stanno nello stesso bottone: si alternano via aria-pressed */
.player__icon--pause,
.player__play[aria-pressed="true"] .player__icon--play {
  display: none;
}

.player__play[aria-pressed="true"] .player__icon--pause {
  display: block;
}

.player__bar {
  display: grid;
  gap: 8px;
}

.player__seek {
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--ossidiana-10);
  border-radius: var(--r-pill);
  cursor: pointer;
  /* --avanzamento arriva dal JS: riempie la parte già ascoltata */
  background-image: linear-gradient(var(--oro), var(--oro));
  background-repeat: no-repeat;
  background-size: var(--avanzamento, 0%) 100%;
}

.player__seek::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--oro);
  border: 2px solid var(--lino);
  border-radius: 50%;
  box-shadow: var(--sh-card);
}

.player__seek::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--oro);
  border: 2px solid var(--lino);
  border-radius: 50%;
}

.player__seek:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(223, 182, 98, 0.28);
}

.player__times {
  display: flex;
  justify-content: space-between;
  font-size: var(--t-micro);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--testo-muted);
}

.player__back {
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px 10px;
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--testo-soft);
  background: none;
  border: 1px solid var(--ossidiana-25);
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.player__back:hover {
  color: var(--testo);
  border-color: var(--oro);
}

.player__back svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.player__foot {
  margin-top: clamp(22px, 2.4vw, 30px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid var(--hairline);
  font-size: var(--t-micro);
  font-weight: 500;
}

.player__foot a {
  color: var(--ambra-scura);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.player__foot a:hover {
  color: var(--testo);
}

/* -------------------------------------------------------------------------
   16. SISMOGRAFO AZIENDALE (quiz a 6 assi, radar e report)
   Il quiz riusa i campi della sezione 12 per il gate: qui c'è il passo,
   lo slider, il grafico radar e il verdetto.
   ------------------------------------------------------------------------- */

/* Badge dell'hero: "2 minuti · 6 assi · report immediato" */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 2.4vw, 30px);
  list-style: none;
}

.badge-row li {
  padding: 7px 16px;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oro);
  border: 1px solid rgba(223, 182, 98, 0.45);
  border-radius: var(--r-pill);
}

/* --- Contenitore del quiz --- */
.quiz {
  max-width: 820px;
  margin-inline: auto;
}

.quiz__testa {
  margin-bottom: clamp(22px, 2.4vw, 30px);
}

.quiz__testa[hidden] {
  display: none;
}

.quiz__conta {
  margin-bottom: 10px;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.quiz__barra {
  height: 4px;
  overflow: hidden;
  background: var(--ossidiana-10);
  border-radius: var(--r-pill);
}

.quiz__barra > span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--oro);
  border-radius: var(--r-pill);
  transition: width var(--dur) var(--ease);
}

.quiz__passi {
  list-style: none;
  display: grid;
  gap: clamp(20px, 2.4vw, 30px);
}

.quiz__passo {
  padding: clamp(26px, 3.2vw, 42px);
  background: var(--perla);
  border-radius: var(--r-card-lg);
}

/* Con il JS attivo resta visibile un passo per volta */
.quiz__passo[hidden] {
  display: none;
}

.quiz__asse {
  margin-bottom: clamp(14px, 1.6vw, 20px);
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.quiz__asse span {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--testo-muted);
}

.quiz__domanda {
  margin-bottom: 14px;
  font-family: var(--f-serif);
  font-size: clamp(21px, 18px + 0.75vw, 30px);
  font-weight: 400;
  line-height: 1.25;
}

.quiz__prompt {
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.65;
  color: var(--testo-soft);
}

/* --- Slider da 1 a 10 --- */
.slider {
  display: grid;
  gap: 12px;
  margin-top: clamp(26px, 3vw, 38px);
}

.slider__valore {
  justify-self: center;
  order: -1;
  min-width: 74px;
  padding: 6px 0;
  font-family: var(--f-serif);
  font-size: var(--t-h4);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: var(--testo);
  background: var(--lino);
  border: 1px solid var(--oro);
  border-radius: var(--r-btn);
}

.slider__input {
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--ossidiana-10);
  border-radius: var(--r-pill);
  cursor: pointer;
  /* --avanzamento arriva dal JS: riempie la parte già scelta */
  background-image: linear-gradient(var(--oro), var(--oro));
  background-repeat: no-repeat;
  background-size: var(--avanzamento, 44.4%) 100%;
}

.slider__input::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--oro);
  border: 3px solid var(--perla);
  border-radius: 50%;
  box-shadow: var(--sh-card);
}

.slider__input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--oro);
  border: 3px solid var(--perla);
  border-radius: 50%;
}

.slider__input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(223, 182, 98, 0.35);
}

.slider__estremi {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: var(--t-micro);
  font-weight: 600;
  color: var(--testo-muted);
}

/* --- Navigazione fra i passi --- */
.quiz__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: clamp(22px, 2.4vw, 30px);
}

.quiz__nav[hidden] {
  display: none;
}

.quiz__invio {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(22px, 2.4vw, 30px);
}

.quiz__invio[hidden] {
  display: none;
}

/* Il gate è l'ultimo passo: i campi tornano su fondo lino per staccare.
   Il checkbox del consenso va escluso: ha la stessa specificità di
   ".consent input:checked" e, arrivando dopo, gli cancellerebbe il fondo
   oro con la spunta — la casella si spunterebbe senza darlo a vedere. */
.quiz__passo--gate .field input:not([type="checkbox"]),
.quiz__passo--gate .field select {
  background: var(--lino);
}

/* --- Report: radar + lista degli assi --- */
.report {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 3.4vw, 48px);
  align-items: center;
  padding: clamp(26px, 3.2vw, 44px);
  background: var(--perla);
  border-radius: var(--r-card-lg);
}

.report__grafico {
  min-width: 0;
}

.radar {
  display: block;
  width: 100%;
  height: auto;
}

.radar__anello {
  fill: none;
  stroke: var(--ossidiana-10);
  stroke-width: 1;
}

.radar__raggio {
  stroke: var(--ossidiana-10);
  stroke-width: 1;
}

.radar__area {
  fill: rgba(223, 182, 98, 0.3);
  stroke: var(--oro);
  stroke-width: 2;
  stroke-linejoin: round;
}

.radar__punto {
  fill: var(--oro);
  stroke: var(--perla);
  stroke-width: 2;
}

.radar__etichetta {
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  fill: var(--testo-soft);
}

.radar__voto {
  font-weight: 800;
  fill: var(--ambra-scura);
}

.assi {
  display: grid;
  gap: clamp(14px, 1.6vw, 20px);
  list-style: none;
}

.assi__testa {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.assi__nome {
  font-size: var(--t-small);
  font-weight: 600;
}

.assi__voto {
  font-family: var(--f-serif);
  font-size: var(--t-h6);
  font-weight: 400;
  line-height: 1;
}

.assi__voto small {
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  font-weight: 600;
  color: var(--testo-muted);
}

.assi__barra {
  height: 6px;
  overflow: hidden;
  background: var(--ossidiana-10);
  border-radius: var(--r-pill);
}

.assi__barra > span {
  display: block;
  height: 100%;
  background: var(--oro);
  border-radius: var(--r-pill);
}

/* L'asse peggiore è il punto di partenza della call: va segnalato */
.assi__voce--debole .assi__barra > span {
  background: var(--ambra-scura);
}

.assi__nota {
  margin-top: 8px;
  font-size: var(--t-micro);
  font-weight: 600;
  color: var(--ambra-scura);
}

/* --- Verdetto --- */
.verdetto {
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(28px, 3.4vw, 46px);
  background: var(--lino);
  border-left: 4px solid var(--oro);
  border-radius: 0 var(--r-card-lg) var(--r-card-lg) 0;
  box-shadow: var(--sh-card);
}

.verdetto--alto {
  border-left-color: var(--bosco-antico);
}

.verdetto__label {
  display: block;
  margin-bottom: 10px;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.verdetto__titolo {
  margin-bottom: clamp(16px, 1.8vw, 22px);
}

.verdetto__diagnosi {
  font-size: var(--t-body-lg);
  font-weight: 500;
  line-height: 1.6;
  color: var(--testo-soft);
}

.report__rifai {
  margin-top: clamp(24px, 2.6vw, 34px);
  font-size: var(--t-small);
  font-weight: 500;
  text-align: center;
  color: var(--testo-muted);
}

.report__rifai a {
  color: var(--ambra-scura);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.report__rifai a:hover {
  color: var(--testo);
}

/* -------------------------------------------------------------------------
   17. TESTI LEGALI (pagina Privacy: privacy policy, cookie, termini)
   Documenti lunghi da leggere, non da scorrere: colonna stretta, gerarchia
   marcata e indice ancorato che resta a portata di mano.
   ------------------------------------------------------------------------- */
.legale {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}

/* Indice: resta agganciato sotto l'header mentre si scorre */
.legale__indice {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--perla);
  border-radius: var(--r-card);
}

.legale__indice h2 {
  margin-bottom: 14px;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.legale__indice ol {
  display: grid;
  gap: 10px;
  list-style: none;
}

.legale__indice a {
  font-size: var(--t-small);
  font-weight: 600;
  color: var(--testo-soft);
}

.legale__indice a:hover {
  color: var(--ambra-scura);
}

.legale__corpo {
  min-width: 0;
  max-width: 44em;
}

.legale__doc + .legale__doc {
  margin-top: clamp(48px, 5.4vw, 80px);
  padding-top: clamp(40px, 4.6vw, 64px);
  border-top: 1px solid var(--hairline);
}

.legale__doc > h2 {
  margin-bottom: clamp(16px, 1.8vw, 22px);
  font-family: var(--f-serif);
  font-size: var(--t-h4);
  font-weight: 400;
  line-height: 1.15;
}

/* I titoli numerati del documento */
.legale__doc h3 {
  margin-top: clamp(30px, 3.2vw, 44px);
  margin-bottom: 12px;
  font-family: var(--f-serif);
  font-size: var(--t-h6);
  font-weight: 400;
  line-height: 1.25;
}

.legale__doc h4 {
  margin-top: clamp(20px, 2.2vw, 28px);
  margin-bottom: 8px;
  font-size: var(--t-small);
  font-weight: 700;
}

.legale__doc p,
.legale__doc li {
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.75;
  color: var(--testo-soft);
}

.legale__doc p + p {
  margin-top: 1.1em;
}

.legale__doc ul,
.legale__doc ol {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding-left: 1.3em;
}

.legale__doc ul {
  list-style: disc;
}

.legale__doc ol {
  list-style: decimal;
}

.legale__doc li > ul,
.legale__doc li > ol {
  margin-top: 10px;
}

.legale__doc strong {
  font-weight: 700;
  color: var(--testo);
}

.legale__doc a {
  color: var(--ambra-scura);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legale__doc a:hover {
  color: var(--testo);
}

/* Riquadro dei dati del titolare */
.legale__titolare {
  margin-top: 16px;
  padding: clamp(20px, 2.2vw, 28px);
  background: var(--perla);
  border-radius: var(--r-card);
}

.legale__titolare dl {
  display: grid;
  gap: 10px;
}

.legale__titolare dt {
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.legale__titolare dd {
  font-size: var(--t-small);
  font-weight: 500;
  color: var(--testo-soft);
}

.legale__data {
  margin-top: clamp(26px, 2.8vw, 36px);
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: var(--t-micro);
  font-weight: 600;
  font-style: italic;
  color: var(--testo-muted);
}

/* -------------------------------------------------------------------------
   18. CASI STUDIO (pagina casi-studio)
   Diverso dal blocco .case della sezione 8: là c'è un solo caso in evidenza,
   qui sono quattro in fila e il peso visivo sta sui numeri.
   ------------------------------------------------------------------------- */
.casi {
  display: grid;
  gap: clamp(24px, 2.8vw, 40px);
  max-width: 940px;
  margin-inline: auto;
  list-style: none;
}

.caso {
  position: relative;
  padding: clamp(28px, 3.4vw, 46px);
  background: var(--lino);
  border: 1px solid var(--hairline);
  border-radius: var(--r-card-lg);
  box-shadow: var(--sh-card);
  transition: box-shadow var(--dur) var(--ease);
}

.caso:hover {
  box-shadow: var(--sh-card-hi);
}

.caso__cliente {
  display: block;
  margin-bottom: 10px;
  font-size: var(--t-micro);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ambra-scura);
}

.caso__titolo {
  margin-bottom: 14px;
  font-family: var(--f-serif);
  font-size: clamp(23px, 19px + 1vw, 34px);
  font-weight: 400;
  line-height: 1.2;
}

.caso__testo {
  max-width: 60ch;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.7;
  color: var(--testo-soft);
}

/* --- Risultati numerici: tre riquadri --- */
.metriche {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(24px, 2.8vw, 34px);
  list-style: none;
}

.metrica {
  padding: clamp(18px, 2vw, 26px) clamp(14px, 1.6vw, 20px);
  text-align: center;
  background: var(--perla);
  border-radius: var(--r-card);
}

.metrica__valore {
  display: block;
  font-family: var(--f-serif);
  font-size: clamp(30px, 22px + 1.7vw, 46px);
  font-weight: 400;
  line-height: 1;
  color: var(--ambra-scura);
}

.metrica__label {
  display: block;
  margin-top: 10px;
  font-size: var(--t-micro);
  font-weight: 600;
  line-height: 1.45;
  color: var(--testo-soft);
}

/* --- Risultati qualitativi: elenco spuntato --- */
.risultati {
  display: grid;
  gap: 12px;
  margin-top: clamp(22px, 2.4vw, 30px);
  list-style: none;
}

.risultati li {
  position: relative;
  padding-left: 30px;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.65;
  color: var(--testo-soft);
}

/* Il segno di spunta è disegnato, non è un carattere: resta identico
   su ogni sistema operativo. */
.risultati li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 16px;
  height: 9px;
  border-bottom: 2px solid var(--oro);
  border-left: 2px solid var(--oro);
  transform: rotate(-45deg);
}

.risultati strong {
  font-weight: 700;
  color: var(--testo);
}

/* Aria tra l'elenco dei risultati e la frase di chiusura */
.caso__foot {
  margin-top: clamp(24px, 2.8vw, 36px);
}

/* Spazio tra nota e bottone CTA */
.caso__nota {
  margin-bottom: clamp(20px, 2.2vw, 30px);
}

/* -------------------------------------------------------------------------
   19. RESPONSIVE
   ------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .bio {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bio__aside {
    position: static;
  }

  .contact-aside,
  .gate__aside {
    position: static;
  }

  /* Testi legali: l'indice passa sopra al documento */
  .legale {
    grid-template-columns: 1fr;
  }

  .legale__indice {
    position: static;
  }
}

@media (max-width: 900px) {
  .split,
  .split--wide-left {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .paths,
  .benefits,
  .quotes,
  .steps--inline,
  .case__grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 > :last-child:nth-child(odd),
  .paths > :last-child:nth-child(odd),
  .benefits > :last-child:nth-child(odd),
  .quotes > :last-child:nth-child(odd),
  .steps--inline > :last-child:nth-child(odd),
  .case__grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .res-grid {
    grid-template-columns: 1fr;
  }

  /* Report: il radar va sopra, la lista degli assi sotto */
  .report {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid-2,
  .grid-3,
  .paths,
  .benefits,
  .quotes,
  .steps--inline,
  .case__grid,
  .form__row {
    grid-template-columns: 1fr;
  }

  .grid-3 > :last-child:nth-child(odd),
  .paths > :last-child:nth-child(odd),
  .benefits > :last-child:nth-child(odd),
  .quotes > :last-child:nth-child(odd),
  .steps--inline > :last-child:nth-child(odd),
  .case__grid > :last-child:nth-child(odd) {
    grid-column: auto;
  }

  .tabs__btn {
    width: 100%;
    text-align: center;
  }

  .step {
    padding-left: 50px;
  }

  .step::before {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .flower__label {
    font-size: 22px;
  }

  /* Player: il "-15s" scende sotto, play e barra restano affiancati */
  .player__ui {
    grid-template-columns: auto 1fr;
    row-gap: 20px;
  }

  .player__back {
    grid-column: 1 / -1;
    grid-auto-flow: column;
    justify-self: center;
    gap: 8px;
  }

  /* Quiz: i due bottoni di navigazione si dividono la riga a metà */
  .quiz__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quiz__nav .btn {
    justify-content: center;
  }

  /* Sullo schermo stretto le etichette del radar rischiano di tagliarsi:
     un po' più grandi e con meno lettere da leggere */
  .radar__etichetta {
    font-size: 15px;
  }

  /* I tre riquadri dei risultati si impilano */
  .metriche {
    grid-template-columns: 1fr;
  }
}
