/* =====================================================================
   HOME 052026 - V4 "BLUEPRINT INDUSTRIALE / ENGINEERING"
   Estetica: disegno tecnico / schema ingegneristico, command center elegante.
   Palette: blu-petrolio scuro #0a0e14 / #0d1117 + arancio quotatura #ff6800.
   Font: JetBrains Mono (heading, numeri, etichette) + Inter (body).
   Namespace: .h26v4
   ===================================================================== */

.h26v4 {
    --bg: #0a0e14;
    --bg-2: #0d1117;
    --panel: #11161f;
    --panel-2: #141b26;
    --line: rgba(139, 148, 158, .18);
    --line-soft: rgba(139, 148, 158, .10);
    --line-strong: rgba(139, 148, 158, .32);
    --grid: rgba(139, 148, 158, .055);
    --text: #e6edf3;
    --muted: #8b949e;
    --muted-2: #5c6672;
    --orange: #ff6800;
    --orange-soft: rgba(255, 104, 0, .12);
    --orange-line: rgba(255, 104, 0, .42);
    --font-mono: "JetBrains Mono", "Cascadia Code", "Consolas", monospace;
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;

    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

.h26v4 *,
.h26v4 *::before,
.h26v4 *::after { box-sizing: border-box; }

.h26v4 h1,
.h26v4 h2,
.h26v4 h3,
.h26v4 h4 {
    font-family: var(--font-mono);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0;
}

.h26v4 p { margin: 0; }
.h26v4 b, .h26v4 strong { color: #fff; font-weight: 700; }
.h26v4 mark {
    background: transparent;
    color: var(--orange);
    box-shadow: inset 0 -.45em 0 var(--orange-soft);
    padding: 0 .04em;
}

.h26v4-wrap { width: min(1200px, 92vw); margin-inline: auto; position: relative; }
.h26v4-section { position: relative; padding: clamp(64px, 9vw, 128px) 0; }

/* ---------- Blueprint grid background (riusabile) ---------- */
.h26v4-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 24px 24px;
}

/* ---------- Etichette tecniche monospace ---------- */
.h26v4-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.h26v4-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: .72rem;
    color: var(--orange);
    margin-bottom: 18px;
}
.h26v4-eyebrow .h26v4-eyebrow-tick {
    font-weight: 500;
    color: var(--bg);
    background: var(--orange);
    padding: 2px 7px;
    border-radius: 3px;
    letter-spacing: .05em;
}

.h26v4-h2 {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    max-width: 22ch;
    letter-spacing: -.02em;
}
.h26v4-lead { color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.18rem); max-width: 62ch; }

/* ---------- Pannelli con tick agli angoli ---------- */
.h26v4-panel {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 4px;
}
.h26v4-corner {
    position: absolute;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1;
    color: var(--orange);
    opacity: .65;
    pointer-events: none;
    z-index: 2;
}
.h26v4-corner-tl { top: -7px; left: -7px; }
.h26v4-corner-tr { top: -7px; right: -7px; }
.h26v4-corner-bl { bottom: -7px; left: -7px; }
.h26v4-corner-br { bottom: -7px; right: -7px; }

