/* ---------- Design tokens ---------- */
:root {
  --navy-950: #0f1628;
  --navy-900: #0240b8;
  --navy-800: #0b3fae;
  --navy-700: #0356d4;
  --navy-600: #09a4dd;
  --ink: #0f1628;
  --paper: #f7f9fc;
  --paper-alt: #f4f7fd;
  --white: #ffffff;
  --gold: #f9c127;
  --gold-dark: #c8920a;
  --gold-light: #ffe9ad;
  --teal: #09a4dd;
  --text-muted: #556080;
  --text-inverse: #b9c3de;
  --danger: #e13b3b;
  --high: #e29400;
  --limited: #09a4dd;
  --minimal: #2fa96a;
  --radius: 24px;
  --radius-sm: 12px;
  --shadow-md: 0 8px 24px rgba(2, 64, 184, .08);
  --shadow-lg: 0 16px 40px rgba(2, 64, 184, .14);
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* i link ancora non finiscono sotto l'header fisso */
section[id], main[id] { scroll-margin-top: 88px; }

/* focus visibile per accessibilità/tastiera */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* animazione d'ingresso soft — attiva solo se il JS aggiunge .reveal-ready,
   così senza JS i contenuti restano sempre visibili */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal-ready .reveal { opacity: 1; transform: none; transition: none; }
  .pulse-dot { animation: none; }
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .5em; color: var(--navy-900); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.05rem, 1.3vw + .8rem, 1.3rem); }
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(249, 193, 39, 0.14);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.highlight { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost {
  background: var(--white);
  border-color: rgba(2, 64, 184, .18);
  color: var(--navy-900);
}
.btn--ghost:hover { border-color: var(--navy-900); }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--nav { margin-left: auto; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 251, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(2, 64, 184, .08);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo img { height: 34px; width: auto; }
.logo__divider { width: 1px; height: 20px; background: rgba(2,64,184,.15); }
.logo__context {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--navy-800);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  display: block;
}

/* ---------- Danger ribbon ---------- */
.danger-ribbon {
  background: var(--danger);
  color: #fff;
  text-align: center;
  font-size: .84rem;
  font-weight: 700;
  padding: 9px 16px;
  letter-spacing: .01em;
}
.danger-ribbon strong { font-weight: 800; }
.danger-ribbon .pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.7); }
}

/* ---------- Hero (dark, dramatic) ---------- */
.hero {
  position: relative;
  padding: 72px 0 76px;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(225,59,59,.18), transparent 62%),
    radial-gradient(1000px 600px at 80% 120%, rgba(9,164,221,.14), transparent 60%),
    linear-gradient(180deg, #0b1120 0%, var(--navy-950) 100%);
  text-align: center;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 { color: #fff; font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -.02em; }
.hero .highlight { color: var(--gold); }
.hero__lead { font-size: 1.15rem; max-width: 60ch; color: var(--text-inverse); }
.hero__lead strong { color: #fff; }
.hero .eyebrow {
  color: #ffb4b4;
  background: rgba(225,59,59,.16);
  border: 1px solid rgba(225,59,59,.4);
}
.hero__cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin: 30px 0 22px; }
.hero .btn--primary {
  background: linear-gradient(135deg, #ffd35a, var(--gold));
  color: #3a2a00;
  box-shadow: 0 12px 30px rgba(249,193,39,.35);
}
.hero .btn--ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}
.hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.hero__trust {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: var(--text-inverse);
  font-weight: 500;
}

/* Counter: giorni di esposizione */
.hero__counter {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  padding: 14px 24px;
  background: rgba(225,59,59,.12);
  border: 1px solid rgba(225,59,59,.35);
  border-radius: 999px;
}
.hero__counter-num {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b6b;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero__counter-label {
  text-align: left;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-inverse);
  line-height: 1.25;
  max-width: 22ch;
}

/* ---------- Timeline bar ---------- */
.timeline { background: var(--navy-900); padding: 26px 0; }
.timeline__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.timeline__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.timeline__item strong { color: var(--gold); font-size: 1rem; }
.timeline__item span { color: var(--text-inverse); font-size: .85rem; }
.timeline__alert {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: var(--text-inverse);
  font-size: .88rem;
  font-weight: 500;
  text-align: center;
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section--muted { background: var(--paper-alt); }
.section--dark {
  background: var(--navy-950);
  box-shadow: inset 0 32px 32px -32px rgba(0,0,0,.22), inset 0 -32px 32px -32px rgba(0,0,0,.22);
}
.section--dark p { color: var(--text-inverse); }
.section--cta { background: linear-gradient(180deg, var(--paper-alt), var(--paper)); }
#chi-riguarda { padding: 64px 0; }
#sanzioni, #contatti { padding: 96px 0; }

.section__head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section__head p { font-size: 1.05rem; }
.section__head--light h2 { color: var(--white); }
.section__head--light { margin-bottom: 40px; }

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section__note { text-align: center; color: var(--text-inverse); max-width: 640px; margin: 32px auto 0; font-size: .9rem; }

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--navy-800);
  font-weight: 500;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.autovalutazione__result {
  margin-top: 28px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(249,193,39,.10), rgba(249,193,39,.04));
  border: 1px solid rgba(249,193,39,.30);
  border-radius: 16px;
  font-size: .95rem;
  color: var(--ink);
  text-align: center;
}
.autovalutazione__result a { color: var(--navy-900); text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }

.section__small-note { font-size: .85rem; color: var(--text-muted); font-style: italic; margin-top: -4px; }

.section__figure {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fact-card {
  background: linear-gradient(180deg, var(--white), var(--paper-alt));
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(2,64,184,.06);
  border-left: 4px solid var(--gold);
}
.fact-card--alt { border-left-color: var(--danger); }
.fact-card__number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy-900);
  margin-bottom: 6px;
}
.fact-card__label { color: var(--text-muted); font-size: .95rem; }

