/* =====================================================================
   HOME 052026 - V6 "EXECUTIVE MINIMAL PREMIUM"
   Direzione: consulenza B2B di alto livello. Tema chiaro neutro/freddo,
   massimo respiro, filetti sottili come unico divisore, arancio brand
   usato con parsimonia (numeri, underline, bottone, riga vincente).
   Font: Inter (UI/testo) + Spectral (citazioni). Namespace: .h26v6
   ===================================================================== */

.h26v6 {
    --paper: #fcfcfa;
    --paper-2: #ffffff;
    --band: #f6f5f1;
    --ink: #131313;
    --ink-soft: #2a2a28;
    --muted: #6b6b66;
    --muted-2: #9a9a92;
    --line: #e7e5df;
    --line-strong: #d8d6cf;
    --orange: #f46300;
    --orange-soft: rgba(244, 99, 0, .12);
    --shadow-xl: 0 40px 120px -40px rgba(19, 19, 19, .14);
    --shadow-soft: 0 24px 70px -32px rgba(19, 19, 19, .10);
    --font: "Inter", "Segoe UI", Arial, sans-serif;
    --font-serif: "Spectral", Georgia, "Times New Roman", serif;
    --col: clamp(20px, 4.4vw, 56px); /* gutter / ritmo verticale */

    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.62;
    letter-spacing: -.003em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: clip;
}

.h26v6 *,
.h26v6 *::before,
.h26v6 *::after { box-sizing: border-box; }

.h26v6 h1,
.h26v6 h2,
.h26v6 h3,
.h26v6 h4 {
    font-family: var(--font);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.025em;
    margin: 0;
    color: var(--ink);
}
.h26v6 p { margin: 0; }
.h26v6 b,
.h26v6 strong { font-weight: 600; color: var(--ink); }

/* underline arancio sottile su parola chiave (uso parsimonioso) */
.h26v6 .u {
    color: var(--ink);
    box-shadow: inset 0 -2px 0 0 var(--orange);
    padding-bottom: 1px;
}
.h26v6 mark {
    background: transparent;
    color: var(--ink);
    box-shadow: inset 0 -.5em 0 0 var(--orange-soft);
    padding: 0 .04em;
}

/* ---------- Layout primitives ---------- */
.h26v6-wrap { width: min(1160px, 90vw); margin-inline: auto; }
.h26v6-section { position: relative; padding: clamp(80px, 12vw, 168px) 0; }
.h26v6-band { background: var(--band); border-block: 1px solid var(--line); }

/* numero di sezione, piccolo in alto a sinistra */
.h26v6-secno {
    display: block;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .16em;
    color: var(--orange);
    margin-bottom: 26px;
    font-variant-numeric: tabular-nums;
}

/* kicker maiuscoletto con tracking ampio */
.h26v6-eyebrow {
    text-transform: uppercase;
    letter-spacing: .26em;
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    margin: 0 0 24px;
}
.h26v6-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 30px;
}

.h26v6-h2 {
    font-size: clamp(1.75rem, 3.6vw, 2.85rem);
    font-weight: 600;
    max-width: 20ch;
}
.h26v6-h2--sm { font-size: clamp(1.55rem, 2.8vw, 2.2rem); }

.h26v6-lead {
    color: var(--muted);
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    font-weight: 300;
    line-height: 1.7;
    max-width: 56ch;
}
.h26v6-lead--wide { max-width: 70ch; margin: 0 0 clamp(40px, 5vw, 72px); }

/* header di sezione con filetto sottile sopra */
.h26v6-head {
    border-top: 1px solid var(--line);
    padding-top: 30px;
    margin-bottom: clamp(48px, 6vw, 84px);
    max-width: 26ch;
}
.h26v6-head .h26v6-h2 { max-width: 22ch; }

