/* Green Core Engineering — foglio di stile unico
   Direzione "rapporto tecnico": vedi clients/gce/DESIGN.md */

:root {
  --green: #6a8e4e;
  --green-deep: #557340;
  --green-soft: #b1d082;
  --ink: #2d473e;
  --ink-2: #1f332c;
  --paper: #f5f7f2;
  --paper-2: #ebefe5;
  --white: #fcfdfa;
  --muted: #5f6d63;
  --line: #d9dfd2;
  --on-dark: #f5f7f2;
  --on-dark-muted: #c9d6c3;
  --line-dark: rgba(245, 247, 242, 0.16);

  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --radius: 4px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }
a { color: var(--green-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); letter-spacing: -0.01em; line-height: 1.25; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
strong { font-weight: 700; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white); padding: .6rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Testo di servizio ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 1.1rem;
  display: flex;
  gap: .75rem;
  align-items: baseline;
}
.eyebrow .n { color: var(--muted); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.25rem); line-height: 1.55; color: var(--ink); max-width: 60ch; }
.muted { color: var(--muted); }
.note { font-family: var(--mono); font-size: .78rem; line-height: 1.55; color: var(--muted); }
.prose { max-width: 68ch; }
.prose h3 { margin: 2rem 0 .6rem; }
.prose ul { padding-left: 1.2rem; margin: 0 0 1em; }
.prose li { margin-bottom: .4em; }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .8rem 1.4rem;
  font: 700 1rem/1.2 var(--font);
  text-decoration: none; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--green-deep); color: var(--white); }
