/*
 * ============================================================
 *  AVANET SRL — Commercialisti Design System
 *  CSS unificato per tutte le pagine "Per Commercialisti"
 *  Versione 1.0 — generato da 4 pagine sorgente
 *
 *  Pagine che usano questo file:
 *    commercialisti-cfdigitale.php
 *    commercialisti-dettaglio.php
 *    commercialisti-fatturazioni.php
 *    commercialisti-piattaforma.php
 *
 *  MODIFICA HTML RICHIESTA (2 pagine):
 *    commercialisti-dettaglio.php   → <div class="av3-hero"> diventa <div class="av3-hero av3-hero-dark">
 *    commercialisti-piattaforma.php → <div class="av3-hero"> diventa <div class="av3-hero av3-hero-dark">
 *    commercialisti-piattaforma.php → <div class="av3-cta">  diventa <div class="av3-cta av3-cta-dark">
 * ============================================================
 */

/* ============================================================
   1. ROOT VARIABLES (unione di tutte e 4 le pagine)
   ============================================================ */
:root {
	--av3-primary:      #e8400e;
	--av3-primary-dark: #c93600;
	--av3-accent:       #1565C0;
	--av3-accent-light: #e8f0fe;
	--av3-heading:      #1e293b;
	--av3-text:         #475569;
	--av3-text-light:   #94a3b8;
	--av3-bg-white:     #ffffff;
	--av3-bg-light:     #f8fafc;
	--av3-bg-soft:      #f8fafc;   /* alias di bg-light */
	--av3-bg-blue:      #f0f7ff;
	--av3-bg-warm:      #faf8f5;
	--av3-border:       #e2e8f0;
	--av3-green:        #059669;
	--av3-green-bg:     #f0fdf4;
	--av3-amber:        #d97706;
	--av3-amber-bg:     #fffbeb;
	--av3-radius:       16px;
	--av3-radius-sm:    10px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
	color: var(--av3-text);
	background: var(--av3-bg-white);
	line-height: 1.6;
	font-size: 1rem;
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	color: var(--av3-heading);
	font-weight: 800;
	line-height: 1.2;
	font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
}

h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

/* ============================================================
   3. ANIMAZIONI
   ============================================================ */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(26px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes pulseRed {
	0%, 100% { box-shadow: 0 0 0 0 rgba(232, 64, 14, 0.3); }
	50%       { box-shadow: 0 0 0 12px rgba(232, 64, 14, 0); }
}
@keyframes countUp {
	from { opacity: 0; transform: scale(0.8); }
	to   { opacity: 1; transform: scale(1); }
}

.av3-animate,
.av3-anim {
	opacity: 0;
}
.av3-animate.visible,
.av3-anim.visible {
	animation: fadeUp 0.65s cubic-bezier(.22,.68,0,1.2) forwards;
}

/* ============================================================
   4. LAYOUT — Container, Inner, Section
   ============================================================ */

/* Wrapper centralizzato — .av3-container (cfdigitale, fatturazioni) e .av3-inner (dettaglio, piattaforma) sono equivalenti */
.av3-container,
.av3-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0;
}

/* Sezione standard */
.av3-section,
.av3-sec {
	padding: 80px 5%;
	border-bottom: 1px solid var(--av3-border);
}

.av3-section.light,
.av3-sec.light { background: var(--av3-bg-soft); }
.av3-section.warm,
.av3-sec.warm   { background: var(--av3-bg-warm); }
.av3-section.blue,
.av3-sec.blue   { background: var(--av3-bg-blue); }
.av3-section.dark,
.av3-sec.dark   { background: var(--av3-heading); }

/* Header di sezione centrato */
.av3-section-header {
	text-align: center;
	margin-bottom: 3.5rem;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

/* ============================================================
   5. TIPOGRAFIA
   ============================================================ */

/* Tag sopra i titoli */
.av3-tag,
.av3-stage-label {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--av3-primary);
	margin-bottom: 0.7rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.av3-tag::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 2px;
	background: var(--av3-primary);
	flex-shrink: 0;
}
.av3-stage-label::before { display: none; }

/* Heading H2 — .av3-heading-h2 (cfdigitale) / h2.av3-heading (dettaglio) / .av3-h2 (piattaforma) */
.av3-heading-h2,
h2.av3-heading,
.av3-h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.5rem);
	font-weight: 800;
	color: var(--av3-heading);
	line-height: 1.2;
	margin-bottom: 1rem;
}

/* Lead paragraph */
.av3-lead {
	font-size: 1.08rem;
	font-weight: 400;
	color: var(--av3-text);
	max-width: 700px;
	line-height: 1.85;
	margin-bottom: 2.8rem;
}

/* Body text */
.av3-body-text,
.av3-body {
	font-size: 1rem;
	font-weight: 400;
	color: var(--av3-text);
	line-height: 1.85;
	margin-bottom: 1rem;
}

/* ============================================================
   6. ICONS (utility SVG)
   ============================================================ */
.av3-icon-sm { width: 1.2rem; height: 1.2rem; stroke: currentColor; }
.av3-icon-md { width: 1.8rem; height: 1.8rem; stroke: currentColor; }
.av3-icon-lg { width: 2.4rem; height: 2.4rem; stroke: currentColor; }

/* ============================================================
   7. BUTTONS
   ============================================================ */

/* Pulsante generico */
.av3-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 2.2rem;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.25s ease;
	cursor: pointer;
	border: none;
}

/* Pulsante primario — sfondo rosso */
.av3-btn-primary,
.av3-cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: linear-gradient(135deg, var(--av3-primary) 0%, var(--av3-primary-dark) 100%);
	color: #ffffff;
	padding: 1rem 2.2rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	animation: pulseRed 2.5s ease-in-out infinite;
}
.av3-btn-primary:hover,
.av3-cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(232, 64, 14, 0.32);
	animation: none;
}

/* Pulsante outline / secondario — su sfondo chiaro */
.av3-btn-outline,
.av3-btn-light,
.av3-cta-secondary.light-mode {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	color: var(--av3-heading);
	padding: 1rem 2.2rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid var(--av3-border);
	cursor: pointer;
}
.av3-btn-outline:hover,
.av3-btn-light:hover,
.av3-cta-secondary.light-mode:hover {
	border-color: var(--av3-accent);
	color: var(--av3-accent);
	background: var(--av3-bg-blue);
	transform: translateY(-2px);
}

/* Pulsante secondario — su sfondo scuro */
.av3-btn-secondary,
.av3-cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.07);
	color: #cbd5e1;
	padding: 1rem 2.2rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 1px solid rgba(255, 255, 255, 0.15);
	cursor: pointer;
}
.av3-btn-secondary:hover,
.av3-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

/* ============================================================
   8. HERO SECTION
   ============================================================ */

/* Base condivisa */
.av3-hero {
	padding: 100px 5%;
	position: relative;
	overflow: hidden;
}