/* ---------- Reveal animation ---------- */
.h26v6 [data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}
.h26v6 [data-reveal].is-in { opacity: 1; transform: none; }
.h26v6 [data-reveal][data-delay="1"] { transition-delay: .09s; }
.h26v6 [data-reveal][data-delay="2"] { transition-delay: .18s; }
.h26v6 [data-reveal][data-delay="3"] { transition-delay: .27s; }
@media (prefers-reduced-motion: reduce) {
    .h26v6 [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons: minimale, testo + freccia, bordo sottile ---------- */
.h26v6 .h26v6-btn,
.h26v6 a.h26v6-btn {
    display: inline-flex;
    align-items: center;
    gap: .7em;
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -.01em;
    text-decoration: none;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 0;
    padding: 17px 30px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.h26v6 .h26v6-btn::after {
    content: "\2192";
    font-weight: 400;
    transition: transform .25s ease;
}
.h26v6 .h26v6-btn:hover { background: var(--ink); color: var(--paper); }
.h26v6 .h26v6-btn:hover::after { transform: translateX(5px); }

/* variante solida arancio per CTA finale */
.h26v6 .h26v6-btn--solid {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}
.h26v6 .h26v6-btn--solid:hover {
    background: #d95800;
    border-color: #d95800;
    color: #fff;
}

/* =====================================================================
   HERO
   ===================================================================== */
.h26v6-hero {
    padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 9vw, 120px);
    background: var(--paper);
}
.h26v6-hero .h26v6-wrap {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: clamp(44px, 6vw, 92px);
    align-items: end;
}
.h26v6-hero-inner { max-width: 22ch; }
.h26v6-hero-h1 {
    font-size: clamp(2.5rem, 6.4vw, 4.6rem);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.035em;
    margin: 0 0 28px;
    max-width: 16ch;
}
.h26v6-hero-sub {
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
    max-width: 40ch;
    margin-bottom: 40px;
}
.h26v6-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}
.h26v6-hero-actions .note {
    color: var(--muted-2);
    font-size: .9rem;
    font-weight: 300;
    max-width: 24ch;
    line-height: 1.45;
}

/* colonna proof: loghi + citazione hero */
.h26v6-hero-proof {
    border-left: 1px solid var(--line);
    padding-left: clamp(28px, 3vw, 52px);
}
.h26v6-overline {
    display: block;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .64rem;
    font-weight: 600;
    color: var(--muted-2);
    margin-bottom: 16px;
}
.h26v6-logos img {
    max-width: 320px;
    width: 100%;
    height: auto;
    /* loghi in scala di grigi sobri */
    filter: grayscale(1) contrast(.9) opacity(.6);
    margin-bottom: 38px;
}
.h26v6-hero-quote { margin: 0; padding-top: 30px; border-top: 1px solid var(--line); }
.h26v6-hero-quote blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 18px;
}
.h26v6-hero-quote figcaption b { display: block; font-size: .92rem; }
.h26v6-hero-quote figcaption span { font-size: .82rem; color: var(--muted); font-weight: 300; }

/* =====================================================================
   PUNTO ECONOMICO - triade + intro founder
   ===================================================================== */
.h26v6-trip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    margin-bottom: clamp(56px, 7vw, 96px);
}
.h26v6-trip article {
    padding: 38px 36px 38px 0;
    border-right: 1px solid var(--line);
}
.h26v6-trip article:last-child { border-right: 0; padding-right: 0; }
.h26v6-trip article:not(:first-child) { padding-left: 36px; }
.h26v6-trip .num {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .14em;
    color: var(--orange);
    margin-bottom: 22px;
    font-variant-numeric: tabular-nums;
}
.h26v6-trip h3 { font-size: 1.22rem; margin-bottom: 12px; }
.h26v6-trip p { color: var(--muted); font-size: .98rem; font-weight: 300; line-height: 1.65; }

.h26v6-intro {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: start;
    padding-top: clamp(48px, 6vw, 76px);
    border-top: 1px solid var(--line);
}
.h26v6-intro .lede {
    font-size: clamp(1.12rem, 1.7vw, 1.4rem);
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: -.012em;
    color: var(--ink-soft);
}
.h26v6-intro .lede .sig { font-weight: 600; color: var(--ink); }

.h26v6-areas { list-style: none; padding: 0; margin: 0; }
.h26v6-areas li {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
}
.h26v6-areas li:first-child { border-top: 1px solid var(--line); }
.h26v6-areas li b { font-size: 1rem; }
.h26v6-areas li span { color: var(--muted); font-size: .94rem; font-weight: 300; }

/* =====================================================================
   SEGNALI - split + lista numerata con filetti
   ===================================================================== */
.h26v6-split {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(36px, 5vw, 88px);
    align-items: start;
}
.h26v6-split-head { position: sticky; top: 110px; }
.h26v6-split-head .h26v6-secno { margin-bottom: 22px; }
.h26v6-split-head .h26v6-lead { margin-top: 22px; }