/* ---------- Reveal animation ---------- */
.h26v4 [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.h26v4 [data-reveal].is-in { opacity: 1; transform: none; }
.h26v4 [data-reveal][data-delay="1"] { transition-delay: .08s; }
.h26v4 [data-reveal][data-delay="2"] { transition-delay: .16s; }
.h26v4 [data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    .h26v4 [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons ---------- */
.h26v4 .h26v4-btn,
.h26v4 a.h26v4-btn {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: -.005em;
    text-decoration: none;
    padding: 17px 30px;
    border-radius: 4px;
    background: var(--orange);
    color: #160900;
    border: 1px solid var(--orange);
    box-shadow: 0 0 0 1px rgba(255, 104, 0, .25), 0 18px 44px rgba(255, 104, 0, .22);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
    cursor: pointer;
}
.h26v4 .h26v4-btn:hover { transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 0 0 1px rgba(255, 104, 0, .4), 0 24px 56px rgba(255, 104, 0, .34); }
.h26v4 .h26v4-btn::after { content: "\2192"; font-weight: 700; transition: transform .2s ease; }
.h26v4 .h26v4-btn:hover::after { transform: translateX(4px); }

/* =====================================================================
   HERO
   ===================================================================== */
.h26v4-hero {
    position: relative;
    padding: clamp(32px, 5vw, 64px) 0 clamp(64px, 8vw, 100px);
    overflow: hidden;
    background:
        radial-gradient(120% 90% at 84% 4%, rgba(255, 104, 0, .10), transparent 50%),
        radial-gradient(80% 70% at 6% 100%, rgba(56, 109, 173, .10), transparent 55%),
        var(--bg);
    border-bottom: 1px solid var(--line);
}
.h26v4-hero .h26v4-grid-bg {
    -webkit-mask-image: radial-gradient(85% 70% at 55% 25%, #000 0%, transparent 78%);
            mask-image: radial-gradient(85% 70% at 55% 25%, #000 0%, transparent 78%);
}
/* linea di quotatura arancio in cima al hero */
.h26v4-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange) 22%, var(--orange) 78%, transparent);
    opacity: .55;
}
.h26v4-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}
.h26v4-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: .76rem;
    letter-spacing: .02em;
    color: var(--orange);
    border: 1px solid var(--orange-line);
    background: var(--orange-soft);
    padding: 7px 14px;
    border-radius: 4px;
    margin-bottom: 26px;
}
.h26v4-hero h1 {
    font-size: clamp(2.3rem, 5.6vw, 4rem);
    margin-bottom: 22px;
    letter-spacing: -.025em;
}
.h26v4-hero h1 .accent { color: var(--orange); }
.h26v4-hero-sub { font-family: var(--font-body); font-size: clamp(1.08rem, 1.7vw, 1.28rem); color: var(--muted); max-width: 48ch; margin-bottom: 32px; }
.h26v4-hero-sub b { color: #fff; }
.h26v4-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.h26v4-hero-actions .note { color: var(--muted-2); font-size: .9rem; max-width: 27ch; font-family: var(--font-mono); font-weight: 500; line-height: 1.45; }

.h26v4-proofbar { margin-top: 48px; padding-top: 28px; border-top: 1px dashed var(--line); }
.h26v4-proofbar .h26v4-label { display: block; margin-bottom: 16px; }
.h26v4-proofbar img { max-width: 470px; width: 100%; height: auto; filter: brightness(0) invert(.78); opacity: .85; }

/* hero side proof card */
.h26v4-hero-card {
    padding: 30px 30px 26px;
    background: var(--panel);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
}
.h26v4-hero-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--orange);
    opacity: .85;
}
.h26v4-hero-card .badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .12em;
    color: var(--orange);
    background: var(--orange-soft);
    border: 1px solid var(--orange-line);
    padding: 5px 11px;
    border-radius: 3px;
    margin-bottom: 16px;
}
.h26v4-hero-card blockquote { margin: 0 0 18px; font-size: 1.12rem; line-height: 1.55; color: #fff; font-weight: 500; }
.h26v4-hero-card .who b { display: block; font-family: var(--font-mono); font-size: .92rem; }
.h26v4-hero-card .who span { font-size: .82rem; color: var(--muted); }

/* =====================================================================
   PUNTO ECONOMICO (triptych) + founder intro
   ===================================================================== */
.h26v4-band { background: var(--bg-2); border-block: 1px solid var(--line); }
.h26v4-trip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 56px; }
.h26v4-trip article {
    padding: 30px 26px;
    transition: transform .25s ease, border-color .25s ease;
}
.h26v4-trip article:hover { transform: translateY(-4px); border-color: var(--orange-line); }
.h26v4-trip .num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--orange);
    line-height: 1;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--orange);
}
.h26v4-trip h3 { font-size: 1.24rem; margin: 16px 0 10px; }
.h26v4-trip p { color: var(--muted); font-size: 1rem; }