/* ── VARIANTE CHIARA (cfdigitale, fatturazioni) — default ── */
.av3-hero {
	background: linear-gradient(170deg, #f0f7ff 0%, #faf8f5 50%, #fff 100%);
	text-align: center;
	border-bottom: 1px solid var(--av3-border);
}

/* Hero wrapper/inner centrato */
.av3-hero-wrapper,
.av3-hero-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.av3-hero-tag {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--av3-primary);
	margin-bottom: 1rem;
}

.av3-hero-title {
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 800;
	color: var(--av3-heading);
	line-height: 1.25;
	margin-bottom: 1.2rem;
}

.av3-hero-lead {
	font-size: 1.12rem;
	color: var(--av3-text);
	line-height: 1.85;
	margin-bottom: 2rem;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

.av3-hero-cta {
	margin-top: 2rem;
}

/* ── VARIANTE SCURA (dettaglio, piattaforma)
      Aggiungere classe "av3-hero-dark" alla div .av3-hero ── */
.av3-hero-dark {
	background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 55%, #0f172a 100%);
	border-bottom: none;
}

.av3-hero-dark::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -10%;
	width: 700px;
	height: 700px;
	background: radial-gradient(ellipse, rgba(232, 64, 14, 0.15) 0%, transparent 70%);
	pointer-events: none;
}
.av3-hero-dark::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: 10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(ellipse, rgba(21, 101, 192, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

/* Badge nella hero scura */
.av3-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(232, 64, 14, 0.15);
	border: 1px solid rgba(232, 64, 14, 0.3);
	color: #fca58c;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.45rem 1.2rem;
	border-radius: 100px;
	margin-bottom: 2rem;
	animation: fadeIn 0.8s ease forwards;
}

/* H1 nella hero scura */
.av3-hero-dark h1 {
	color: #f1f5f9;
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.15;
	margin-bottom: 1.4rem;
	opacity: 0;
	animation: fadeUp 0.9s 0.1s cubic-bezier(.22,.68,0,1) forwards;
}
.av3-hero-dark h1 em,
.av3-hero-dark h1 span { font-style: normal; color: var(--av3-primary); }

.av3-hero-sub {
	font-size: 1.1rem;
	color: #94a3b8;
	max-width: 760px;
	margin: 0 auto 2.5rem;
	line-height: 1.85;
	opacity: 0;
	animation: fadeUp 0.9s 0.2s cubic-bezier(.22,.68,0,1) forwards;
}

/* CTA buttons nella hero (flex row) */
.av3-hero-ctas {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	opacity: 0;
	animation: fadeUp 0.9s 0.3s cubic-bezier(.22,.68,0,1) forwards;
}

/* Stats nella hero scura */
.av3-hero-stats {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	opacity: 0;
	animation: fadeUp 0.9s 0.4s cubic-bezier(.22,.68,0,1) forwards;
}
.av3-hero-stat { text-align: center; }
.av3-hero-stat-num {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 0.3rem;
}
.av3-hero-stat-num span { color: var(--av3-primary); }
.av3-hero-stat-label { font-size: 0.88rem; color: #64748b; font-weight: 500; }

/* ============================================================
   9. TRUST BAR (linea di fiducia orizzontale)
   ============================================================ */
.av3-trust {
	background: var(--av3-bg-white);
	border-bottom: 1px solid var(--av3-border);
	padding: 1.1rem 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}
.av3-trust-item {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--av3-heading);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.av3-trust-item strong { color: var(--av3-primary); }
.av3-trust-sep {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--av3-border);
}

/* ============================================================
   10. TRUST CARDS (griglia 5 card nella hero)
   ============================================================ */
.av3-trust-cards-section {
	background: linear-gradient(170deg, #f0f7ff 0%, #f8fafc 100%);
	padding: 60px 5%;
	border-bottom: 1px solid var(--av3-border);
}

.av3-trust-cards {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	max-width: 1280px;
	margin: 0 auto;
}

.av3-trust-card {
	background: #ffffff;
	border: 1px solid var(--av3-border);
	border-top: 3px solid var(--av3-primary);
	border-radius: 14px;
	padding: 2rem 1.4rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.25s ease;
}
.av3-trust-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	border-color: var(--av3-accent);
	border-top-color: var(--av3-accent);
}

.av3-trust-card-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #e8f0fe, #dbeafe);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}
.av3-trust-card-icon svg {
	width: 24px;
	height: 24px;
	stroke: var(--av3-accent);
}
.av3-trust-card-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--av3-heading);
	margin-bottom: 0.5rem;
	line-height: 1.3;
}
.av3-trust-card-text {
	font-size: 0.9rem;
	color: var(--av3-text);
	line-height: 1.65;
}

/* ============================================================
   11. STRIP (barra colorata con punti elenco)
   ============================================================ */
.av3-strip {
	background: var(--av3-primary);
	background: linear-gradient(90deg, #c73308 0%, var(--av3-primary) 50%, #c73308 100%);
	padding: 1.2rem 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--av3-border);
}
.av3-strip-item {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.av3-strip-item::before {
	content: '✓';
	color: #FDB550;
	font-weight: 800;
}
.av3-strip-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	flex-shrink: 0;
}

/* ============================================================
   12. HOOK BOX (evidenziazione testuale con bordo sinistro)
   ============================================================ */
.av3-hook,
.av3-highlight-box {
	border-left: 4px solid var(--av3-primary);
	padding-left: 1.7rem;
	margin-bottom: 2.5rem;
}
.av3-hook-title,
.av3-highlight-text {
	font-size: 1.55rem;
	font-weight: 800;
	color: var(--av3-heading);
	line-height: 1.3;
	margin-bottom: 0.5rem;
}
.av3-hook-sub {
	font-size: 1.05rem;
	color: var(--av3-text);
	line-height: 1.8;
}

/* ============================================================
   13. CARDS GENERICHE
   ============================================================ */
.av3-card {
	background: #ffffff;
	border: 1px solid var(--av3-border);
	border-radius: 14px;
	padding: 2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.av3-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--av3-primary), var(--av3-accent));
	opacity: 0;
	transition: opacity 0.3s ease;
}
.av3-card:hover {
	border-color: transparent;
	transform: translateY(-6px);
	box-shadow: 0 24px 56px rgba(0, 0, 0, 0.1);
}
.av3-card:hover::before { opacity: 1; }

.av3-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--av3-bg-blue), #e0f0ff);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
}
.av3-card-icon svg { width: 26px; height: 26px; color: var(--av3-accent); }
.av3-card-title  { font-size: 1.08rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.6rem; }
.av3-card-text   { font-size: 0.97rem; color: var(--av3-text); line-height: 1.82; margin-bottom: 1rem; }
.av3-card-tag {
	display: inline-block;
	background: linear-gradient(135deg, #fef3ef, #fff5f5);
	color: var(--av3-primary);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.32rem 0.75rem;
	border-radius: 100px;
	margin-top: 0.8rem;
}
.av3-card-features {
	list-style: none;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--av3-border);
}
.av3-card-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--av3-text);
	padding: 0.25rem 0;
	line-height: 1.5;
}
.av3-card-features li::before {
	content: '✓';
	color: var(--av3-green);
	font-weight: 700;
	flex-shrink: 0;
}