.h26v6-signals { list-style: none; padding: 0; margin: 0; }
.h26v6-signals li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
    padding: 26px 0;
    border-top: 1px solid var(--line);
}
.h26v6-signals li:last-child { border-bottom: 1px solid var(--line); }
.h26v6-signals .n {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--muted-2);
    font-variant-numeric: tabular-nums;
    padding-top: 4px;
}
.h26v6-signals p { font-size: 1.05rem; font-weight: 400; line-height: 1.55; }
.h26v6-signals li.is-hot .n { color: var(--orange); }
.h26v6-signals li.is-hot p { color: var(--ink); }
.h26v6-signals li.is-hot {
    box-shadow: inset 3px 0 0 0 var(--orange);
    padding-left: 24px;
    margin-left: -24px;
}

.h26v6-callout {
    margin-top: clamp(44px, 5vw, 72px);
    border: 1px solid var(--line-strong);
    background: var(--paper-2);
    box-shadow: var(--shadow-soft);
    padding: clamp(30px, 4vw, 48px);
    max-width: 78ch;
}
.h26v6-callout b {
    display: block;
    font-size: 1.18rem;
    margin-bottom: 10px;
    color: var(--orange);
}
.h26v6-callout p { color: var(--muted); font-weight: 300; }

/* =====================================================================
   SCORCIATOIE - statistiche + comparativa 4 colonne
   ===================================================================== */
.h26v6-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 64px);
    margin-bottom: clamp(40px, 5vw, 64px);
    max-width: 70ch;
}
.h26v6-stat { border-top: 2px solid var(--orange); padding-top: 18px; }
.h26v6-stat b {
    display: block;
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}
.h26v6-stat span { color: var(--muted); font-size: .92rem; font-weight: 300; line-height: 1.5; }

.h26v6-cmp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}
.h26v6-cmp .col {
    padding: 34px 30px 34px 0;
    border-right: 1px solid var(--line);
}
.h26v6-cmp .col:not(:first-child) { padding-left: 30px; }
.h26v6-cmp .col:last-child { border-right: 0; }
.h26v6-cmp .lab {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--ink);
}
.h26v6-cmp p { color: var(--muted); font-size: .94rem; font-weight: 300; line-height: 1.6; }
/* colonna vincente: arancio sobrio, filetto pieno in cima */
.h26v6-cmp .col.win {
    background: var(--paper-2);
    box-shadow: var(--shadow-soft);
    padding-left: 30px;
    padding-right: 30px;
    border-right: 0;
    position: relative;
}
.h26v6-cmp .col.win::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--orange);
}
.h26v6-cmp .col.win .lab { color: var(--orange); }

/* =====================================================================
   COME LAVORIAMO - pilastri + box IT + citazione
   ===================================================================== */
.h26v6-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    margin-bottom: clamp(48px, 6vw, 80px);
}
.h26v6-pillars article {
    padding: 40px 34px 40px 0;
    border-right: 1px solid var(--line);
}
.h26v6-pillars article:not(:first-child) { padding-left: 34px; }
.h26v6-pillars article:last-child { border-right: 0; padding-right: 0; }
.h26v6-pillars .num {
    display: block;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .14em;
    color: var(--orange);
    margin-bottom: 24px;
    font-variant-numeric: tabular-nums;
}
.h26v6-pillars h3 { font-size: 1.3rem; margin-bottom: 14px; }
.h26v6-pillars p { color: var(--muted); font-size: .98rem; font-weight: 300; line-height: 1.65; }

.h26v6-itbox {
    border: 1px solid var(--line-strong);
    background: var(--paper-2);
    box-shadow: var(--shadow-soft);
}
.h26v6-itbox-head { padding: clamp(30px, 4vw, 46px) clamp(30px, 4vw, 46px) 0; }
.h26v6-itbox-head b { display: block; font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; margin-bottom: 12px; }
.h26v6-itbox-head p { color: var(--muted); font-weight: 300; max-width: 70ch; }
.h26v6-itbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: clamp(28px, 3vw, 40px);
    border-top: 1px solid var(--line);
}
.h26v6-itbox-grid > div {
    padding: clamp(26px, 3vw, 38px);
    border-right: 1px solid var(--line);
}
.h26v6-itbox-grid > div:last-child { border-right: 0; }
.h26v6-itbox-grid h4 { font-size: 1.04rem; margin-bottom: 8px; color: var(--orange); }
.h26v6-itbox-grid p { color: var(--muted); font-size: .92rem; font-weight: 300; line-height: 1.6; }