/* ---------- Grid / cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.role-card, .service-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--white), var(--paper-alt));
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(2,64,184,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.role-card:hover, .service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.role-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2,64,184,.1), rgba(9,164,221,.12));
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 16px;
}
.role-card p, .service-card p { font-size: .93rem; margin-bottom: 0; }
.service-card p.service-card__note {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(2,64,184,.15);
  font-size: .85rem;
  color: var(--text-muted);
}
.service-card > p:not(.service-card__note) { margin-bottom: 14px; }
.service-card__note strong { color: var(--navy-800); }
.service-card h3 { color: var(--navy-900); }

/* ---------- Risk pyramid ---------- */
.risk-pyramid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.risk-level {
  display: grid;
  grid-template-columns: 8px 1fr;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(2,64,184,.06);
  overflow: hidden;
}
.risk-level__bar { background: var(--minimal); }
.risk-level--unacceptable .risk-level__bar { background: var(--danger); }
.risk-level--high .risk-level__bar { background: var(--high); }
.risk-level--limited .risk-level__bar { background: var(--limited); }
.risk-level--minimal .risk-level__bar { background: var(--minimal); }
.risk-level__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
}
.risk-level__content h3 { margin-bottom: 6px; }
.risk-level__content p { margin: 0; font-size: .93rem; }
.risk-level__badge {
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.risk-level__badge--unacceptable { color: #b3261e; background: rgba(225,59,59,.14); }
.risk-level__badge--high { color: #9a6300; background: rgba(226,148,0,.16); }
.risk-level__badge--limited { color: #0369a1; background: rgba(9,164,221,.14); }
.risk-level__badge--minimal { color: #1c7a4a; background: rgba(47,169,106,.14); }
.risk-level--unacceptable { margin-right: 0; }
.risk-level--high { margin-left: 6%; margin-right: 0; }
.risk-level--limited { margin-left: 12%; margin-right: 0; }
.risk-level--minimal { margin-left: 18%; margin-right: 0; }

/* ---------- Penalty cards ---------- */
.penalty-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.1);
  border-top: 4px solid var(--danger);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease;
}
.penalty-card:hover { transform: translateY(-4px); border-top-color: #ff6b6b; }
.penalty-card__label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ff8a8a;
  margin-bottom: 10px;
}
.penalty-card__amount {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.penalty-card__amount small { display: block; font-size: .9rem; font-weight: 700; color: var(--gold); font-family: var(--font-body); margin-top: 8px; }
.penalty-card p { color: var(--text-inverse); margin: 0; font-size: .95rem; }

.services__pricing-link {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: .95rem;
}
.services__pricing-link a {
  color: var(--limited);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Process (stepper) ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 26px 26px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(2,64,184,.06);
}
/* connettore orizzontale tra gli step (desktop) */
.process__step::after {
  content: "";
  position: absolute;
  top: 62px;
  right: -24px;
  width: 24px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--navy-600) 0 6px, transparent 6px 12px);
  z-index: 1;
}
.process__step:last-child::after { display: none; }
.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(2,64,184,.28);
}
.process__step h3 { margin-bottom: 8px; }
.process__step p { font-size: .92rem; margin: 0 0 16px; color: var(--text-muted); }
.process__tag {
  margin-top: auto;
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--navy-800);
  background: rgba(2,64,184,.08);
  padding: 6px 12px;
  border-radius: 999px;
}
.process__tag--free {
  color: #1c7a4a;
  background: rgba(47,169,106,.14);
}
.process__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ---------- FAQ Accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 14px; }
.accordion__item {
  background: var(--white);
  border: 1px solid rgba(2,64,184,.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: border-color .18s ease;
}
.accordion__item.is-open { border-color: rgba(2,64,184,.28); }
.accordion__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 22px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
}
.accordion__trigger::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: var(--navy-900);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
  transition: transform .2s ease, background-color .2s ease;
}
.accordion__item.is-open .accordion__trigger::after { transform: rotate(45deg); background-color: var(--danger); }
.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.accordion__panel p { padding: 0 22px 22px; margin: 0; font-size: .95rem; }