/* ============================================================
   14. GRIGLIA GENERICA (3 / 4 / 2 colonne)
   ============================================================ */
.av3-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.8rem;
}
.av3-grid.av3col4 { grid-template-columns: repeat(4, 1fr); }
.av3-grid.av3col2 { grid-template-columns: repeat(2, 1fr); }

/* 2 colonne con testo */
.av3-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

/* ============================================================
   15. PROBLEMA / SOLUZIONE
   ============================================================ */
.av3-compare-grid,
.av3-problem-grid,
.av3-ps-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

/* Colonne confronto (cfdigitale) */
.av3-compare-col {
	border-radius: 12px;
	padding: 2.2rem;
	border: 1px solid var(--av3-border);
}
.av3-compare-col-bad,
.av3-compare-col.no {
	background: #fff5f5;
	border-color: #fac9c9;
}
.av3-compare-col-good,
.av3-compare-col.yes {
	background: #f0f8f4;
	border-color: #b3d9c6;
}
.av3-compare-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
}
.av3-compare-col-bad .av3-compare-title,
.av3-compare-col.no h3 { color: #c0392b; }
.av3-compare-col-good .av3-compare-title,
.av3-compare-col.yes h3 { color: #1a7a4a; }

.av3-compare-list,
.av3-compare-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.av3-compare-list li,
.av3-compare-col li {
	padding: 0.9rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 1rem;
	line-height: 1.55;
	display: flex;
	gap: 0.8rem;
}
.av3-compare-list li:last-child,
.av3-compare-col li:last-child { border-bottom: none; }
.av3-compare-col-bad .av3-compare-list li { color: #c0392b; }
.av3-compare-col-good .av3-compare-list li { color: #1a7a4a; }
.av3-compare-col.no li::before { content: '✗'; color: #dc2626; font-weight: 700; flex-shrink: 0; }
.av3-compare-col.yes li::before { content: '✓'; color: #16a34a; font-weight: 700; flex-shrink: 0; }

/* Problem/Solution card (dettaglio, piattaforma) */
.av3-problem-side,
.av3-solution-side,
.av3-ps-card {
	border-radius: 16px;
	padding: 2.5rem;
}
.av3-problem-side,
.av3-ps-card.problem {
	background: #fff8f7;
	border: 1px solid #fecaca;
}
.av3-solution-side,
.av3-ps-card.solution {
	background: var(--av3-bg-blue);
	border: 1px solid var(--av3-accent-light);
}

.av3-ps-header,
.av3-ps-head {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin-bottom: 1.5rem;
}
.av3-ps-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}
.av3-problem-side .av3-ps-icon { background: #fee2e2; }
.av3-solution-side .av3-ps-icon { background: #dcfce7; }
.av3-ps-head-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.8rem;
	border-radius: 100px;
}
.problem .av3-ps-head-badge { background: #fee2e2; color: #dc2626; }
.solution .av3-ps-head-badge { background: #dbeafe; color: var(--av3-accent); }

.av3-ps-title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.av3-problem-side .av3-ps-title { color: #dc2626; }
.av3-solution-side .av3-ps-title { color: #16a34a; }

.av3-ps-item {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	font-size: 0.97rem;
	line-height: 1.5;
}
.av3-ps-item:last-child { border-bottom: none; }
.av3-ps-item-icon { flex-shrink: 0; margin-top: 1px; }
.av3-problem-side .av3-ps-item { color: #7f1d1d; }
.av3-solution-side .av3-ps-item { color: #14532d; }

/* PS card ul/li (piattaforma) */
.av3-ps-card ul { list-style: none; padding: 0; margin: 0; }
.av3-ps-card li {
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(0,0,0,.07);
	font-size: 0.97rem;
	color: var(--av3-text);
	line-height: 1.6;
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
}
.av3-ps-card li:last-child { border-bottom: none; }
.av3-ps-card li::before { flex-shrink: 0; font-weight: 700; }
.problem li::before  { content: '✗'; color: #dc2626; }
.solution li::before { content: '✓'; color: var(--av3-accent); }

/* ============================================================
   16. FLOW DIAGRAM
   ============================================================ */
.av3-flow-diagram,
.av3-flow {
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin: 2.5rem auto;
	max-width: 1000px;
}

.av3-flow-node {
	flex: 1;
	min-width: 160px;
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 12px;
	padding: 1.8rem 1.5rem;
	text-align: center;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.av3-flow-node-primary,
.av3-flow-node.highlight {
	background: #e8f0fe;
	border-color: #a8c4f5;
}
.av3-flow-node-secondary,
.av3-flow-node.treasury {
	background: #fef9ec;
	border-color: #f0d88a;
}

.av3-flow-label,
.av3-flow-node-label {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--av3-heading);
	margin-top: 0.8rem;
	line-height: 1.3;
}
.av3-flow-sub,
.av3-flow-node-sub {
	font-size: 0.95rem;
	color: var(--av3-text-light);
	margin-top: 0.4rem;
}

/* Frecce del flow */
.av3-flow-arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
	flex-shrink: 0;
	min-width: 60px;
}
/* Freccia testuale (fatturazioni) */
.av3-flow-arrow::before {
	content: '→';
	font-size: 1.5rem;
	color: var(--av3-accent);
	font-weight: 700;
}
/* Override per freccia grafica SVG-like (cfdigitale) */
.av3-flow-diagram .av3-flow-arrow::before {
	content: '';
	width: 2px;
	height: 40px;
	background: var(--av3-accent);
	margin: 0.5rem 0;
}
.av3-flow-diagram .av3-flow-arrow::after {
	content: '';
	width: 0; height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid var(--av3-accent);
}
.av3-flow-arrow-text,
.av3-flow-arrow span {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--av3-accent);
	margin: 0.5rem 0;
}

/* ============================================================
   17. STEPS & PROCESS GRID
   ============================================================ */

/* Grid 4 colonne (cfdigitale, fatturazioni) */
.av3-steps-grid,
.av3-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* Variante 2×2 (piattaforma setup) */
.av3-steps.av3-steps-2x2 {
	grid-template-columns: repeat(2, 1fr);
}

.av3-step-card,
.av3-step {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 12px;
	padding: 2rem 1.5rem;
	text-align: center;
	border-top: 3px solid var(--av3-primary);
	transition: all 0.25s ease;
	position: relative;
}
.av3-step-card:hover,
.av3-step:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
/* Connettore → tra step (dettaglio) */
.av3-step:not(:last-child)::after {
	content: '→';
	position: absolute;
	right: -1.2rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--av3-text-light);
	font-size: 1.2rem;
	z-index: 1;
}

/* Numero dello step */
.av3-step-number,
.av3-step-num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--av3-primary), var(--av3-primary-dark));
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	font-size: 1.3rem;
	font-weight: 800;
}
/* Variante blu (piattaforma step-num) */
.av3-step-num.blue,
.av3-step .av3-step-num { background: var(--av3-accent); }

.av3-step-title  { font-size: 1.05rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.6rem; line-height: 1.35; }
.av3-step-text,
.av3-step-desc   { font-size: 0.95rem; color: var(--av3-text); line-height: 1.7; }

/* Grid 3 colonne — Process (cfdigitale "Come iniziare") */
.av3-process-grid,
.av3-getting-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.av3-process-step,
.av3-get-step {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 12px;
	padding: 2.2rem 1.8rem;
	text-align: center;
	transition: all 0.25s ease;
	position: relative;
}
.av3-process-step:hover,
.av3-get-step:hover {
	border-color: var(--av3-accent);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.av3-process-number,
.av3-get-step-num {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e8f0fe, #dbeafe);
	color: var(--av3-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	font-size: 1.4rem;
	font-weight: 800;
}
.av3-process-title,
.av3-get-step-title { font-size: 1.2rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.8rem; line-height: 1.3; }
.av3-process-text,
.av3-get-step-desc  { font-size: 0.95rem; color: var(--av3-text); line-height: 1.8; margin-bottom: 1.5rem; }
.av3-process-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #e8f0fe, #dbeafe);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 1rem auto 0;
	color: var(--av3-accent);
}

/* ============================================================
   18. FEATURE CARDS
   ============================================================ */
.av3-features-grid,
.av3-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.av3-feature-card {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 12px;
	padding: 2.2rem;
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}
.av3-feature-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--av3-primary), var(--av3-accent));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.av3-feature-card:hover {
	border-color: var(--av3-accent);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.av3-feature-card:hover::before { transform: scaleX(1); }

.av3-feature-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #e8f0fe, #dbeafe);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.2rem;
	color: var(--av3-accent);
}
.av3-feature-icon svg { width: 26px; height: 26px; color: var(--av3-accent); }
.av3-feature-title  { font-size: 1.15rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.6rem; line-height: 1.35; }
.av3-feature-text,
.av3-feature-desc   { font-size: 0.95rem; color: var(--av3-text); line-height: 1.8; margin-bottom: 1rem; }
.av3-feature-tag {
	display: inline-block;
	background: var(--av3-accent-light);
	color: var(--av3-accent);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.3rem 0.8rem;
	border-radius: 100px;
}
.av3-feature-list {
	list-style: none;
	padding: 0;
	margin: 0.8rem 0 0;
	border-top: 1px solid var(--av3-border);
	padding-top: 0.8rem;
}
.av3-feature-list li {
	font-size: 0.88rem;
	color: var(--av3-text);
	padding: 0.22rem 0;
	display: flex;
	gap: 0.4rem;
}
.av3-feature-list li::before { content: '✓'; color: var(--av3-green); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   19. WHITE LABEL / ADVANTAGE CARDS (colonna sinistra)
   ============================================================ */
.av3-wl-grid,
.av3-advantage,
.av3-whitey-label-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.av3-wl-card,
.av3-advantage-card {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 12px;
	padding: 1.8rem;
	margin-bottom: 1.2rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.av3-wl-card:hover,
.av3-advantage-card:hover {
	border-color: var(--av3-accent);
	box-shadow: 0 8px 20px rgba(21, 101, 192, 0.08);
}
.av3-wl-icon,
.av3-advantage-icon {
	font-size: 1.8rem;
	margin-bottom: 0.8rem;
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #e8f0fe, #dbeafe);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--av3-accent);
}
.av3-wl-icon svg,
.av3-advantage-icon svg { width: 28px; height: 28px; stroke: var(--av3-accent); }
.av3-wl-title,
.av3-advantage-title  { font-size: 1.12rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.5rem; line-height: 1.3; }
.av3-wl-text,
.av3-wl-desc,
.av3-advantage-desc   { font-size: 0.95rem; color: var(--av3-text); line-height: 1.8; }

/* Options box (colonna destra) */
.av3-options-box,
.av3-advantage-box {
	background: var(--av3-bg-light);
	border: 1px solid var(--av3-border);
	border-radius: 14px;
	padding: 2.5rem;
}
.av3-options-label,
.av3-advantage-label {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av3-primary);
	margin-bottom: 1rem;
}
.av3-options-title,
.av3-advantage-heading {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--av3-heading);
	line-height: 1.25;
	margin-bottom: 0.8rem;
}
.av3-options-sub,
.av3-options-subtitle,
.av3-advantage-summary {
	font-size: 0.95rem;
	color: var(--av3-text);
	line-height: 1.8;
	margin-bottom: 1.6rem;
}
.av3-options-list,
.av3-advantage-list {
	display: grid;
	gap: 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}
.av3-option-item,
.av3-options-list li,
.av3-advantage-list li {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 10px;
	padding: 1.2rem;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}
.av3-advantage-list li::before {
	content: '✓';
	color: #16a34a;
	font-weight: 800;
	flex-shrink: 0;
	font-size: 1.1rem;
}
.av3-option-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 0.3rem;
}
.av3-option-title  { font-size: 0.95rem; font-weight: 700; color: var(--av3-heading); line-height: 1.3; }
.av3-option-note,
.av3-option-desc   { font-size: 0.85rem; color: var(--av3-text-light); margin-top: 0.2rem; }

/* ============================================================
   20. SAVINGS / METRICS
   ============================================================ */
.av3-savings-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}
.av3-metrics-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
	margin-top: 2rem;
}
.av3-metric {
	background: var(--av3-bg-light);
	border: 1px solid var(--av3-border);
	border-radius: 10px;
	padding: 1.4rem;
	text-align: center;
}
.av3-metric-value {
	font-size: 2.2rem;
	font-weight: 800;
	color: var(--av3-primary);
	line-height: 1;
	margin-bottom: 0.4rem;
}
.av3-metric-label { font-size: 0.9rem; color: var(--av3-text-light); font-weight: 600; }

.av3-savings-box,
.av3-sav {
	background: var(--av3-bg-light);
	border: 1px solid var(--av3-border);
	border-radius: 16px;
	padding: 2.5rem;
}
.av3-savings-label,
.av3-sav-label {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--av3-primary);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.av3-savings-label::before,
.av3-sav-label::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 2px;
	background: var(--av3-primary);
}
.av3-savings-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 1.4rem;
	border-radius: 10px;
	margin-bottom: 1rem;
}
.av3-savings-row-bad,
.av3-sav-item { background: #fff5f5; border: 1px solid #fac9c9; }
.av3-savings-row-good { background: #f0f8f4; border: 1px solid #b3d9c6; }
.av3-sav-item {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	padding: 0.9rem 1.1rem;
	background: linear-gradient(135deg, #f0f7ff, #e8f3ff);
	border: 1px solid #d1e0ff;
	border-radius: 10px;
	margin-bottom: 0.7rem;
	font-size: 0.97rem;
	color: var(--av3-heading);
	font-weight: 600;
}
.av3-sav-item svg { width: 18px; height: 18px; color: var(--av3-accent); flex-shrink: 0; }
.av3-savings-name { font-size: 1rem; font-weight: 600; }
.av3-savings-row-bad  .av3-savings-name  { color: #c0392b; }
.av3-savings-row-good .av3-savings-name  { color: #1a7a4a; }
.av3-savings-price { font-size: 1.3rem; font-weight: 800; }
.av3-savings-row-bad  .av3-savings-price { color: #c0392b; }
.av3-savings-row-good .av3-savings-price { color: #1a7a4a; }
.av3-savings-divider {
	text-align: center;
	font-size: 0.95rem;
	color: var(--av3-text-light);
	margin: 1.2rem 0;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.av3-savings-divider::before,
.av3-savings-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--av3-border);
}
.av3-savings-note,
.av3-sav-note { margin-top: 1.2rem; font-size: 0.9rem; color: var(--av3-text-light); line-height: 1.7; }

/* ============================================================
   21. COMPLIANCE / GARANZIE / SECURITY CARDS
   ============================================================ */
.av3-compliance-grid,
.av3-garanzie-grid,
.av3-security-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}
.av3-garanzie-grid,
.av3-security-grid { grid-template-columns: repeat(3, 1fr); }

.av3-compliance-card,
.av3-garanzia,
.av3-security-card {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.25s ease;
}
.av3-garanzia { display: flex; gap: 1.2rem; align-items: flex-start; text-align: left; }
.av3-security-card { text-align: left; position: relative; }
.av3-security-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--av3-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
	border-radius: 12px 12px 0 0;
}

.av3-compliance-card:hover,
.av3-garanzia:hover,
.av3-security-card:hover {
	border-color: var(--av3-accent);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.av3-security-card:hover::before { transform: scaleX(1); }

.av3-compliance-icon,
.av3-garanzia-icon,
.av3-security-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, #e8f0fe, #dbeafe);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.2rem;
	color: var(--av3-accent);
	flex-shrink: 0;
}
.av3-garanzia-icon,
.av3-security-icon { margin: 0 0 1.2rem; width: 50px; height: 50px; }
.av3-compliance-icon svg,
.av3-garanzia-icon svg,
.av3-security-icon svg { width: 24px; height: 24px; color: var(--av3-accent); }

.av3-compliance-title,
.av3-garanzia-title,
.av3-security-title { font-size: 1.1rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.6rem; line-height: 1.35; }
.av3-compliance-text,
.av3-garanzia-text,
.av3-security-text  { font-size: 0.95rem; color: var(--av3-text); line-height: 1.75; }
.av3-security-list  { list-style: none; padding: 0; margin: 0.8rem 0 0; }
.av3-security-list li { font-size: 0.88rem; color: var(--av3-text); padding: 0.22rem 0; display: flex; gap: 0.4rem; }
.av3-security-list li::before { content: '✓'; color: var(--av3-green); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   22. TARGET CARDS (a chi è rivolta)
   ============================================================ */
.av3-target-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.8rem;
	margin-top: 3rem;
}
.av3-target-card {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: var(--av3-radius);
	padding: 2.2rem;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.av3-target-card::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--av3-primary), var(--av3-accent));
	opacity: 0;
	transition: opacity 0.3s;
}
.av3-target-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.09); border-color: transparent; }
.av3-target-card:hover::after { opacity: 1; }
.av3-target-icon  { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.av3-target-title { font-size: 1.12rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.6rem; }
.av3-target-text  { font-size: 0.97rem; color: var(--av3-text); line-height: 1.75; margin-bottom: 1rem; }
.av3-target-list  { list-style: none; padding: 0; margin: 0; }
.av3-target-list li { font-size: 0.9rem; color: var(--av3-text); padding: 0.3rem 0; display: flex; align-items: flex-start; gap: 0.5rem; }
.av3-target-list li::before { content: '→'; color: var(--av3-primary); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   23. STATS / NUMERI
   ============================================================ */
.av3-stats-grid,
.av3-numbers {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.8rem;
}
.av3-stat,
.av3-number-item {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: 16px;
	padding: 2.5rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}
.av3-stat:hover,
.av3-number-item:hover { border-color: var(--av3-primary); box-shadow: 0 12px 32px rgba(232, 64, 14, 0.08); }
.av3-stat-num,
.av3-number-val {
	font-size: 3rem;
	font-weight: 800;
	color: var(--av3-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}
.av3-number-val { color: var(--av3-heading); }
.av3-stat-num span,
.av3-number-val span { color: var(--av3-primary); }
.av3-stat-label,
.av3-number-label { font-size: 0.95rem; color: var(--av3-text); font-weight: 500; line-height: 1.5; }

/* ============================================================
   24. TIMELINE
   ============================================================ */
.av3-timeline {
	max-width: 780px;
	margin: 3rem auto 0;
	position: relative;
}
.av3-timeline::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 0; bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, var(--av3-primary), var(--av3-accent));
}
.av3-timeline-item {
	display: flex;
	gap: 2rem;
	margin-bottom: 2.5rem;
	position: relative;
}
.av3-timeline-dot {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #ffffff;
	border: 3px solid var(--av3-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--av3-primary);
	flex-shrink: 0;
	z-index: 1;
	position: relative;
}
.av3-timeline-content,
.av3-timeline-body {
	flex: 1;
	background: #ffffff;
	border: 1px solid var(--av3-border);
	border-radius: 14px;
	padding: 1.8rem;
	margin-top: 0.5rem;
	transition: all 0.3s ease;
}
.av3-timeline-content:hover,
.av3-timeline-body:hover {
	border-color: var(--av3-primary);
	box-shadow: 0 8px 24px rgba(232, 64, 14, 0.08);
}
.av3-timeline-week  { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--av3-primary); margin-bottom: 0.4rem; }
.av3-timeline-title { font-size: 1.1rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.5rem; }
.av3-timeline-text  { font-size: 0.97rem; color: var(--av3-text); line-height: 1.75; }

/* ============================================================
   25. ROI CALCULATOR
   ============================================================ */
.av3-roi {
	background: #ffffff;
	border: 1px solid var(--av3-border);
	border-radius: var(--av3-radius);
	padding: 2.5rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.av3-roi-title { font-size: 1.2rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.7rem; }
.av3-roi-input-group,
.av3-roi-group { margin-bottom: 1.5rem; }
.av3-roi-label,
.av3-roi-lbl { font-size: 0.85rem; font-weight: 600; color: var(--av3-text); margin-bottom: 0.5rem; display: block; }
.av3-roi-slider {
	width: 100%;
	-webkit-appearance: none;
	height: 6px;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--av3-primary) 0%, var(--av3-border) 0%);
	outline: none;
	cursor: pointer;
	margin-bottom: 0.4rem;
}
.av3-roi-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--av3-primary);
	cursor: pointer;
	border: 3px solid white;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.av3-roi-value-display,