.btn-primary:hover { background: var(--ink); color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.on-dark .btn-primary { background: var(--green-soft); color: var(--ink-2); }
.on-dark .btn-primary:hover { background: var(--white); color: var(--ink-2); }
.on-dark .btn-ghost { color: var(--on-dark); border-color: var(--on-dark-muted); }
.on-dark .btn-ghost:hover { background: var(--on-dark); color: var(--ink-2); }
.btn svg { width: 18px; height: 18px; flex: none; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.link-arrow { font-weight: 700; text-decoration: none; }
.link-arrow::after { content: "→"; display: inline-block; margin-left: .4rem; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: var(--header-h); }
.brand { display: block; flex: none; }
.brand img { height: 38px; width: auto; }
.nav { display: none; }
.nav ul { list-style: none; display: flex; gap: .25rem; align-items: center; }
.nav a {
  display: block; padding: .5rem .7rem; text-decoration: none; white-space: nowrap;
  color: var(--ink); font-weight: 500; font-size: .96rem; border-radius: var(--radius);
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--green-deep); box-shadow: inset 0 -2px 0 var(--green); border-radius: 0; }
.header-cta { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; gap: .5rem;
  min-height: 44px; padding: 0 .9rem;
  font: 700 .95rem var(--font); color: var(--ink);
  background: transparent; border: 1.5px solid var(--ink); border-radius: var(--radius); cursor: pointer;
}
.menu-toggle .bars { width: 16px; height: 10px; position: relative; border-top: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.menu-open .nav {
  display: block; position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--paper); padding: 1.5rem var(--gutter); overflow-y: auto;
}
.menu-open .nav ul { flex-direction: column; align-items: stretch; gap: 0; }
.menu-open .nav a { font-size: 1.3rem; font-weight: 700; padding: 1rem 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.menu-open .nav a[aria-current="page"] { box-shadow: none; }
.menu-open .nav .nav-cta { margin-top: 1.5rem; }
.menu-open .nav .nav-cta a { border: 0; }
.nav-cta .btn { width: 100%; }
@media (min-width: 1140px) {
  .menu-toggle, .nav-cta { display: none !important; }
  .nav { display: block; }
  .header-cta { display: inline-flex; min-height: 44px; padding: .6rem 1.1rem; font-size: .95rem; }
}

/* ---------- Sezioni ---------- */
.section { padding: var(--section) 0; }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: var(--on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .eyebrow { color: var(--green-soft); }
.section-dark .eyebrow .n, .section-dark .muted, .section-dark .note { color: var(--on-dark-muted); }
.section-dark a:not(.btn) { color: var(--green-soft); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 + p { margin-top: 1.1rem; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 em { font-style: normal; color: var(--green-deep); }
.hero .lead { margin-top: 1.5rem; }
.hero-figure { position: relative; }
.hero-figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.hero-figure figcaption {
  position: absolute; left: 0; bottom: 0; max-width: 88%;
  background: var(--paper); padding: .9rem 1.1rem .2rem 0;
  font-family: var(--mono); font-size: .78rem; color: var(--muted); line-height: 1.5;
}
.hero-facts {
  display: grid; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--line);
  list-style: none;
}
.hero-facts li { padding: .9rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 6.5rem 1fr; gap: 1rem; align-items: baseline; font-size: .98rem; }
.hero-facts .fig { font-size: clamp(1.7rem, 3vw, 2.1rem); }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-figure img { aspect-ratio: 4 / 5; }
}

/* Page hero (pagine interne) */
.page-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin-top: 1.4rem; }
.crumbs { font-family: var(--mono); font-size: .78rem; color: var(--muted); margin-bottom: 1.2rem; }
.crumbs a { color: var(--muted); }

/* ---------- Split testo + immagine ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.split figure { margin: 0; }
.split figure img { border-radius: var(--radius); width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split figcaption { font-family: var(--mono); font-size: .75rem; color: var(--muted); margin-top: .7rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse > :first-child { order: 2; }
  .split .sticky { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
}

/* ---------- Confronto venditore / GCE ---------- */
.versus { display: grid; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.versus > div { padding: clamp(1.4rem, 3vw, 2.2rem); }
.versus > div + div { border-top: 1px solid var(--line); }
.versus h3 { font-size: 1rem; font-family: var(--mono); font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1.1rem; }
.versus .them h3 { color: var(--muted); }
.versus .us { background: var(--ink); color: var(--on-dark); border-radius: 0 0 var(--radius) var(--radius); }
.versus .us h3 { color: var(--green-soft); }
.versus ul { list-style: none; }
.versus li { padding: .6rem 0 .6rem 1.7rem; position: relative; border-bottom: 1px solid var(--line); }
.versus .us li { border-bottom-color: var(--line-dark); }
.versus li:last-child { border-bottom: 0; }
.versus .them li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }
.versus .us li::before { content: "✓"; position: absolute; left: 0; color: var(--green-soft); font-weight: 700; }
@media (min-width: 820px) {
  .versus { grid-template-columns: 1fr 1fr; }
  .versus > div + div { border-top: 0; }
  .versus .us { border-radius: 0 var(--radius) var(--radius) 0; }
}

/* ---------- Report scenari ---------- */
.report { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.report-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; padding: 1.1rem clamp(1rem, 3vw, 1.6rem); border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.report-head strong { color: var(--ink); font-weight: 500; }
.report table { width: 100%; border-collapse: collapse; }
.report th, .report td { text-align: left; padding: .9rem clamp(1rem, 3vw, 1.6rem); border-bottom: 1px solid var(--line); vertical-align: middle; }
.report tr:last-child td { border-bottom: 0; }
.report th { font: 500 .72rem var(--mono); text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.report td.num { font-family: var(--mono); font-variant-numeric: tabular-nums; white-space: nowrap; text-align: right; }
.report td.delta { color: var(--green-deep); font-weight: 500; }
.report .bar { height: 8px; background: var(--paper-2); border-radius: 2px; min-width: 60px; }
.report .bar span { display: block; height: 100%; background: var(--green); border-radius: 2px; }
.report tr.base .bar span { background: var(--muted); }
.report tr.best td:first-child { font-weight: 700; }
.report .col-bar { width: 24%; }
.report td:first-child { min-width: 11rem; }
.report-wrap { display: grid; gap: clamp(2rem, 4vw, 3rem); }
@media (min-width: 1000px) { .report-wrap { grid-template-columns: .8fr 1.2fr; align-items: start; } }
.report-foot { padding: 1rem clamp(1rem, 3vw, 1.6rem); border-top: 1px solid var(--line); }
@media (max-width: 640px) {
  .report .col-bar, .report td.bar-cell { display: none; }
  .report th, .report td { padding-left: .9rem; padding-right: .9rem; }
  .report td:first-child { font-size: .95rem; }
}

/* ---------- Step del metodo ---------- */
.steps { list-style: none; counter-reset: step; border-top: 1px solid var(--line); }
.section-dark .steps { border-top-color: var(--line-dark); }
.steps > li {
  counter-increment: step;
  display: grid; grid-template-columns: 3rem 1fr; gap: .2rem 1rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
}
.section-dark .steps > li { border-bottom-color: var(--line-dark); }
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono); font-size: .9rem; color: var(--green-deep); padding-top: .2rem;
  grid-row: span 3;
}
.section-dark .steps > li::before { color: var(--green-soft); }
.steps h3 { font-size: clamp(1.3rem, 2.2vw, 1.5rem); }
.steps .time { font-family: var(--mono); font-size: .78rem; color: var(--muted); }
.section-dark .steps .time { color: var(--on-dark-muted); }
.steps p { margin: .35rem 0 0; color: var(--muted); max-width: 62ch; }
.section-dark .steps p { color: var(--on-dark-muted); }
@media (min-width: 820px) {
  .steps > li { grid-template-columns: 4.5rem 1fr 15rem; align-items: baseline; }
  .steps > li::before { grid-row: auto; }
  .steps .time { grid-column: 3; grid-row: 1; text-align: right; }
  .steps p { grid-column: 2; }
}

/* ---------- Tre esiti ---------- */
.outcomes { list-style: none; counter-reset: out; }
.outcomes li {
  counter-increment: out; display: grid; grid-template-columns: 2.2rem 1fr; gap: 0 1rem;
  padding: 1.3rem 0; border-top: 1px solid var(--line);
}
.outcomes li:last-child { border-bottom: 1px solid var(--line); }
.outcomes li::before { content: counter(out) "."; font-family: var(--mono); color: var(--green-deep); font-size: 1rem; padding-top: .15rem; }
.outcomes strong { display: block; font-size: 1.15rem; margin-bottom: .2rem; }
.outcomes span { color: var(--muted); }

/* ---------- Colonne di contenuto (servizi, incentivi) ---------- */
.cols { display: grid; gap: 0; border-top: 1px solid var(--line); }
.cols > article { padding: 1.8rem 0; border-bottom: 1px solid var(--line); }
.cols h3 { margin-bottom: .6rem; }
.cols p { color: var(--muted); }
.cols .tag { font-family: var(--mono); font-size: .75rem; color: var(--green-deep); text-transform: uppercase; letter-spacing: .07em; display: block; margin-bottom: .7rem; }
@media (min-width: 820px) {
  .cols.c2 { grid-template-columns: 1fr 1fr; column-gap: 3.5rem; }
  .cols.c3 { grid-template-columns: repeat(3, 1fr); column-gap: 2.5rem; }
}

/* Pannelli di percorso (Privati / Aziende) */
.paths { display: grid; gap: 1.25rem; }
.path { display: grid; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink); transition: border-color .18s ease; }
.path:hover { border-color: var(--ink); color: var(--ink); }
.path img { width: 100%; height: clamp(220px, 24vw, 320px); object-fit: cover; }
.path > div { padding: clamp(1.3rem, 3vw, 2rem); }
.path h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); margin-bottom: .6rem; }
.path p { color: var(--muted); }
.path .link-arrow { color: var(--green-deep); display: inline-block; margin-top: 1rem; }
@media (min-width: 820px) { .paths { grid-template-columns: 1.25fr 1fr; } }

