/* =====================================================================
   VERTIGO CAPITAL — Home page
   Scope: .vc-hero-section (hero) + #vch (tutto il body)
   ===================================================================== */

/* ---- DESIGN TOKENS ----
   Il body #vch riusa i componenti .vre-* (eyebrow, btn, num, why-ico,
   step, section padding, pattern). Quelle variabili sono definite su .vre
   nelle pagine RE/PE; qui le portiamo nello scope #vch cosi' i componenti
   risolvono ESATTAMENTE come sulle altre pagine (accent cyan, spaziature,
   glass, watermark). Non tocchiamo font-family/background del wrapper. */
#vch {
	--accent:    var(--vc-accent, #00B0D4);
	--accent-dk: #027A93;
	--accent-2:  #66D3EA;
	--accent-12: rgba(0,176,212,0.12);
	--accent-08: rgba(0,176,212,0.08);
	--pattern:   url("../img/background-2.png");
	--sp-sm: clamp(32px, 5vw, 48px);
	--sp-md: clamp(48px, 8vw, 80px);
	--sp-lg: clamp(64px, 10vw, 120px);
	--glass-bg:     rgba(0,176,212,0.07);
	--glass-bg-w:   rgba(255,255,255,0.06);
	--glass-bd:     rgba(255,255,255,0.13);
	--glass-bd-acc: rgba(0,176,212,0.22);
	--glass-blur:   14px;
	--glass-radius: 16px;
}

/* Etichette snapshot navy come su RE/PE (non cyan) */
#vch .vre-snapshot .vre-stat-label { color: #1C355C; }

/* Snapshot e Pillars sono entrambe vre-light consecutive (a differenza di
   RE/PE dove il chiaro/scuro alterna e la spaziatura standard "respira").
   Qui il padding pieno raddoppiato creava un vuoto enorme senza rottura
   visiva: stringiamo la giunzione tra le due sezioni chiare. */
#vch .vre-snapshot { padding-bottom: var(--sp-sm); }
#vch-pillars.vre-section { padding-top: var(--sp-sm); }

/* ---- HERO ---- */

.vc-hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #04060a;
}

/* Override redesign.css min-height (era clamp 440-680px) */
.vc-hero-section.vc-hero-on {
	min-height: 100vh !important;
}

/* ---- HERO VIDEO (homepage) ----
   Sfondo video cinematografico. Fallback = gradiente navy profondo (non
   nero) sotto al video, visibile finche' il video carica, con reduced-motion
   e su mobile (dove il video viene nascosto per performance). L'overlay navy
   + vignette garantisce la leggibilita' del testo bianco. */
.vc-hero-video-section {
	min-height: clamp(560px, 94vh, 100vh);
	background: linear-gradient(180deg, #0a1c38 0%, #07152a 52%, #050f1e 100%);
}

.vc-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: 0;
	border: 0;
	pointer-events: none;
}

.vc-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(ellipse at 50% 42%, rgba(9,24,50,0.30) 0%, rgba(6,18,38,0.62) 62%, rgba(4,12,24,0.88) 100%),
		linear-gradient(180deg, rgba(7,20,42,0.62) 0%, rgba(7,20,42,0.42) 46%, rgba(4,12,24,0.86) 100%);
}

.vc-hero-section .vc-hero-kicker {
	margin: 0 0 22px;
	color: #9FC1E6;
}

.vc-hero-logo {
	display: block;
	margin: 0 auto 30px;
	width: min(320px, 60vw);
	height: auto;
}

/* Wordmark testuale al posto del logo: serif, bianco, grande come i titoli
   delle altre pagine (riusa la scala di .vc-hero-title). */
.vc-hero-section .vc-hero-wordmark {
	color: #ffffff;
	margin: 0 0 24px;
}

/* Bottone hero identico a quello di Vertigo RE (#2E4A72, hover #1e3355) */
#vch .vch-hero-ctas .vre-btn {
	background: #2E4A72 !important;
	box-shadow: none;
}
#vch .vch-hero-ctas .vre-btn:hover {
	background: #1e3355 !important;
	box-shadow: 0 12px 30px -10px rgba(46,74,114,.45) !important;
}