.h26v4-founder-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: start; }
.h26v4-founder-intro .lede { font-size: 1.18rem; line-height: 1.6; }
.h26v4-founder-intro .lede .sig { color: var(--orange); font-family: var(--font-mono); font-weight: 700; }
.h26v4-areas { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.h26v4-areas li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--panel);
    padding: 14px 18px;
    color: var(--muted);
    font-size: .97rem;
}
.h26v4-areas .code {
    flex: none;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .06em;
    color: var(--orange);
    background: var(--orange-soft);
    border-radius: 3px;
    padding: 3px 8px;
    margin-top: 2px;
}
.h26v4-areas li b { color: #fff; }

/* =====================================================================
   SEGNALI
   ===================================================================== */
.h26v4-split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.h26v4-signal-list { display: grid; gap: 12px; }
.h26v4-signal-list .sig {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    border: 1px solid var(--line);
    border-left: 2px solid var(--line-strong);
    border-radius: 4px;
    padding: 18px 22px;
    background: var(--panel);
    transition: border-color .2s ease;
}
.h26v4-signal-list .sig:hover { border-left-color: var(--orange); }
.h26v4-signal-list .sig .idx {
    flex: none;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .82rem;
    color: var(--orange);
    letter-spacing: .05em;
    margin-top: 2px;
}
.h26v4-signal-list .sig p { font-size: 1rem; }
.h26v4-signal-list .sig.is-hot {
    border-color: var(--orange-line);
    border-left-color: var(--orange);
    background: linear-gradient(90deg, var(--orange-soft), var(--panel) 60%);
}

.h26v4-callout {
    position: relative;
    margin-top: 32px;
    border: 1px solid var(--line-strong);
    border-left: 4px solid var(--orange);
    border-radius: 4px;
    background: var(--panel-2);
    padding: 28px 30px;
}
.h26v4-callout b { font-family: var(--font-mono); font-size: 1.15rem; display: block; margin-bottom: 10px; color: #fff; }
.h26v4-callout p { color: var(--muted); }

/* =====================================================================
   SCORCIATOIE / comparison
   ===================================================================== */
.h26v4-stat-row { display: flex; flex-wrap: wrap; gap: 16px; margin: 30px 0 44px; }
.h26v4-stat-pill {
    flex: 1 1 280px;
    display: flex;
    align-items: baseline;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 20px 24px;
    background: var(--panel);
}
.h26v4-stat-pill b { font-family: var(--font-mono); font-size: 2.1rem; color: var(--orange); line-height: 1; }
.h26v4-stat-pill span { color: var(--muted); font-size: .9rem; }

.h26v4-cmp { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.h26v4-cmp .col {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 26px 22px;
    background: var(--panel);
}
.h26v4-cmp .code {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .08em;
    color: var(--muted-2);
    display: block;
    margin-bottom: 14px;
}
.h26v4-cmp h3 { font-size: 1.1rem; margin-bottom: 10px; }
.h26v4-cmp p { color: var(--muted); font-size: .92rem; }
.h26v4-cmp .col.win {
    border-color: var(--orange);
    background: linear-gradient(180deg, var(--orange-soft), var(--panel) 70%);
    box-shadow: 0 18px 50px rgba(255, 104, 0, .16);
}
.h26v4-cmp .col.win::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--orange);
}
.h26v4-cmp .col.win .code { color: var(--orange); }
.h26v4-cmp .col.win h3 { color: var(--orange); }

/* =====================================================================
   COME LAVORIAMO - pillars + IT box
   ===================================================================== */
.h26v4-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.h26v4-pillars article {
    padding: 32px 28px;
    overflow: hidden;
}
.h26v4-pillars article::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--orange), transparent 70%);
}
.h26v4-pillars .num { font-family: var(--font-mono); font-weight: 500; color: var(--muted-2); font-size: .76rem; letter-spacing: .14em; }
.h26v4-pillars h3 { font-size: 1.26rem; margin: 12px 0 12px; }
.h26v4-pillars p { color: var(--muted); font-size: .97rem; }