.av3-roi-val { font-size: 1.1rem; font-weight: 700; color: var(--av3-heading); text-align: right; }
.av3-roi-result {
	background: linear-gradient(135deg, var(--av3-heading) 0%, #1e3a5f 100%);
	border-radius: 14px;
	padding: 1.8rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.av3-roi-metric { text-align: center; }
.av3-roi-metric-val {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 0.3rem;
}
.av3-roi-metric-val span { color: #fca58c; }
.av3-roi-metric-label,
.av3-roi-metric-lbl { font-size: 0.82rem; color: #94a3b8; }
.av3-roi-disclaimer,
.av3-roi-note { font-size: 0.78rem; color: var(--av3-text-light); margin-top: 1rem; line-height: 1.6; }

/* ============================================================
   26. COMPARISON TABLE (con grid)
   ============================================================ */
.av3-cmp-table {
	border: 1px solid var(--av3-border);
	border-radius: 14px;
	overflow: hidden;
	max-width: 900px;
	margin: 2rem auto 0;
}
.av3-cmp-head {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1.5fr;
	background: var(--av3-heading);
	padding: 1rem 1.2rem;
	gap: 1rem;
}
.av3-cmp-head-cell,
.av3-cmp-hcell {
	padding: 1rem 1.2rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}
.av3-cmp-hl { color: #fca58c !important; }
.av3-cmp-hcell:nth-child(3) { text-align: center; color: #fca58c; }
.av3-cmp-hcell:nth-child(2) { text-align: center; }

.av3-cmp-row {
	display: grid;
	grid-template-columns: 2fr 1.5fr 1.5fr;
	border-bottom: 1px solid var(--av3-border);
	padding: 0.95rem 1.5rem;
	gap: 1rem;
	align-items: center;
	transition: background 0.2s;
}
.av3-cmp-row:last-child { border-bottom: none; }
.av3-cmp-row:nth-child(even) { background: var(--av3-bg-light); }
.av3-cmp-row:hover { background: var(--av3-bg-blue); }
.av3-cmp-row-key { background: #fff8f6 !important; }

.av3-cmp-feat {
	padding: 1rem 1.2rem;
	font-size: 0.95rem;
	color: var(--av3-heading);
	display: flex;
	align-items: center;
	border-right: 1px solid var(--av3-border);
}
.av3-cmp-cell {
	padding: 1rem 1.2rem;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	border-right: 1px solid var(--av3-border);
	text-align: center;
}
.av3-cmp-cell:last-child { border-right: none; }
.av3-cmp-check,
.av3-yes  { color: #16a34a; font-weight: 700; font-size: 1rem; }
.av3-cmp-none,
.av3-no   { color: var(--av3-text-light); font-size: 1rem; }
.av3-part { color: var(--av3-amber); font-size: 0.82rem; font-weight: 600; }

/* HTML table (fatturazioni) */
.av3-table-wrapper { overflow-x: auto; margin-top: 2.5rem; }
.av3-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--av3-bg-white);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--av3-border);
	font-size: 1rem;
}
.av3-table thead { background: var(--av3-bg-light); }
.av3-table th {
	padding: 1.2rem 1.5rem;
	font-size: 1rem;
	font-weight: 700;
	text-align: left;
	color: var(--av3-heading);
}
.av3-table th:nth-child(2) { background: linear-gradient(135deg, #f0fdf4, #f7fef5); color: #16a34a; text-align: center; }
.av3-table th:nth-child(3) { background: var(--av3-bg-blue); color: var(--av3-accent); text-align: center; }
.av3-table td { padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--av3-border); color: var(--av3-text); }
.av3-table tbody tr:nth-child(even) td { background: rgba(248, 250, 252, 0.5); }
.av3-table tbody tr:last-child td { border-bottom: none; }
.av3-table td:nth-child(2), .av3-table td:nth-child(3) { text-align: center; font-weight: 600; }
.av3-table td:nth-child(2) { color: #16a34a; }
.av3-table td:nth-child(3) { color: var(--av3-accent); }

/* Confronto dettaglio */
.av3-compare {
	border: 1px solid var(--av3-border);
	border-radius: 16px;
	overflow: hidden;
}
.av3-compare-head {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	background: var(--av3-heading);
	padding: 1.2rem 1.5rem;
	gap: 1rem;
}
.av3-compare-head-cell { font-size: 0.85rem; font-weight: 700; color: white; text-align: center; }
.av3-compare-head-cell:first-child { text-align: left; color: #94a3b8; }
.av3-compare-head-cell.highlight { color: #fca58c; }
.av3-compare-row.grid3 { grid-template-columns: 1.5fr 1fr 1fr; }
.av3-compare-feature { font-size: 0.97rem; color: var(--av3-heading); font-weight: 500; }
.av3-compare-cell { text-align: center; font-size: 0.95rem; }
.av3-check { color: var(--av3-green); font-size: 1.1rem; font-weight: 700; }
.av3-cross { color: #dc2626; font-size: 1.1rem; }

/* ============================================================
   27. TESTIMONIANZE
   ============================================================ */
.av3-testimonials,
.av3-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}
.av3-testimonial {
	background: #ffffff;
	border: 1px solid var(--av3-border);
	border-radius: 16px;
	padding: 2rem;
	position: relative;
	transition: all 0.3s ease;
}
.av3-testimonial:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.09); border-color: transparent; }
.av3-testimonial::before {
	content: '"';
	font-size: 5rem;
	color: var(--av3-primary);
	opacity: 0.14;
	position: absolute;
	top: 0.5rem;
	left: 1.5rem;
	line-height: 1;
	font-family: Georgia, serif;
}
.av3-testimonial-stars  { color: #f59e0b; font-size: 0.85rem; margin-bottom: 0.5rem; }
.av3-testimonial-text   { font-size: 0.97rem; color: var(--av3-text); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; position: relative; }
.av3-testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.av3-testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--av3-primary), var(--av3-accent));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #ffffff;
	font-size: 1rem;
	flex-shrink: 0;
}
.av3-testimonial-name { font-size: 0.95rem; font-weight: 700; color: var(--av3-heading); }
.av3-testimonial-role { font-size: 0.82rem; color: var(--av3-text-light); }

/* ============================================================
   28. SUPPORT CARDS
   ============================================================ */
.av3-support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.av3-support-card {
	background: #ffffff;
	border: 1px solid var(--av3-border);
	border-radius: 16px;
	padding: 2rem;
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	transition: all 0.3s ease;
}
.av3-support-card:hover { border-color: var(--av3-accent); box-shadow: 0 12px 32px rgba(21,101,192,0.1); transform: translateY(-4px); }
.av3-support-icon {
	width: 56px; height: 56px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--av3-bg-blue), #d8edff);
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.av3-support-icon svg { width: 28px; height: 28px; color: var(--av3-accent); }
.av3-support-title { font-size: 1.08rem; font-weight: 700; color: var(--av3-heading); margin-bottom: 0.5rem; }
.av3-support-text  { font-size: 0.95rem; color: var(--av3-text); line-height: 1.75; }
.av3-support-badge {
	display: inline-block;
	margin-top: 0.7rem;
	background: var(--av3-bg-blue);
	color: var(--av3-accent);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.3rem 0.75rem;
	border-radius: 100px;
}

/* ============================================================
   29. MODULES (piattaforma)
   ============================================================ */
.av3-modules-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 3rem;
}
.av3-module-card {
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	border-radius: var(--av3-radius);
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}
.av3-module-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.09); }
.av3-module-title { font-size: 1.3rem; font-weight: 800; color: var(--av3-accent); margin-bottom: 1rem; }
.av3-module-text  { font-size: 1rem; color: var(--av3-text); line-height: 1.7; margin-bottom: 1.8rem; flex: 1; }
.av3-module-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--av3-accent);
	color: #ffffff;
	padding: 0.85rem 1.7rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
}
.av3-module-btn:hover { background: #1455a0; transform: translateY(-2px); }

/* ============================================================
   30. SETUP INCLUDED BOX (piattaforma)
   ============================================================ */
.av3-setup-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
	margin-top: 3rem;
}
.av3-included-box {
	background: var(--av3-bg-soft);
	border: 1px solid var(--av3-border);
	border-radius: var(--av3-radius);
	padding: 2.5rem;
}
.av3-included-item {
	display: flex;
	align-items: center;
	padding: 0.9rem 1rem;
	border-radius: var(--av3-radius-sm);
	margin-bottom: 0.7rem;
	background: var(--av3-bg-white);
	border: 1px solid var(--av3-border);
	font-size: 1rem;
	font-weight: 600;
	color: var(--av3-heading);
	gap: 0.8rem;
}
.av3-included-item::before { content: '✓'; flex-shrink: 0; color: var(--av3-primary); font-weight: 700; }
.av3-included-note { margin-top: 1rem; font-size: 0.9rem; color: var(--av3-text-light); line-height: 1.65; }