.vc-hero-statement {
	font-family: 'DM Serif Display', serif;
	font-weight: 400;
	color: #F3F6FB;
	font-size: clamp(1.3rem, 2.5vw, 2.1rem);
	line-height: 1.36;
	letter-spacing: -.01em;
	max-width: 820px;
	margin: 0 auto;
}

/* Fade-in coerente con il resto dell'hero (chiave: .vc-hero-in) */
.vc-hero-section .vc-hero-logo,
.vc-hero-section .vc-hero-statement {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity .9s ease, transform .9s ease;
}
.vc-hero-section.vc-hero-in .vc-hero-logo { opacity: 1; transform: none; transition-delay: 0s; }
.vc-hero-section.vc-hero-in .vc-hero-statement { opacity: 1; transform: none; transition-delay: .15s; }

/* Reduced-motion: niente video, resta il gradiente navy di fallback */
@media (prefers-reduced-motion: reduce) {
	.vc-hero-video { display: none; }
	.vc-hero-section .vc-hero-logo,
	.vc-hero-section .vc-hero-statement { opacity: 1; transform: none; transition: none; }
}

/* Mobile: video nascosto per performance, resta il gradiente navy */
@media (max-width: 600px) {
	.vc-hero-video { display: none; }
	.vc-hero-statement { font-size: clamp(1.2rem, 5.4vw, 1.55rem); }
}

/* Testo hero: centrato, z-index sopra canvas */
.vc-hero-section .vc-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 820px;
	padding: 40px 24px;
	pointer-events: none; /* il canvas non blocca hover */
}

.vch-eyebrow {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: #619BD1;
	margin: 0 0 28px;
}

/* Override: title più compatto per home */
.vc-hero-section .vc-hero-title {
	font-size: clamp(2.8rem, 5.5vw, 4.8rem);
	line-height: 1.1;
	letter-spacing: -.025em;
	margin: 0 0 28px;
}

/* Animazioni fade-in per markup PHP (niente letter-by-letter) */
.vc-hero-section .vc-hero-title,
.vc-hero-section .vch-eyebrow {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .9s ease, transform .9s ease;
}
.vc-hero-section.vc-hero-in .vc-hero-title,
.vc-hero-section.vc-hero-in .vch-eyebrow {
	opacity: 1;
	transform: none;
}
.vc-hero-section.vc-hero-in .vch-eyebrow { transition-delay: 0s; }
.vc-hero-section.vc-hero-in .vc-hero-title { transition-delay: .1s; }

/* Subtitle e CTA */
.vc-hero-section .vc-hero-sub {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .8s .35s ease, transform .8s .35s ease;
}
.vc-hero-section.vc-hero-in .vc-hero-sub {
	opacity: 1;
	transform: none;
}

.vch-hero-ctas {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 36px;
	pointer-events: auto;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .8s .6s ease, transform .8s .6s ease;
}
.vc-hero-section.vc-hero-in .vch-hero-ctas {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.vc-hero-section .vc-hero-title,
	.vc-hero-section .vch-eyebrow,
	.vc-hero-section .vc-hero-sub,
	.vch-hero-ctas { opacity: 1; transform: none; transition: none; }
}

/* Bottoni hero */
.vch-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	background: #619BD1;
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .03em;
	border-radius: 50px;
	text-decoration: none;
	transition: background .2s, transform .22s, box-shadow .22s;
}
.vch-btn-primary:hover {
	background: #4e84b8;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px -6px rgba(97,155,209,.55);
}

.vch-btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	background: transparent;
	color: rgba(255,255,255,.8);
	font-size: .9rem;
	font-weight: 500;
	letter-spacing: .03em;
	border-radius: 50px;
	border: 1px solid rgba(255,255,255,.28);
	text-decoration: none;
	transition: border-color .2s, color .2s, transform .22s;
}
.vch-btn-ghost:hover {
	border-color: rgba(255,255,255,.7);
	color: #fff;
	transform: translateY(-2px);
}