.h26v4-itbox {
    position: relative;
    margin-top: 40px;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    background: var(--panel-2);
    padding: 0;
    overflow: hidden;
}
.h26v4-itbox-head { padding: 30px 30px 22px; border-bottom: 1px dashed var(--line); }
.h26v4-itbox-head .h26v4-label { display: block; margin-bottom: 12px; color: var(--orange); }
.h26v4-itbox-head b { font-family: var(--font-mono); font-size: 1.3rem; color: #fff; }
.h26v4-itbox-head p { color: var(--muted); margin-top: 10px; max-width: 72ch; }
.h26v4-itbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.h26v4-itbox-grid > div { padding: 26px 30px; border-left: 1px solid var(--line); }
.h26v4-itbox-grid > div:first-child { border-left: 0; }
.h26v4-itbox-grid h4 { font-family: var(--font-mono); color: var(--orange); font-size: 1rem; margin-bottom: 10px; }
.h26v4-itbox-grid p { color: var(--muted); font-size: .91rem; }

/* =====================================================================
   QUOTE wide
   ===================================================================== */
.h26v4-quote {
    position: relative;
    text-align: center;
    max-width: 62ch;
    margin: 56px auto 0;
    padding-top: 30px;
    border-top: 1px dashed var(--line);
}
.h26v4-quote blockquote {
    font-family: var(--font-mono);
    font-weight: 500;
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
    line-height: 1.4;
    color: #fff;
    margin: 0 0 18px;
    letter-spacing: -.01em;
}
.h26v4-quote blockquote::before { content: "// "; color: var(--orange); }
.h26v4-quote cite { color: var(--muted); font-style: normal; font-size: .92rem; }
.h26v4-quote cite b { color: #fff; font-family: var(--font-mono); }

/* =====================================================================
   PROVA / metrics
   ===================================================================== */
.h26v4-proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.h26v4-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.h26v4-metrics > div { padding: 26px 24px; }
.h26v4-metrics b { font-family: var(--font-mono); font-size: 2.4rem; color: #fff; display: block; line-height: 1; margin-bottom: 10px; }
.h26v4-metrics span { color: var(--muted); font-size: .9rem; }
.h26v4-results h2 { margin-bottom: 24px; }
.h26v4-results ul { list-style: none; padding: 0; margin: 0 0 16px; display: grid; gap: 0; }
.h26v4-results li {
    display: flex;
    align-items: baseline;
    gap: 18px;
    font-size: 1.04rem;
    color: var(--muted);
    border-bottom: 1px dashed var(--line);
    padding: 14px 0;
}
.h26v4-results li span { font-family: var(--font-mono); font-weight: 700; font-size: 1.4rem; color: var(--orange); min-width: 4.5ch; }
.h26v4-results .fine { color: var(--muted-2); font-size: .84rem; margin-top: 8px; }

/* =====================================================================
   FOUNDER
   ===================================================================== */
.h26v4-founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.h26v4-founder-photo {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}
.h26v4-founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.h26v4-founder-photo::after {
    content: "";
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, transparent 55%, rgba(10, 14, 20, .7)),
        repeating-linear-gradient(0deg, transparent 0 23px, rgba(139, 148, 158, .06) 23px 24px);
    pointer-events: none;
}
.h26v4-photo-tag {
    position: absolute;
    bottom: 14px; left: 16px;
    z-index: 2;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .1em;
    color: var(--orange);
    background: rgba(10, 14, 20, .7);
    border: 1px solid var(--orange-line);
    padding: 5px 10px;
    border-radius: 3px;
}
.h26v4-founder-body h2 { margin-bottom: 20px; }
.h26v4-founder-body p { color: var(--muted); margin-bottom: 16px; }
.h26v4-founder-body p b { color: #fff; }
.h26v4-founder-mini {
    border-left: 3px solid var(--orange);
    padding: 10px 0 10px 18px;
    margin-top: 26px;
    color: #fff;
    font-family: var(--font-mono);
    font-size: .98rem;
    line-height: 1.5;
}
.h26v4-founder-mini span { display: block; color: var(--muted); font-size: .85rem; margin-top: 10px; font-family: var(--font-body); }

/* =====================================================================
   PERCORSO - timeline / flow schematico
   ===================================================================== */
.h26v4-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    position: relative;
}
/* linea di connessione orizzontale tra le fasi */
.h26v4-steps::before {
    content: "";
    position: absolute;
    top: 38px; left: 12.5%; right: 12.5%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--orange-line) 0 8px, transparent 8px 16px);
    opacity: .8;
    z-index: 0;
}
.h26v4-steps li {
    position: relative;
    z-index: 1;
    padding: 26px 22px;
}
.h26v4-steps .phase {
    display: inline-block;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .1em;
    color: var(--bg);
    background: var(--orange);
    padding: 5px 10px;
    border-radius: 3px;
    margin-bottom: 16px;
}
.h26v4-steps b { font-family: var(--font-mono); display: block; font-size: 1.05rem; margin-bottom: 10px; color: #fff; }
.h26v4-steps .desc { color: var(--muted); font-size: .91rem; }

/* =====================================================================
   FAQ
   ===================================================================== */
.h26v4-faq-list { display: grid; gap: 12px; }
.h26v4-faq-list details {
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--panel);
    padding: 2px 22px;
    transition: border-color .2s ease;
}
.h26v4-faq-list details[open] { border-color: var(--orange-line); }
.h26v4-faq-list summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.02rem;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--text);
}
.h26v4-faq-list summary::-webkit-details-marker { display: none; }
.h26v4-faq-list summary::after { content: "[ + ]"; font-family: var(--font-mono); color: var(--orange); font-size: .9rem; font-weight: 500; transition: opacity .2s ease; }
.h26v4-faq-list details[open] summary::after { content: "[ - ]"; }
.h26v4-faq-list details p { color: var(--muted); padding: 0 0 20px; font-size: .98rem; }