/* ============================================================
   31. FAQ SECTION
   ============================================================ */
.av3-faq,
.av3-faq-wrapper {
	max-width: 900px;
	margin: 0 auto;
}
.av3-faq-item {
	border-bottom: 1px solid var(--av3-border);
}

/* Bottone FAQ — .av3-faq-button (cfdigitale) e .av3-faq-btn (altri) unificati */
.av3-faq-button,
.av3-faq-btn {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 1.5rem 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--av3-heading);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: color 0.2s ease;
	font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
}
.av3-faq-button:hover,
.av3-faq-btn:hover { color: var(--av3-primary); }

/* Icona / chevron */
.av3-faq-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	transition: transform 0.25s ease;
	font-weight: 300;
	line-height: 1;
}
.av3-faq-chevron {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	background: var(--av3-bg-soft);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	transition: all 0.25s ease;
	color: var(--av3-text);
}
.av3-faq-item.open .av3-faq-icon    { transform: rotate(45deg); }
.av3-faq-item.open .av3-faq-chevron { transform: rotate(180deg); background: var(--av3-primary); color: #ffffff; }

.av3-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.av3-faq-item.open .av3-faq-answer { max-height: 400px; }

.av3-faq-content,
.av3-faq-inner {
	padding: 0 0 1.6rem;
	font-size: 0.97rem;
	color: var(--av3-text);
	line-height: 1.9;
}

/* ============================================================
   32. ESEMPIO REALE / SCREENSHOT
   ============================================================ */
.av3-example-section { border-bottom: 1px solid var(--av3-border); }
.av3-example-header  { text-align: center; margin-bottom: 3rem; }
.av3-example-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #f0fdf4;
	border: 1px solid #86efac;
	color: #166534;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.45rem 1.1rem;
	border-radius: 100px;
	margin-bottom: 1.2rem;
}