/* Scroll indicator verticale */
.vch-scroll-hint {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}
.vch-scroll-hint span {
	display: block;
	width: 1px;
	height: 52px;
	background: linear-gradient(to bottom, rgba(255,255,255,.55) 0%, transparent 100%);
	margin: auto;
	animation: vch-scroll-line 2.2s ease-in-out infinite;
}
@keyframes vch-scroll-line {
	0%,100% { opacity: .5; transform: scaleY(1) translateY(0); }
	50%      { opacity: 1;  transform: scaleY(1.15) translateY(4px); }
}

/* ---- PILLARS → "strategy panels" editoriali, stile fund multi-strategia ---- */

/* Il pattern radiale di sfondo (.vre-section::after, opacita' base 0.55)
   competeva con la card Venture Capital a destra. Qui lo attenuiamo molto:
   resta percepibile ma non compete piu' col contenuto. */
#vch-pillars.vre-section::after { opacity: 0.16; }

#vch .vch-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(22px, 2.6vw, 32px);
	margin-top: clamp(34px, 4vw, 52px);
	align-items: stretch;
}

/* Pannello editoriale centrato: contenuto tutto centrato (icona, titolo,
   descrizione, link), bordo sottile uniforme, nessun accento superiore —
   piu' leggero e meno "template" delle card why-* con border-top. */
#vch .vch-pillar {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
	padding: 30px 28px 24px;
	background: #fff;
	border: 1px solid rgba(20,30,50,.06);
	border-radius: 20px;
	box-shadow: 0 18px 40px -26px rgba(20,30,50,.28);
	text-decoration: none;
	color: inherit;
	transition: transform .28s cubic-bezier(.22,1,.36,1), box-shadow .28s, border-color .28s;
}
#vch .vch-pillar:hover {
	transform: translateY(-2px);
	border-color: rgba(0,176,212,.22);
	box-shadow: 0 22px 46px -26px rgba(20,30,50,.30);
}

/* Icona: linguaggio DISTINTO dal resto della home (niente bubble a
   gradiente + alone turchese + dot orbitanti). Qui: marcatore di strategia
   sobrio e istituzionale — cerchio pieno turchese brand #00B0D4, icona
   bianca, ombra leggera, nessun bagliore, nessun'animazione. Scoped a
   #vch-pillars quindi non tocca .vre-pstep-ico usato altrove. */
#vch .vch-pillar-ico {
	margin: 0 0 16px;
	display: flex;
	justify-content: center;
	align-self: center;
}
#vch .vch-pillar .vch-pico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #00B0D4;
	box-shadow: 0 10px 20px -8px rgba(0,176,212,.48);
	transition: box-shadow .25s, transform .25s;
}
#vch .vch-pillar .vch-pico svg { width: 30px; height: 30px; }
#vch .vch-pillar:hover .vch-pico {
	box-shadow: 0 10px 22px -8px rgba(0,176,212,.55);
	transform: translateY(-1px);
}

#vch .vch-pillar-title {
	font-family: 'Inter', sans-serif !important;
	font-size: 1.375rem;
	font-weight: 700;
	color: #0A1930;
	margin: 0 0 9px;
	line-height: 1.2;
	text-align: center;
}

#vch .vch-pillar-desc {
	font-family: 'Inter', sans-serif;
	font-size: .92rem;
	line-height: 1.52;
	color: #5B6B7F;
	margin: 0 auto 18px;
	max-width: 30ch;
	text-align: center;
	text-wrap: balance;
}

#vch .vch-pillar-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: .85rem;
	font-weight: 600;
	color: #00B0D4;
	letter-spacing: .02em;
	margin: auto auto 0;
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: gap .2s, border-color .2s;
}
#vch .vch-pillar:hover .vch-pillar-link {
	gap: 9px;
	border-color: rgba(0,176,212,.55);
}
#vch .vch-pillar-link svg { width: 15px; height: 15px; position: relative; top: 1px; }

/* ---- VISION ---- */

#vch .vch-vision-wrap {
	max-width: 800px;
	margin-inline: auto;
	text-align: center;
}

#vch .vch-vision-quote {
	font-family: 'DM Serif Display', serif;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	font-weight: 400;
	font-style: italic;
	line-height: 1.45;
	color: rgba(255,255,255,.93);
	margin: 0 0 28px;
	padding: 0;
	border: none;
}