.h26v6-quote {
    margin: clamp(56px, 7vw, 96px) auto 0;
    max-width: 56ch;
    text-align: center;
}
.h26v6-quote blockquote {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.4rem, 2.8vw, 2.05rem);
    line-height: 1.4;
    color: var(--ink);
    margin: 0 0 22px;
    letter-spacing: -.01em;
}
.h26v6-quote figcaption { color: var(--muted); font-size: .94rem; font-weight: 300; }
.h26v6-quote figcaption b { font-weight: 600; color: var(--ink); }

/* =====================================================================
   PROVA / NUMERI
   ===================================================================== */
.h26v6-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 0 clamp(56px, 7vw, 92px);
    border-top: 1px solid var(--line);
}
.h26v6-metrics > div {
    padding: 34px 28px 34px 0;
    border-right: 1px solid var(--line);
}
.h26v6-metrics > div:not(:first-child) { padding-left: 28px; }
.h26v6-metrics > div:last-child { border-right: 0; padding-right: 0; }
.h26v6-metrics dt {
    font-size: clamp(2rem, 3.6vw, 2.7rem);
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}
.h26v6-metrics dd { margin: 0; color: var(--muted); font-size: .9rem; font-weight: 300; line-height: 1.5; }

.h26v6-results {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: start;
    padding-top: clamp(44px, 5vw, 72px);
    border-top: 1px solid var(--line);
}
.h26v6-results ul { list-style: none; padding: 0; margin: 0; }
.h26v6-results li {
    display: flex;
    align-items: baseline;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-soft);
}
.h26v6-results li:first-child { border-top: 1px solid var(--line); }
.h26v6-results li span {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--orange);
    min-width: 4ch;
    letter-spacing: -.03em;
    font-variant-numeric: tabular-nums;
}
.h26v6-fine { grid-column: 1 / -1; color: var(--muted-2); font-size: .85rem; font-weight: 300; margin-top: 4px; }

/* =====================================================================
   FOUNDER
   ===================================================================== */
.h26v6-founder {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(40px, 5vw, 88px);
    align-items: center;
}
.h26v6-founder-photo {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-xl);
}
.h26v6-founder-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.15);
}
.h26v6-founder-body .h26v6-h2 { margin-bottom: 24px; }
.h26v6-founder-body > p {
    color: var(--muted);
    font-weight: 300;
    font-size: 1.04rem;
    line-height: 1.7;
    margin-bottom: 18px;
}
.h26v6-founder-body > p b { color: var(--ink); }
.h26v6-founder-mini {
    margin: 30px 0 0;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}
.h26v6-founder-mini blockquote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.12rem;
    line-height: 1.5;
    color: var(--ink-soft);
    margin: 0 0 12px;
}
.h26v6-founder-mini figcaption { color: var(--muted); font-size: .88rem; font-weight: 300; }

/* =====================================================================
   PERCORSO - 4 fasi, lista verticale con numero e filetto
   ===================================================================== */
.h26v6-steps { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.h26v6-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: baseline;
    padding: clamp(28px, 3.5vw, 44px) 0;
    border-bottom: 1px solid var(--line);
}
.h26v6-steps .step {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--orange);
    letter-spacing: -.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.h26v6-steps b { display: block; font-size: 1.22rem; font-weight: 600; margin-bottom: 8px; }
.h26v6-steps p { color: var(--muted); font-weight: 300; max-width: 64ch; line-height: 1.6; }

/* =====================================================================
   FAQ - split sticky + details con filetti
   ===================================================================== */
.h26v6-faq { border-top: 1px solid var(--line); }
.h26v6-faq details { border-bottom: 1px solid var(--line); }
.h26v6-faq summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: -.015em;
    padding: 26px 44px 26px 0;
    position: relative;
    transition: color .2s ease;
}
.h26v6-faq summary::-webkit-details-marker { display: none; }
.h26v6-faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--orange);
    transition: transform .25s ease;
}
.h26v6-faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.h26v6-faq summary:hover { color: var(--orange); }
.h26v6-faq details p {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.7;
    max-width: 64ch;
    padding: 0 44px 28px 0;
    margin-top: -4px;
}