/* Livelli di servizio (tabella) */
.levels { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.levels th, .levels td { text-align: left; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.levels thead th { font: 500 .72rem var(--mono); text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.levels tbody th { font-size: 1.1rem; width: 24%; }
.levels tbody th small { display: block; font: 500 .72rem var(--mono); color: var(--green-deep); text-transform: uppercase; letter-spacing: .07em; margin-bottom: .3rem; }
.levels td { color: var(--muted); }
.levels tr:last-child > * { border-bottom: 0; }
@media (max-width: 760px) {
  .levels thead { display: none; }
  .levels, .levels tbody, .levels tr, .levels th, .levels td { display: block; width: 100%; }
  .levels tr { border-bottom: 1px solid var(--line); padding: 1rem 1.1rem; }
  .levels tr:last-child { border-bottom: 0; }
  .levels th, .levels td { padding: .25rem 0; border: 0; }
  .levels td::before { content: attr(data-label); display: block; font: 500 .7rem var(--mono); text-transform: uppercase; letter-spacing: .07em; color: var(--ink); margin-top: .6rem; }
}

/* Tabella incentivi */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); min-width: 560px; }
.data th, .data td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.data thead th { font: 500 .72rem var(--mono); text-transform: uppercase; letter-spacing: .07em; color: var(--muted); }
.data tbody th { font-size: 1.02rem; }
.data td { color: var(--muted); }
.data td strong { color: var(--ink); }

/* Regioni */
.regions { display: grid; gap: 0; border-top: 1px solid var(--line); list-style: none; }
.regions li { padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.regions h3 { margin-bottom: .4rem; }
.regions p { color: var(--muted); }
@media (min-width: 820px) { .regions { grid-template-columns: repeat(3, 1fr); column-gap: 2.5rem; } }

/* Profilo persona */
.person { max-width: 60ch; }
.person .role { font-family: var(--mono); font-size: .8rem; color: var(--green-deep); text-transform: uppercase; letter-spacing: .07em; margin: .5rem 0 1.2rem; }
.section-dark .person .role { color: var(--green-soft); }

/* Lista "cosa non facciamo" */
.nots { list-style: none; border-top: 1px solid var(--line-dark); }
.nots li { padding: 1.2rem 0; border-bottom: 1px solid var(--line-dark); display: grid; gap: .3rem; }
.nots strong { color: var(--white); font-size: 1.1rem; }
.nots span { color: var(--on-dark-muted); }
@media (min-width: 820px) { .nots li { grid-template-columns: 22rem 1fr; gap: 2rem; } }

/* ---------- Form diagnosi ---------- */
.diagnosi-grid { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (min-width: 960px) { .diagnosi-grid { grid-template-columns: .9fr 1.1fr; } }
.promise { list-style: none; border-top: 1px solid var(--line); margin-top: 2rem; }
.promise li { padding: .9rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 7.5rem 1fr; gap: 1rem; }
.promise b { font-family: var(--mono); font-weight: 500; font-size: .8rem; color: var(--green-deep); padding-top: .15rem; }
.lead-form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3.5vw, 2.4rem);
}
.lead-form h3 { font-size: 1.35rem; margin-bottom: .35rem; }
.lead-form .form-sub { color: var(--muted); font-size: .95rem; margin-bottom: 1.5rem; }
.fields { display: grid; gap: 1.1rem; }
@media (min-width: 620px) { .fields { grid-template-columns: 1fr 1fr; } .fields .full { grid-column: 1 / -1; } }
.field label, .field legend { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .4rem; }
.field .opt { font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem .9rem;
  font: 400 1rem var(--font); color: var(--ink);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius);
  transition: border-color .15s ease, background-color .15s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232d473e' stroke-width='1.8'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem; }
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-deep); background: var(--white); box-shadow: 0 0 0 3px rgba(106, 142, 78, 0.18); }
.field input:user-invalid, .field select:user-invalid { border-color: #b3261e; }
.field .consent { display: grid; font-weight: 400; margin-bottom: 0; grid-template-columns: 22px 1fr; gap: .7rem; align-items: start; font-size: .88rem; color: var(--muted); margin-top: .3rem; }
.consent input { width: 20px; height: 20px; margin: .15rem 0 0; accent-color: var(--green-deep); }
.lead-form .btn { width: 100%; margin-top: 1.4rem; min-height: 54px; font-size: 1.05rem; }
.form-foot { margin-top: 1rem; font-size: .88rem; color: var(--muted); text-align: center; }
.hp { position: absolute; left: -9999px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: var(--on-dark); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.cta-band .wrap { display: grid; gap: 1.5rem 3rem; align-items: end; }
.cta-band h2 { color: var(--white); max-width: 20ch; }
.cta-band p { color: var(--on-dark-muted); max-width: 52ch; margin-top: 1rem; }
.cta-band .actions { margin-top: 0; }
@media (min-width: 900px) { .cta-band .wrap { grid-template-columns: 1.3fr 1fr; } .cta-band .actions { justify-content: flex-end; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-2); color: var(--on-dark-muted); padding: 4rem 0 2rem; font-size: .95rem; }
.site-footer a { color: var(--on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--green-soft); text-decoration: underline; }
.footer-grid { display: grid; gap: 2.5rem; }
.footer-grid img { height: 44px; width: auto; margin-bottom: 1.2rem; }
.footer-grid h4 { font: 500 .75rem var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--green-soft); margin-bottom: .9rem; }
.footer-grid ul { list-style: none; display: grid; gap: .45rem; }
.footer-legal { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; font-size: .84rem; }
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ---------- WhatsApp (mobile) ---------- */
.mobile-bar { display: none; }
@media (max-width: 719px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1.35fr; gap: .5rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: var(--paper); border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { min-height: 48px; padding: .6rem .8rem; font-size: .95rem; }
  body { padding-bottom: 76px; }
  .menu-open .mobile-bar { display: none; }
}

/* ---------- Pagine semplici ---------- */
.center-page { min-height: 60vh; display: grid; align-items: center; padding: var(--section) 0; }
.center-page h1 { max-width: 18ch; }

/* Step dentro colonne strette (split): tempi sotto il titolo */
@media (min-width: 820px) {
  .split .steps > li { grid-template-columns: 3.5rem 1fr; }
  .split .steps .time { grid-column: 2; grid-row: auto; text-align: left; }
}

/* Microcopy del form */
.field .hint { display: block; margin-top: .35rem; font-size: .84rem; color: var(--muted); }
.form-note { margin: .8rem 0 0; font-size: .84rem; color: var(--muted); text-align: center; }

/* Cifre: i numeri sono il contenuto principale del brand */
.fig {
  font: 700 clamp(2.2rem, 4.5vw, 3.2rem)/1 var(--font);
  letter-spacing: -0.03em; font-variant-numeric: tabular-nums;
  color: var(--green-deep); display: inline-flex; align-items: baseline; gap: .3rem;
}
.fig small { font: 500 .78rem var(--mono); letter-spacing: 0; color: var(--muted); }
.section-dark .fig { color: var(--green-soft); }
.section-dark .fig small { color: var(--on-dark-muted); }
.fig-word { font-size: clamp(1.6rem, 3.2vw, 2.2rem); letter-spacing: -0.02em; }
.figs { list-style: none; border-top: 1px solid var(--line); }
.section-dark .figs { border-top-color: var(--line-dark); }
.figs li { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.25rem; align-items: start; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.section-dark .figs li { border-bottom-color: var(--line-dark); }
.figs .fig { flex-direction: column; align-items: flex-start; gap: .35rem; }
.figs h3 { padding-top: .2rem; }
.figs h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.figs p { color: var(--muted); margin: 0; }
.section-dark .figs p { color: var(--on-dark-muted); }
@media (max-width: 480px) { .figs li { grid-template-columns: 6.2rem 1fr; gap: 1rem; } }

/* Terzo esito evidenziato: è la promessa che nessun venditore fa */
.outcomes li.hl { background: var(--ink); color: var(--on-dark); border-top-color: var(--ink); padding: 1.3rem 1.2rem; margin-top: .5rem; border-radius: var(--radius); }
.outcomes li.hl:last-child { border-bottom-color: var(--ink); }
.outcomes li.hl::before { color: var(--green-soft); }
.outcomes li.hl strong { color: var(--white); }
.outcomes li.hl span { color: var(--on-dark-muted); }

/* Utility che sostituiscono gli stili inline */
.after-h { margin-top: 1.1rem; }
.after-table { margin-top: 1rem; }
.more { margin-top: 2rem; }
.mb { margin-bottom: 1.5rem; }
.section-dark .lead { color: var(--on-dark-muted); }
.other-contacts { margin-top: 2.5rem; }
.other-contacts h3 { font-size: 1.1rem; margin-bottom: .8rem; }
.other-contacts .promise { margin-top: 0; }