#vch .vch-vision-sub {
	font-size: clamp(.9rem, 1.2vw, 1.05rem);
	line-height: 1.75;
	color: rgba(167,178,194,.82);
	margin: 0;
	max-width: 68ch;
	margin-inline: auto;
}

/* ---- CTA ---- */

#vch .vch-cta-section {
	background: linear-gradient(180deg, #080D14 0%, #0b1422 100%);
	text-align: center;
}

#vch .vch-cta-wrap {
	max-width: 700px;
	margin-inline: auto;
}

#vch .vch-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 40px;
}

.vch-btn-ghost-dark {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	background: transparent;
	color: rgba(255,255,255,.75);
	font-size: .9rem;
	font-weight: 500;
	letter-spacing: .03em;
	border-radius: 50px;
	border: 1px solid rgba(255,255,255,.22);
	text-decoration: none;
	transition: border-color .2s, color .2s, transform .22s;
}
.vch-btn-ghost-dark:hover {
	border-color: rgba(255,255,255,.6);
	color: #fff;
	transform: translateY(-2px);
}

/* ---- SNAPSHOT (identica a Real Estate: card .vre-stat singole) ---- */

/* Header della sezione: sub leggermente più respirato prima delle card,
   larghezza max raffinata come richiesto (700-820px). */
#vch .vre-snapshot .vre-lead { max-width: 800px; margin-bottom: clamp(40px, 5vw, 64px); }

/* Solo 4 KPI (vs 5 di RE) → card naturalmente più larghe. Le rendiamo più
   "premium": più padding, radius più morbido, bordo sottile e ombra piu'
   profonda, cosi' le metriche pesano di piu' in home. */
#vch .vch-stats-4 {
	grid-template-columns: repeat(4, 1fr);
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	gap: 20px;
}
#vch .vch-stats-4 .vre-stat {
	padding: 44px 26px 38px;
	border-radius: 24px;
	border: 1px solid rgba(20,30,50,.09);
	background: #ffffff;
	box-shadow: 0 16px 42px -22px rgba(20,30,50,.38);
}
#vch .vch-stats-4 .vre-stat:hover {
	box-shadow: 0 22px 54px -22px rgba(0,176,212,.30);
}
#vch .vch-stats-4 .vre-num {
	font-size: clamp(2.3rem, 3.6vw, 3.15rem);
	font-weight: 800;
}
#vch .vch-stats-4 .vre-stat-label { font-size: 1.02rem; }
#vch .vch-stats-4 .vre-stat-note { font-size: .87rem; }
#vch .vre-snapshot .vre-num { color: #2E4A72 !important; }
#vch .vre-snapshot .vre-stat-label { color: #1C355C; }

/* ---- OUR INVESTMENT APPROACH → griglia editoriale 2 righe / 3 colonne, stile istituzionale ---- */

#vch .vch-approach { position: relative; overflow: hidden; }
#vch .vch-approach.vre-section::after { display: block; opacity: 0.14; }

/* Griglia calma: nessuna linea/percorso, nessun posizionamento assoluto.
   Ogni step e' un blocco editoriale (icona centrata sopra, titolo, testo)
   allineato su una griglia 3 colonne / 2 righe, con ampio respiro verticale
   tra le righe per non sembrare un workflow. */
#vch .vch-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-rows: 1fr;
	column-gap: clamp(24px, 4vw, 64px);
	row-gap: clamp(48px, 5.5vw, 72px);
	max-width: 1180px;
	margin: clamp(60px, 6.5vw, 88px) auto 0;
}

#vch .vch-step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
}

/* Nodo = riusa ESATTAMENTE il trattamento icona di HOW YOU INVEST WITH US
   (.vre-ico-wrap + .vre-pstep-ico + .vre-ico-dot): bubble navy con gradiente,
   bordo blu, dot turchesi. Qui e' un elemento di flusso normale, centrato
   sopra il titolo — nessuna coordinata, nessun ancoraggio a una linea. */