/* ---------- Form ---------- */
.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row label { font-size: .85rem; font-weight: 600; color: var(--navy-800); }
.form__row input, .form__row textarea {
  border: 1.5px solid rgba(2,64,184,.15);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  resize: vertical;
}
.form__row input:focus, .form__row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.form__note { text-align: center; font-size: .8rem; color: var(--text-muted); margin: 0; }
.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.form__consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--navy-900);
}
.form__reinforce {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 4px;
}

/* ---------- Insight box ---------- */
.insight-box {
  background: linear-gradient(135deg, rgba(249,193,39,.10), rgba(249,193,39,.04));
  border: 1px solid rgba(249,193,39,.30);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 780px;
  margin: 32px auto 0;
  text-align: left;
}
.insight-box__icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.insight-box__text { font-size: .88rem; color: var(--gold-dark); line-height: 1.65; font-weight: 500; }
.insight-box__text strong { color: #6b4f00; }
.insight-box a { color: var(--navy-900); text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }

/* ---------- Pricing page ---------- */
.pricing-hero {
  padding: 64px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-alt) 100%);
}
.pricing-hero .section__head { margin-bottom: 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: linear-gradient(180deg, var(--white), var(--paper-alt));
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
}
.price-card--featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-950);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card__name { font-size: 1.1rem; color: var(--navy-900); margin-bottom: 6px; }
.price-card__tagline { font-size: .88rem; color: var(--text-muted); margin-bottom: 20px; min-height: 40px; }
.price-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy-900);
  margin-bottom: 4px;
}
.price-card__price small { font-size: .95rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 500; }
.price-card__period { font-size: .8rem; color: var(--text-muted); margin-bottom: 24px; }
.price-card__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.price-card__list li {
  position: relative;
  padding-left: 26px;
  font-size: .92rem;
  color: var(--navy-800);
}
.price-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.pricing-note {
  text-align: center;
  max-width: 640px;
  margin: 40px auto 0;
  font-size: .88rem;
  color: var(--text-muted);
}
.pricing-compare {
  overflow-x: auto;
}
.pricing-compare table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-compare th, .pricing-compare td {
  padding: 14px 18px;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid rgba(2,64,184,.08);
}
.pricing-compare th { color: var(--navy-900); font-family: var(--font-display); font-weight: 700; }
.pricing-compare td { color: var(--text-muted); }
.pricing-compare tr:last-child td { border-bottom: none; }

.cta-center { display: flex; justify-content: center; }

/* ---------- Spazio calendario ---------- */
.calendar-embed {
  margin-top: 40px;
  border-radius: var(--radius);
}
.calendar-embed iframe { width: 100%; border: 0; border-radius: var(--radius); display: block; }
/* checklist della CTA: centrata sotto al testo, voci allineate a sinistra */
.checklist--cta {
  max-width: 640px;
  margin: 8px auto 0;
  display: grid;
  gap: 6px;
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); padding: 48px 0 32px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.logo--footer .logo__divider { background: rgba(255,255,255,.15); }
.logo--footer .logo__context { color: var(--text-inverse); }
.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer__nav a { color: var(--text-inverse); font-size: .88rem; }
.footer__nav a:hover { color: var(--gold); }
.footer__disclaimer { max-width: 560px; color: rgba(185,195,222,.55); font-size: .78rem; margin: 10px 0 0; }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 8px;
}
.footer__legal a { color: var(--text-inverse); font-size: .8rem; text-decoration: underline; text-underline-offset: 2px; }
.footer__legal a:hover { color: var(--gold); }
.footer__copy { color: rgba(185,195,222,.55); font-size: .8rem; margin: 4px 0 0; }
.footer__legal-info { color: rgba(185,195,222,.4); font-size: .74rem; line-height: 1.5; margin: 4px 0 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .section--split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  /* nasconde il connettore a fine riga (2ª card) su griglia a 2 colonne */
  .process__step:nth-child(2n)::after { display: none; }
  .timeline__inner { grid-template-columns: repeat(2, 1fr); }
}


@media (max-width: 720px) {
  .grid--4, .grid--3, .process { grid-template-columns: 1fr; }
  .process__step::after { display: none; }
  .timeline__inner { grid-template-columns: 1fr; }
  .risk-level--high, .risk-level--limited, .risk-level--minimal { margin-left: 0; }
  .risk-level__content { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section { padding: 60px 0; }
  .hero { padding: 48px 0 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .insight-box { flex-direction: column; gap: 10px; }
}

@media (max-width: 520px) {
  .header__inner { gap: 12px; }
  .logo img { height: 28px; }
  .btn--nav { padding: 11px 16px; font-size: .85rem; }
}
