:root {
  --blu: #17375B;            /* blu esatto del logo */
  --blu-scuro: #0F2740;
  --azzurro: #DCE9F5;
  --corallo: #E8734A;
  --corallo-scuro: #D45F36;
  --bianco-caldo: #FAF8F5;
  --antracite: #2D3436;
  --grigio: #6B7280;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--antracite);
  background: var(--bianco-caldo);
}
h1, h2, h3 { font-family: 'Sora', sans-serif; line-height: 1.25; }
img { max-width: 100%; display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Bottoni ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-corallo { background: var(--corallo); color: #fff; box-shadow: 0 4px 14px rgba(232,115,74,.35); }
.btn-corallo:hover { background: var(--corallo-scuro); }
.btn-ghost { border: 2px solid rgba(255,255,255,.75); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-blu { background: var(--blu); color: #fff; }
.btn-blu:hover { background: var(--blu-scuro); }

/* Bottone con onda di colore che scorre da destra a sinistra */
.btn-onda { position: relative; overflow: hidden; }
.btn-onda::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0; width: 70%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
  transform: translateX(240%) skewX(-8deg);
  animation: ondaColore 2.8s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}
@keyframes ondaColore {
  0% { transform: translateX(240%) skewX(-8deg); }
  60%, 100% { transform: translateX(-180%) skewX(-8deg); }
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 1px 0 rgba(23,55,91,.12);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
}
.logo img { height: 56px; width: auto; }
nav.menu { display: flex; gap: 28px; }
nav.menu a {
  color: var(--antracite);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
nav.menu a:hover, nav.menu a.attivo { color: var(--blu); border-color: var(--corallo); }

/* ── Menu mobile ── */
.btn-hamburger {
  display: none;
  flex: none;
  width: 42px; height: 42px;
  border: none;
  background: var(--azzurro);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.btn-hamburger span {
  display: block;
  width: 20px; height: 2.5px;
  background: var(--blu);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.btn-hamburger.aperto span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.btn-hamburger.aperto span:nth-child(2) { opacity: 0; }
.btn-hamburger.aperto span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.menu-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid rgba(23,55,91,.1);
  padding: 8px 0;
}
.menu-mobile.aperto { display: flex; }
.menu-mobile a {
  padding: 14px 24px;
  color: var(--antracite);
  text-decoration: none;
  font-weight: 600;
  font-size: 16.5px;
  border-bottom: 1px solid rgba(23,55,91,.06);
}
.menu-mobile a.attivo { color: var(--blu); }
.menu-mobile a:last-child { border-bottom: none; }
.btn-assistenza {
  background: var(--corallo);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.btn-assistenza:hover { background: var(--corallo-scuro); }
.btn-assistenza .testo-breve { display: none; }

/* ── Hero con video ── */
.hero {
  position: relative;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blu);
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .velo {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,39,64,.92) 0%, rgba(23,55,91,.72) 55%, rgba(23,55,91,.35) 100%);
}
.hero-contenuto { position: relative; padding: 96px 0; max-width: 640px; }
.hero h1 { font-size: clamp(32px, 4.2vw, 48px); font-weight: 700; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: #F5B199; }
.hero p { font-size: 20px; color: #DCE9F5; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Barra fiducia ── */
.fiducia { background: #fff; padding: 26px 0; border-bottom: 1px solid rgba(23,55,91,.08); }
.fiducia-inner { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.fiducia .titolo { font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blu); font-weight: 700; }
.fiducia .marchio { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: #93A7BC; }

/* ── Intro ── */
.intro { background: #EAF2FA; padding: 72px 0 52px; }
.sezione-testa { text-align: center; max-width: 48em; margin: 0 auto 48px; }
.sezione-testa .occhiello,
.gruppo-testa .occhiello,
.hero-pagina .occhiello {
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--corallo);
  margin-bottom: 12px;
}
.sezione-testa h2 { font-size: clamp(26px, 3.2vw, 38px); color: var(--blu); margin-bottom: 14px; }
.sezione-testa p { color: var(--grigio); font-size: 19px; }

/* ── Gruppi di servizi con riquadri ── */
.gruppo { padding: 40px 0 72px; }
.gruppo.alterno { background: #EAF2FA; }
.gruppo-testa { max-width: 46em; margin-bottom: 40px; }
.gruppo-testa h2 { font-size: clamp(25px, 3vw, 34px); color: var(--blu); margin-bottom: 12px; }
.gruppo-testa p { color: var(--grigio); font-size: 18.5px; }
.riquadri {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* Riquadri colorati testuali (stile "hashtag") */
.tinta {
  position: relative;
  border-radius: 18px;
  padding: 36px 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  min-height: 230px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.tinta::before, .tinta::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -88px; right: -88px;
  background-size: 88px 36px;
  background-repeat: repeat;
  opacity: .08;
  pointer-events: none;
  will-change: transform;
}
.tinta::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='36'%3E%3Ctext font-family='Arial, sans-serif' font-size='17' font-weight='bold' fill='white'%3E%3Ctspan x='0' y='13'%3E1%3C/tspan%3E%3Ctspan x='11' y='13'%3E0%3C/tspan%3E%3Ctspan x='22' y='13'%3E0%3C/tspan%3E%3Ctspan x='33' y='13'%3E1%3C/tspan%3E%3Ctspan x='44' y='13'%3E1%3C/tspan%3E%3Ctspan x='55' y='13'%3E0%3C/tspan%3E%3Ctspan x='66' y='13'%3E1%3C/tspan%3E%3Ctspan x='77' y='13'%3E0%3C/tspan%3E%3C/text%3E%3C/svg%3E");
  animation: scorreDestra 13s linear infinite;
}
.tinta::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='36'%3E%3Ctext font-family='Arial, sans-serif' font-size='17' font-weight='bold' fill='white'%3E%3Ctspan x='0' y='31'%3E0%3C/tspan%3E%3Ctspan x='11' y='31'%3E1%3C/tspan%3E%3Ctspan x='22' y='31'%3E1%3C/tspan%3E%3Ctspan x='33' y='31'%3E1%3C/tspan%3E%3Ctspan x='44' y='31'%3E0%3C/tspan%3E%3Ctspan x='55' y='31'%3E1%3C/tspan%3E%3Ctspan x='66' y='31'%3E0%3C/tspan%3E%3Ctspan x='77' y='31'%3E0%3C/tspan%3E%3C/text%3E%3C/svg%3E");
  animation: scorreSinistra 13s linear infinite;
}
@keyframes scorreDestra {
  from { transform: translateX(0); }
  to { transform: translateX(88px); }
}
@keyframes scorreSinistra {
  from { transform: translateX(0); }
  to { transform: translateX(-88px); }
}
.tinta > * { position: relative; z-index: 1; margin: 0; }
a.tinta:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(15,39,64,.28); filter: brightness(1.05); }
.c-blu { background: linear-gradient(135deg, #1E4573 0%, var(--blu) 100%); }
.c-teal { background: linear-gradient(135deg, #1F7A72 0%, #15544E 100%); }
.c-corallo { background: linear-gradient(135deg, #E06A3F 0%, #C24E2B 100%); }
.c-ardesia { background: linear-gradient(135deg, #4A6E96 0%, #35618E 100%); }
.tinta-testata {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tinta .icona-tinta {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: .55;
  flex: none;
}
.tinta .icona-tinta ~ .domanda,
.tinta-testata .domanda { margin: 0; flex: 1; min-width: 0; }
.tinta-mini .tinta-testata { gap: 12px; }
.tinta-mini .icona-tinta { height: 38px; }
.tinta .domanda {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.32;
}
.tinta .descr {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  flex: 1;
}
.tinta .link {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
a.tinta:hover .link { text-decoration: underline; }
.tinta-mini { min-height: 185px; padding: 26px 26px 22px; gap: 12px; }
.tinta-mini .domanda { font-size: 18.5px; }
.tinta-mini .descr { font-size: 14.5px; }
.gruppo-cta { margin-top: 36px; text-align: center; }

/* Colore tema per pagina di dettaglio: il colore del suo riquadro */
.tema-blu .dettaglio-testo h2 { color: #1E4573; }
.tema-teal .dettaglio-testo h2 { color: #15544E; }
.tema-corallo .dettaglio-testo h2 { color: #C24E2B; }
.tema-ardesia .dettaglio-testo h2 { color: #35618E; }

/* ── Rassicurazione ── */
.rassicurazione { background: var(--blu); color: #fff; padding: 84px 0; }
.rassicurazione h2 {
  font-size: clamp(27px, 3.4vw, 38px);
  color: #F5B199;
  margin-bottom: 18px;
}
.rassicurazione p { font-size: 17.5px; color: #DCE9F5; max-width: 42em; }

/* ── Come lavoriamo ── */
.metodo { padding: 84px 0; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 8px; }
.step {
  background: #fff;
  border-radius: 16px;
  padding: 34px 30px;
  box-shadow: 0 6px 24px rgba(23,55,91,.09);
  border-top: 4px solid var(--blu);
}
.step:nth-child(2) { border-top-color: var(--corallo); }
.step:nth-child(3) { border-top-color: #1F7A72; }
.step .numero {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blu);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 21px;
  margin-bottom: 18px;
}
.step:nth-child(2) .numero { background: var(--corallo); }
.step:nth-child(3) .numero { background: #1F7A72; }
.step h3 { font-size: 21px; color: var(--blu); margin-bottom: 8px; }
.step p { color: var(--grigio); font-size: 16.5px; }

/* ── CTA finale ── */
.cta-finale {
  background: linear-gradient(140deg, var(--blu) 0%, var(--blu-scuro) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-finale h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 14px; }
.cta-finale p { color: #DCE9F5; font-size: 19px; margin-bottom: 32px; max-width: 40em; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
footer { background: var(--blu-scuro); color: #9FB3C8; padding: 52px 0 36px; font-size: 15.5px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.footer-logo img { height: 60px; width: auto; margin-bottom: 12px; }
footer strong { color: #fff; font-family: 'Sora', sans-serif; font-size: 17px; display: block; margin-bottom: 10px; }
footer a { color: #C9D8E8; text-decoration: none; }
footer a:hover { color: #fff; }
footer li { list-style: none; margin-bottom: 6px; }
.footer-fondo {
  display: flex; gap: 20px; margin-top: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 14px; flex-wrap: wrap;
}

/* ── Pagine di dettaglio servizio ── */
.hero-pagina {
  position: relative;
  background: linear-gradient(140deg, var(--blu) 0%, var(--blu-scuro) 100%);
  color: #fff;
  padding: 60px 0 64px;
  overflow: hidden;
}
.hero-pagina::before, .hero-pagina::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -88px; right: -88px;
  background-size: 88px 36px;
  background-repeat: repeat;
  opacity: .08;
  pointer-events: none;
  will-change: transform;
}
.hero-pagina::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='36'%3E%3Ctext font-family='Arial, sans-serif' font-size='17' font-weight='bold' fill='white'%3E%3Ctspan x='0' y='13'%3E1%3C/tspan%3E%3Ctspan x='11' y='13'%3E0%3C/tspan%3E%3Ctspan x='22' y='13'%3E0%3C/tspan%3E%3Ctspan x='33' y='13'%3E1%3C/tspan%3E%3Ctspan x='44' y='13'%3E1%3C/tspan%3E%3Ctspan x='55' y='13'%3E0%3C/tspan%3E%3Ctspan x='66' y='13'%3E1%3C/tspan%3E%3Ctspan x='77' y='13'%3E0%3C/tspan%3E%3C/text%3E%3C/svg%3E");
  animation: scorreDestra 13s linear infinite;
}
.hero-pagina::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='36'%3E%3Ctext font-family='Arial, sans-serif' font-size='17' font-weight='bold' fill='white'%3E%3Ctspan x='0' y='31'%3E0%3C/tspan%3E%3Ctspan x='11' y='31'%3E1%3C/tspan%3E%3Ctspan x='22' y='31'%3E1%3C/tspan%3E%3Ctspan x='33' y='31'%3E1%3C/tspan%3E%3Ctspan x='44' y='31'%3E0%3C/tspan%3E%3Ctspan x='55' y='31'%3E1%3C/tspan%3E%3Ctspan x='66' y='31'%3E0%3C/tspan%3E%3Ctspan x='77' y='31'%3E0%3C/tspan%3E%3C/text%3E%3C/svg%3E");
  animation: scorreSinistra 13s linear infinite;
}
.hero-pagina .container { position: relative; z-index: 1; }
.tema-blu .hero-pagina { background: linear-gradient(135deg, #1E4573 0%, var(--blu) 100%); }
.tema-teal .hero-pagina { background: linear-gradient(135deg, #1F7A72 0%, #15544E 100%); }
.tema-corallo .hero-pagina { background: linear-gradient(135deg, #E06A3F 0%, #C24E2B 100%); }
.tema-ardesia .hero-pagina { background: linear-gradient(135deg, #4A6E96 0%, #35618E 100%); }
.hero-pagina .occhiello { color: #F5B199; margin-bottom: 10px; }
.tema-corallo .hero-pagina .occhiello { color: #FFF3ED; }
.hero-testata { display: flex; align-items: center; gap: 24px; }
.hero-pagina .icona-hero { height: 96px; width: auto; object-fit: contain; opacity: .55; flex: none; }
.hero-pagina h1 { font-size: clamp(30px, 3.6vw, 44px); max-width: 22em; margin: 0; flex: 1; min-width: 0; }
.hero-pagina .sotto { color: #DCE9F5; font-size: 19.5px; margin-top: 14px; max-width: 42em; }
.briciole { font-size: 14.5px; margin-bottom: 22px; color: #9FB3C8; }
.briciole a { color: #C9D8E8; text-decoration: none; }
.briciole a:hover { color: #fff; text-decoration: underline; }

.dettaglio { padding: 72px 0; }
.dettaglio-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: 56px; align-items: start; }
.dettaglio-testo h2 { color: var(--blu); font-size: 26px; margin: 38px 0 16px; }
.dettaglio-testo h2:first-child { margin-top: 0; }
.dettaglio-testo p { margin-bottom: 16px; }
.spunte { list-style: none; margin: 8px 0 10px; }
.spunte li { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid #EEE9E2; align-items: flex-start; }
.spunte li:last-child { border-bottom: none; }
.spunte .segno {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--corallo);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 3px;
}
.spunte strong { display: block; color: var(--blu); font-size: 17px; }
.spunte span { color: var(--grigio); font-size: 15.5px; }
.spunte .segno.numero { background: var(--blu); font-size: 13px; }

.avviso {
  background: linear-gradient(135deg, var(--blu) 0%, var(--blu-scuro) 100%);
  color: #fff;
  border-radius: 16px;
  padding: 30px 32px;
  margin: 30px 0 38px;
}
.avviso h3 { color: #F5B199; font-size: 21px; margin-bottom: 12px; }
.avviso p { color: #DCE9F5; margin-bottom: 14px; }
.avviso .btn { margin-top: 6px; }

.colonna-lato { position: sticky; top: 100px; }
.box-cta { background: var(--azzurro); border-radius: 16px; padding: 28px; }
.box-cta h3 { color: var(--blu); font-size: 20px; margin-bottom: 10px; }
.box-cta p { font-size: 15.5px; color: var(--grigio); margin-bottom: 18px; }
.box-cta .btn { width: 100%; text-align: center; }
.box-cta .btn-onda { margin-top: 10px; display: block; }

.correlati { background: #fff; padding: 60px 0 80px; border-top: 1px solid rgba(23,55,91,.08); }
.correlati h2 { color: var(--blu); font-size: 26px; margin-bottom: 28px; text-align: center; }
.correlati-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Moduli (finestre) ── */
.modale-sfondo {
  position: fixed;
  inset: 0;
  background: rgba(15,39,64,.62);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 20px;
}
.modale-sfondo.aperto { display: flex; }
.modale {
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 34px 34px 28px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.modale h3 { color: var(--blu); font-size: 23px; margin-bottom: 6px; padding-right: 30px; }
.modale .sotto { color: var(--grigio); font-size: 15.5px; margin-bottom: 22px; }
.modale .chiudi {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--grigio);
  cursor: pointer;
  line-height: 1;
}
.modale .chiudi:hover { color: var(--antracite); }
.campo { margin-bottom: 16px; }
.campo label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 6px; color: var(--blu); }
.campo label .fac { font-weight: 400; color: var(--grigio); font-size: 13.5px; }
.campo input, .campo select, .campo textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #D5DEE8;
  border-radius: 10px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  background: #fff;
  color: var(--antracite);
}
.campo textarea { min-height: 110px; resize: vertical; }
.campo input:focus, .campo select:focus, .campo textarea:focus {
  outline: none;
  border-color: var(--corallo);
  box-shadow: 0 0 0 3px rgba(232,115,74,.15);
}
.campo-doppio { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modale .btn { width: 100%; }
.modale .nota { font-size: 13.5px; color: var(--grigio); margin-top: 12px; text-align: center; }
/* ── Questionario NIS2 ── */
#modale-nis2 h3 { font-size: 20px; line-height: 1.35; margin-bottom: 18px; }
.quiz-domanda { margin-bottom: 18px; }
.quiz-domanda p { font-weight: 700; font-size: 15px; color: var(--blu); margin: 0 0 8px; line-height: 1.45; }
.quiz-domanda .quiz-settori { font-weight: 400; font-size: 13.5px; color: var(--grigio); margin: 0 0 10px; line-height: 1.5; }
.quiz-opzioni { display: flex; gap: 22px; flex-wrap: wrap; }
.quiz-opzioni label { display: flex; align-items: center; gap: 7px; font-size: 15px; cursor: pointer; }
.quiz-opzioni input { accent-color: var(--corallo); width: 17px; height: 17px; margin: 0; }
.nis2-risposta { background: var(--azzurro); border-radius: 12px; padding: 18px 20px; margin-bottom: 18px; }
.nis2-risposta h4 { font-family: 'Sora', sans-serif; color: var(--blu); font-size: 18px; margin: 0 0 8px; }
.nis2-risposta p { color: var(--antracite); font-size: 15px; margin: 0; }

.esito-ok { text-align: center; padding: 22px 0 10px; }
.esito-icona {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #2E9E5B;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.esito-ok h4 { font-family: 'Sora', sans-serif; color: var(--blu); font-size: 21px; margin-bottom: 8px; }
.esito-ok p { color: var(--grigio); }
.esito-errore {
  margin-top: 14px;
  background: #FDECE4;
  border: 1.5px solid var(--corallo);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: var(--antracite);
}
.esito-errore a { color: var(--blu); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 1020px) {
  .correlati-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .riquadri { grid-template-columns: 1fr; }
  .tinta { min-height: 190px; }
}
@media (max-width: 640px) {
  .hero-testata { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-pagina .icona-hero { height: 64px; }
  .hero-pagina h1 { font-size: clamp(26px, 8vw, 34px); overflow-wrap: break-word; }
}
@media (max-width: 860px) {
  nav.menu { display: none; }
  .btn-hamburger { display: flex; }
  .dettaglio-grid { grid-template-columns: 1fr; }
  .step-grid { grid-template-columns: 1fr; }
  .hero-contenuto { padding: 64px 0; }
  .colonna-lato { position: static; }
  .campo-doppio { grid-template-columns: 1fr; }
}
body.bloccato { overflow: hidden; position: fixed; width: 100%; }

/* ── Banner cookie ── */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: var(--blu-scuro);
  color: #DCE9F5;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 24px rgba(0,0,0,.18);
  transform: translateY(110%);
  transition: transform .35s ease;
}
.cookie-banner.visibile { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 15px; max-width: 640px; }
.cookie-banner a { color: #fff; text-decoration: underline; }
.cookie-bottoni { display: flex; gap: 12px; flex: none; }
.cookie-bottoni .btn { padding: 11px 22px; font-size: 15px; }
@media (max-width: 640px) {
  .cookie-banner { justify-content: flex-start; padding: 18px 20px; }
  .cookie-bottoni { width: 100%; }
  .cookie-bottoni .btn { flex: 1; text-align: center; }
}
@media (max-width: 560px) {
  .riquadri { grid-template-columns: 1fr; }
  .modale { padding: 26px 18px 20px; }
  .nav { gap: 8px; }
  .btn-assistenza { padding: 9px 13px; font-size: 13.5px; }
  .btn-assistenza svg { flex: none; }
  .btn-assistenza .testo-lungo { display: none; }
  .btn-assistenza .testo-breve { display: inline; }
}