#vch .vch-snode {
	display: flex;
	position: relative;
	z-index: 2;
	/* Icona ancorata SOPRA il pannello (Option B): sovrapposizione morbida
	   — l'icona scende leggermente sul bordo superiore del pannello, restando
	   l'ancora visiva principale. Il pannello (che segue nel DOM) ha z-index
	   inferiore cosi' la bubble navy resta davanti. */
	margin-bottom: -36px;
}
/* wrap a FLEX (non inline-block): elimina il gap di baseline della bubble
   inline-flex, cosi' l'icona resta perfettamente centrata sopra testo. */
#vch .vch-snode .vre-ico-wrap {
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Alone turchese permanente (in HOW YOU INVEST e' solo sullo stato is-active) */
#vch .vch-snode .vre-pstep-ico {
	box-shadow:
		0 0 0 8px rgba(0,176,212,.12),
		0 4px 14px rgba(0,0,0,.35),
		0 2px 4px rgba(0,0,0,.30),
		inset 0 1px 2px rgba(255,255,255,.07);
}

/* Icone/dot COMPLETAMENTE statici in questa sezione: nessun float, orbita,
   keyframe o transizione. Scope .vch-approach: NON tocca la sezione
   HOW YOU INVEST WITH US. */
#vch .vch-approach .vre-pstep-ico,
#vch .vch-approach .vre-ico-wrap,
#vch .vch-approach .vre-ico-wrap::before,
#vch .vch-approach .vre-ico-wrap::after,
#vch .vch-approach .vre-ico-dot {
	animation: none !important;
	transition: none !important;
}

/* Micro-interazione: hover estremamente sobrio, solo un lieve refinement
   dell'alone — niente scala, niente rimbalzo. */
#vch .vch-approach .vch-step:hover .vre-pstep-ico {
	box-shadow:
		0 0 0 10px rgba(0,176,212,.16),
		0 4px 14px rgba(0,0,0,.35),
		0 2px 4px rgba(0,0,0,.30),
		inset 0 1px 2px rgba(255,255,255,.07);
}

/* Pannello editoriale morbido (Option B): NON una card SaaS — sfondo bianco
   traslucido appena percepibile, bordo sottilissimo, ombra quasi impercettibile,
   raggio ampio. Serve solo a dare struttura/leggibilita' al testo; l'icona
   resta l'ancora visiva. Nessun accento turchese, nessuna riga superiore,
   nessun hover. `flex:1` + `grid-auto-rows:1fr` → tutti e 6 i pannelli pari
   altezza. Il padding-top ampio accoglie la sovrapposizione dell'icona. */
#vch .vch-scard {
	flex: 1 1 auto;
	width: 100%;
	max-width: 272px;
	text-align: center;
	background: rgba(255,255,255,.5);
	border: 1px solid rgba(10,25,48,.06);
	box-shadow: 0 12px 30px -24px rgba(10,25,48,.16);
	border-radius: 24px;
	padding: 52px 26px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

/* Titolo turchese #00B0D4 (!important per battere `.vre-light :is(h1,h2,h3)`
   della RE css che forza --sec-head). Stessa scala dei titoli card/processo
   di Real Estate, Private Equity e Venture Capital (.vre-pstep-t / .vre-why-t
   = 1.375rem / 700), non i 1.25rem generici usati prima. */
#vch .vch-approach .vch-scard .vch-sstep-t {
	font-family: 'Inter', sans-serif !important;
	font-size: 1.375rem;
	font-weight: 700;
	color: #00B0D4 !important;
	margin: 0 0 .5rem;
	line-height: 1.22;
}
#vch .vch-sstep-d {
	font-size: 1rem;
	line-height: 1.65;
	color: #4a5568;
	margin: 0 auto;
	text-wrap: balance;
}

/* ---- CTA finale: due colonne su fondo chiaro, stile "originale" (screen 3):
   niente box, titolo sans bold con sottolineatura blu, eyebrow SOTTO il
   titolo, bottone azzurro, riga blu in fondo a ogni colonna. ---- */