/* =====================================================================
   CTA FINALE
   ===================================================================== */
.h26v4-final {
    position: relative;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(70% 120% at 50% 0%, rgba(255, 104, 0, .14), transparent 62%),
        var(--bg);
    border-top: 1px solid var(--line);
}
.h26v4-final .h26v4-grid-bg {
    -webkit-mask-image: radial-gradient(70% 80% at 50% 20%, #000 0%, transparent 80%);
            mask-image: radial-gradient(70% 80% at 50% 20%, #000 0%, transparent 80%);
}
.h26v4-final .h26v4-eyebrow { justify-content: center; }
.h26v4-final h2 { font-family: var(--font-mono); font-size: clamp(1.9rem, 4.4vw, 2.9rem); max-width: 24ch; margin: 0 auto 22px; letter-spacing: -.02em; }
.h26v4-final p { color: var(--muted); max-width: 60ch; margin: 0 auto 32px; font-size: 1.08rem; }
.h26v4-final small { display: block; margin-top: 22px; color: var(--muted-2); font-family: var(--font-mono); font-size: .82rem; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
    .h26v4-hero-grid,
    .h26v4-founder-intro,
    .h26v4-split,
    .h26v4-proof-grid,
    .h26v4-founder { grid-template-columns: 1fr; }
    .h26v4-trip,
    .h26v4-cmp,
    .h26v4-pillars,
    .h26v4-steps,
    .h26v4-itbox-grid { grid-template-columns: 1fr 1fr; }
    .h26v4-itbox-grid > div:nth-child(2) { border-left: 0; }
    .h26v4-steps::before { display: none; }
    .h26v4-founder-photo { max-height: 480px; }
}
@media (max-width: 620px) {
    .h26v4 { font-size: 17px; }
    .h26v4-trip,
    .h26v4-cmp,
    .h26v4-pillars,
    .h26v4-steps,
    .h26v4-itbox-grid,
    .h26v4-metrics { grid-template-columns: 1fr; }
    .h26v4-itbox-grid > div { border-left: 0; border-top: 1px solid var(--line); }
    .h26v4-itbox-grid > div:first-child { border-top: 0; }
    .h26v4-hero-actions { flex-direction: column; align-items: stretch; }
    .h26v4-hero-actions .h26v4-btn { justify-content: center; }
    .h26v4-hero-actions .note { max-width: none; }
}

/* ---------------------------------------------------------------
   Override: la regola globale del layout "h1,h2,h3,label{color:#000}"
   vince sull'ereditarieta' e rende i titoli neri su fondo blueprint scuro.
   Forziamo il colore chiaro del tema (gli accenti arancio sono span propri).
   --------------------------------------------------------------- */
.h26v4 :is(h1, h2, h3, h4) { color: #e6edf3; }

/* ---------------------------------------------------------------
   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.
   --------------------------------------------------------------- */
.h26v4 mark {
    background: none !important;
    background-color: transparent !important;
    color: #ff6800 !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; }