/* Browser mockup */
.av3-screenshot-wrap    { position: relative; }
.av3-screenshot-main    { text-align: center; }
.av3-screenshot-browser {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--av3-border);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.av3-browser-bar {
	background: #f1f5f9;
	border-bottom: 1px solid var(--av3-border);
	padding: 0.7rem 1rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}
.av3-browser-dots { display: flex; gap: 0.4rem; }
.av3-browser-dots span { width: 12px; height: 12px; border-radius: 50%; background: #cbd5e1; }
.av3-browser-dots span:nth-child(1) { background: #fc5c65; }
.av3-browser-dots span:nth-child(2) { background: #fed330; }
.av3-browser-dots span:nth-child(3) { background: #26de81; }
.av3-browser-url {
	flex: 1;
	background: #ffffff;
	border: 1px solid var(--av3-border);
	border-radius: 6px;
	padding: 0.3rem 0.8rem;
	font-size: 0.8rem;
	color: var(--av3-text);
	text-align: center;
}
.av3-screenshot-img { display: block; width: 100%; height: auto; }
.av3-placeholder-img {
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}
.av3-placeholder-img::before {
	content: attr(data-placeholder);
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	font-size: 0.9rem;
	font-weight: 600;
	color: #94a3b8;
	text-align: center;
	padding: 1rem;
	border: 2px dashed #cbd5e1;
	border-radius: 8px;
	white-space: pre-wrap;
	max-width: 320px;
}
.av3-placeholder-img[src=""] { color: transparent; font-size: 0; }
.av3-example-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--av3-accent);
	text-decoration: none;
}
.av3-example-link:hover { text-decoration: underline; }
.av3-screenshot-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 2.5rem;
}
.av3-screenshot-item .av3-placeholder-img { min-height: 220px; border-radius: 12px; }
.av3-screenshot-caption {
	margin-top: 0.7rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--av3-text-light);
	text-align: center;
}