#vch .vch-final-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(28px, 5vw, 72px);
	margin-top: clamp(16px, 3vw, 32px);
}
#vch .vch-final-card {
	position: relative;
	z-index: 2;
	text-align: center;
	background: none;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: clamp(20px, 3vw, 36px) clamp(8px, 1.4vw, 16px) clamp(16px, 2vw, 24px);
}
/* Titolo/eyebrow/accento allineati al CTA finale di Vertigo RE (.vre-cta):
   stessa gerarchia (weight 800, colore quasi-nero #0a0f17), ma taglia
   ridotta perche' qui il titolo vive in una colonna a meta' larghezza,
   non su riga piena. Accento sottolineatura in turchese brand #00B0D4
   (stesso di .vre-cta-hl::after) al posto del blu chiaro precedente. */
#vch .vch-final .vch-final-t {
	font-family: 'Inter', sans-serif !important;
	font-weight: 800;
	color: #0a0f17 !important;
	font-size: clamp(1.9rem, 3.2vw, 2.6rem);
	line-height: 1.12;
	letter-spacing: -.015em;
	margin: 0 0 14px;
}
#vch .vch-final-hl {
	display: inline-block;
	white-space: nowrap;
	position: relative;
}
#vch .vch-final-hl::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: .02em;
	height: .09em;
	background: #00B0D4;
	border-radius: 3px;
	opacity: .7;
}
#vch .vch-final-eyebrow {
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #1C355C;
	margin: 0 0 22px;
}
/* Bottone stesso colore del CTA finale di Vertigo RE (#2E4A72 / hover #1e3355) */
#vch .vch-final-btn.vre-btn {
	background: #2E4A72 !important;
	box-shadow: none;
}
#vch .vch-final-btn.vre-btn:hover {
	background: #1e3355 !important;
	box-shadow: 0 12px 30px -10px rgba(46,74,114,.45) !important;
}
#vch .vch-final-contact {
	text-align: center;
	margin: clamp(28px, 4vw, 44px) 0 0;
	color: #5B6B7F;
	font-size: .92rem;
}

@media (max-width: 760px) {
	#vch .vch-final-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ---- HOW YOU INVEST → process scorrevole (riusa .vre-process di RE/PE) ---- */

/* ---- VISION: linea di chiusura "If not us, who can?" ---- */

#vch .vch-vision-sub {
	color: #619BD1;
	font-weight: 600;
	font-style: italic;
	font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

/* ---- Responsive ---- */

@media (max-width: 960px) {
	#vch .vch-snap-band { grid-template-columns: repeat(2, 1fr); }
	#vch .vch-snap-item:nth-child(3) { border-left: none; }
	#vch .vch-snap-item:nth-child(n+3) { border-top: 1px solid rgba(20,30,50,.08); }
}

/* Tablet (< 1080px): griglia a 2 colonne, ordine numerico 1→6 nel DOM.
   Nessuna freccia tra colonne diverse (il richiamo di sequenza ha senso solo
   in riga continua da 3 col). */
@media (max-width: 1080px) {
	#vch .vch-grid {
		grid-template-columns: repeat(2, 1fr);
		max-width: 640px;
		row-gap: clamp(56px, 8vw, 88px);
	}
}

/* Mobile (< 720px): un'unica colonna, step impilati in ordine esatto
   1→6, nessuna linea, nessuna card, nessuna freccia — solo icona + titolo +
   descrizione con spaziatura generosa. */
@media (max-width: 720px) {
	#vch .vch-grid {
		grid-template-columns: 1fr;
		row-gap: 48px;
		max-width: 420px;
	}
}

/* Snapshot metrics: 4 → 2x2 su tablet, 1 colonna sul mobile stretto */
@media (max-width: 1024px) {
	#vch .vch-stats-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	#vch .vch-pillars { grid-template-columns: 1fr; }
	.vc-hero-section .vc-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 600px) {
	#vch .vch-snap-band { grid-template-columns: 1fr 1fr; }
	#vch .vch-snap-item { padding: 30px 14px 26px; }
	#vch .vch-stats-4 { grid-template-columns: 1fr; }
	#vch .vch-stats-4 .vre-stat { padding: 36px 22px 32px; }
	#vch .vch-pillar { padding: 28px 22px 24px; }
}