/* =====================================================================
   CTA FINALE
   ===================================================================== */
.h26v6-final { background: var(--paper); border-top: 1px solid var(--line); }
.h26v6-final-inner {
    max-width: 30ch;
    text-align: left;
}
.h26v6-final-inner .h26v6-secno { color: var(--orange); }
.h26v6-final-h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.08;
    max-width: 18ch;
    margin: 0 0 26px;
}
.h26v6-final-body {
    color: var(--muted);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 58ch;
    margin: 0 0 36px;
}
.h26v6-final small {
    display: block;
    margin-top: 26px;
    color: var(--muted-2);
    font-size: .85rem;
    font-weight: 300;
    max-width: 52ch;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
    .h26v6 { font-size: 17px; }
    .h26v6-hero .h26v6-wrap,
    .h26v6-intro,
    .h26v6-split,
    .h26v6-results,
    .h26v6-founder { grid-template-columns: 1fr; }

    .h26v6-hero .h26v6-wrap { align-items: start; }
    .h26v6-hero-inner,
    .h26v6-hero-h1 { max-width: none; }

    .h26v6-hero-proof {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
        padding-top: 40px;
    }
    .h26v6-split-head { position: static; }

    /* griglie a 3/4 colonne -> impilate verticali con filetti */
    .h26v6-trip,
    .h26v6-pillars,
    .h26v6-itbox-grid,
    .h26v6-metrics { grid-template-columns: 1fr; }
    .h26v6-trip article,
    .h26v6-pillars article,
    .h26v6-itbox-grid > div,
    .h26v6-metrics > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 30px 0;
    }
    .h26v6-trip article:last-child,
    .h26v6-pillars article:last-child,
    .h26v6-itbox-grid > div:last-child,
    .h26v6-metrics > div:last-child { border-bottom: 0; }
    .h26v6-trip article:not(:first-child),
    .h26v6-pillars article:not(:first-child) { padding-left: 0; }

    .h26v6-cmp { grid-template-columns: 1fr 1fr; }
    .h26v6-cmp .col {
        padding: 28px;
        border-bottom: 1px solid var(--line);
    }
    .h26v6-cmp .col:nth-child(2) { border-right: 0; }
    .h26v6-cmp .col:nth-child(odd) { padding-left: 0; padding-right: 28px; }
}

@media (max-width: 620px) {
    .h26v6-hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
    .h26v6-hero-actions .h26v6-btn { width: 100%; justify-content: center; }
    .h26v6-stats,
    .h26v6-cmp { grid-template-columns: 1fr; }
    .h26v6-stat { border-top-width: 2px; }
    .h26v6-cmp .col {
        padding: 26px 0;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-right: 0;
    }
    .h26v6-cmp .col.win { padding: 26px 22px; }
    .h26v6-results li { gap: 16px; }
    .h26v6-steps li { grid-template-columns: 1fr; gap: 10px; }
    .h26v6-final .h26v6-btn { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------------
   Override: neutralizza il pill globale ".content ol li > b/strong:first-of-type"
   del layout, che altrimenti sovrascrive i titoli delle liste della home.
   --------------------------------------------------------------- */
.h26v6 ol li > b:first-of-type,
.h26v6 ol li > strong:first-of-type {
    background: none !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    color: inherit !important;
}

/* ---------------------------------------------------------------
   Override <mark>: la regola globale del layout impone
   background-color giallo chiaro che rende il testo illeggibile.
   Lo annulliamo: enfasi con testo arancio brand, niente blocco.
   --------------------------------------------------------------- */
.h26v6 mark {
    background: none !important;
    background-color: transparent !important;
    color: #f46300 !important;
    padding: 0 !important;
    font-weight: 800;
}

/* ---------------------------------------------------------------
   Sticky CTA piu' grande e leggibile (scoped: questo CSS e' caricato
   solo sulle pagine 052026, quindi non tocca il resto del sito).
   --------------------------------------------------------------- */
.sticky-cta-bar { padding: 1rem 1rem; }
.sticky-cta-inner { gap: 1.4rem; }
.sticky-cta-left strong { font-size: 1.12rem; font-weight: 700; }
.sticky-cta-left span { font-size: 0.95rem; }
.sticky-cta-button { font-size: 1.12rem; padding: 16px 32px; border-radius: 12px; }
body.has-sticky-cta { padding-bottom: 80px; }