/* ============================================================
   33. CTA SECTION
   ============================================================ */

/* ── VARIANTE CHIARA (cfdigitale, fatturazioni) — default ── */
.av3-cta-section,
.av3-cta {
	background: linear-gradient(160deg, #fdf4f0 0%, #fef9f5 50%, #f0f7ff 100%);
	padding: 80px 5%;
	border-top: 1px solid var(--av3-border);
	text-align: center;
}
.av3-cta-wrapper,
.av3-cta-inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}
.av3-cta-quote {
	font-size: 1.15rem;
	color: var(--av3-text-light);
	font-style: italic;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}
.av3-cta-lead {
	font-size: 1.08rem;
	color: var(--av3-text);
	line-height: 1.85;
	margin-bottom: 2rem;
}
.av3-cta-buttons,
.av3-cta-actions {
	display: flex;
	gap: 1.2rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
}
.av3-cta-note {
	margin-top: 1.6rem;
	font-size: 0.95rem;
	color: var(--av3-text-light);
	letter-spacing: 0.05em;
}

/* ── VARIANTE SCURA (piattaforma)
      Aggiungere classe "av3-cta-dark" alla div .av3-cta ── */
.av3-cta-dark {
	background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 60%, #0f172a 100%);
	border-top: none;
	position: relative;
	overflow: hidden;
}
.av3-cta-dark::before {
	content: '';
	position: absolute;
	top: -20%; right: -5%;
	width: 500px; height: 500px;
	background: radial-gradient(ellipse, rgba(232,64,14,.12) 0%, transparent 70%);
	pointer-events: none;
}
.av3-cta-dark .av3-cta-inner { position: relative; z-index: 1; }
.av3-cta-dark .av3-heading-h2,
.av3-cta-dark .av3-h2,
.av3-cta-dark h2  { color: #f1f5f9; }
.av3-cta-dark .av3-lead { color: #94a3b8; }
.av3-cta-dark .av3-tag  { color: #fca58c; }
.av3-cta-dark .av3-tag::before { background: #fca58c; }
.av3-cta-dark .av3-cta-quote { color: #64748b; }
.av3-cta-dark .av3-cta-note  { color: #64748b; }

/* Bottoni CTA specifici piattaforma */
.av3-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--av3-primary);
	color: #ffffff;
	padding: 1rem 2.2rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	transition: all 0.3s ease;
}
.av3-cta-btn-primary:hover { background: var(--av3-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(232,64,14,.35); }
.av3-cta-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255,255,255,.07);
	color: #cbd5e1;
	padding: 1rem 2.2rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border: 1px solid rgba(255,255,255,.15);
	transition: all 0.2s ease;
}
.av3-cta-btn-secondary:hover { background: rgba(255,255,255,.13); color: #ffffff; border-color: rgba(255,255,255,.3); }

/* ============================================================
   34. BRAND SECTION
   ============================================================ */
.av3-brand-section {
	background: var(--av3-bg-light);
	padding: 60px 5%;
	text-align: center;
	border-top: 1px solid var(--av3-border);
}
.av3-brand-label {
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--av3-text-light);
	margin-bottom: 2rem;
}
.av3-brand-grid {
	display: grid;
	grid-template-columns: repeat(9, 1fr);
	gap: 2rem;
	max-width: 1280px;
	margin: 0 auto;
	align-items: center;
}
.av3-brand-item {
	display: flex;
	align-items: center;
	justify-content: center;
}
.av3-brand-item img {
	max-width: 100%;
	height: auto;
	max-height: 50px;
	object-fit: contain;
	opacity: 0.68;
	transition: all 0.2s ease;
	filter: grayscale(30%);
}
.av3-brand-item:hover img { opacity: 1; filter: none; }

/* ============================================================
   35. RESPONSIVE
   ============================================================ */
/* Griglia interna included-box (canone mensile) */
.av3-included-box [style*="grid-template-columns:repeat(4"] {
	display: grid;
}

@media (max-width: 1024px) {
	.av3-included-box [style*="grid-template-columns:repeat(4"] {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}
@media (max-width: 600px) {
	.av3-included-box [style*="grid-template-columns:repeat(4"] {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 1024px) {
	/* Layout 2 colonne → 1 colonna */
	.av3-2col,
	.av3-wl-grid,
	.av3-advantage,
	.av3-whitey-label-grid,
	.av3-savings-grid,
	.av3-compare-grid,
	.av3-problem-grid,
	.av3-ps-grid,
	.av3-setup-grid,
	.av3-modules-grid,
	.av3-support-grid { grid-template-columns: 1fr; gap: 2.5rem; }

	/* Grid 4 → 2 */
	.av3-steps-grid,
	.av3-compliance-grid,
	.av3-stats-grid,
	.av3-numbers { grid-template-columns: repeat(2, 1fr); }

	/* Grid 3 → 2 */
	.av3-grid,
	.av3-features-grid,
	.av3-features,
	.av3-process-grid,
	.av3-getting-steps,
	.av3-target-grid,
	.av3-testimonials,
	.av3-testimonials-grid,
	.av3-security-grid,
	.av3-garanzie-grid { grid-template-columns: repeat(2, 1fr); }

	/* Step connettori */
	.av3-step:not(:last-child)::after { display: none; }
	.av3-steps { grid-template-columns: repeat(2, 1fr); }

	/* Trust cards */
	.av3-trust-cards { grid-template-columns: repeat(3, 1fr); }

	/* Brand */
	.av3-brand-grid { grid-template-columns: repeat(5, 1fr); }

	/* Flow diagram */
	.av3-flow-diagram,
	.av3-flow { flex-direction: column; align-items: center; }
	.av3-flow-arrow { transform: rotate(90deg); min-height: 70px; }
}

@media (max-width: 768px) {
	/* Sezioni */
	.av3-section,
	.av3-sec { padding: 55px 5%; }

	/* Hero */
	.av3-hero { padding: 65px 5%; }
	.av3-hero-stats { gap: 1.5rem; }

	/* Grid tutto a 1 colonna */
	.av3-grid,
	.av3-grid.av3col2,
	.av3-grid.av3col4,
	.av3-features-grid,
	.av3-features,
	.av3-process-grid,
	.av3-getting-steps,
	.av3-steps-grid,
	.av3-steps,
	.av3-compliance-grid,
	.av3-target-grid,
	.av3-testimonials,
	.av3-testimonials-grid,
	.av3-security-grid,
	.av3-garanzie-grid,
	.av3-stats-grid,
	.av3-numbers { grid-template-columns: 1fr; }

	/* Trust */
	.av3-trust-cards { grid-template-columns: repeat(2, 1fr); }

	/* Strip */
	.av3-strip { gap: 1rem; flex-direction: column; }
	.av3-trust { flex-direction: column; gap: 1rem; }

	/* CTA buttons */
	.av3-cta-buttons,
	.av3-cta-actions { flex-direction: column; align-items: center; }
	.av3-btn,
	.av3-btn-primary,
	.av3-cta-primary { width: 100%; justify-content: center; }

	/* Brand */
	.av3-brand-grid { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

	/* Compare */
	.av3-compare-grid { grid-template-columns: 1fr; }
	.av3-cmp-head,
	.av3-cmp-row { grid-template-columns: 1.2fr 0.9fr 1fr; padding: 0.9rem 1rem; gap: 0.5rem; }

	/* ROI */
	.av3-roi-result { grid-template-columns: 1fr 1fr; }
	.av3-hero-title { font-size: clamp(1.5rem, 3vw, 2.2rem); }
}

@media (max-width: 480px) {
	.av3-trust-cards { grid-template-columns: 1fr 1fr; }
	.av3-brand-grid  { grid-template-columns: repeat(2, 1fr); }
	.av3-screenshot-grid { grid-template-columns: 1fr; }
	.av3-flow-arrow::before { content: '↓'; }
}