/* =========================================================
   STILI SPECIFICI · HOME
   ========================================================= */
.home-hero {
	padding: 64px 0 88px;
}
.home-hero__grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: start;
}
.home-hero__seal {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 32px;
}
.home-hero__seal-mark {
	width: 38px; height: 38px;
	border: 1px solid var(--oro);
	border-radius: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--serif);
	font-style: italic;
	color: var(--oro);
	font-size: 22px;
	position: relative;
}
.home-hero__seal-mark::before {
	content: '';
	position: absolute;
	inset: 3px;
	border: 0.5px solid var(--oro);
	opacity: 0.5;
}
.home-hero__seal-text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}
.home-hero__seal-text .t1 {
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--oro);
}
.home-hero__seal-text .t2 {
	font-size: 10.5px;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mute);
}
.home-hero h1 {
	font-family: var(--serif);
	font-weight: 700;
	font-size: clamp(36px, 4.4vw, 56px);
	line-height: 1.05;
	letter-spacing: -0.018em;
	color: var(--blu);
	margin: 0 0 28px;
	text-wrap: balance;
}
.home-hero__sub {
	font-size: 18px;
	line-height: 1.6;
	color: var(--ink);
	margin: 0 0 36px;
	max-width: 56ch;
}
.home-hero__cta-group {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 28px;
}
.home-hero__note {
	font-size: 13.5px;
	color: var(--mute);
	line-height: 1.5;
	margin: 0;
}
.home-hero__note .sep {
	margin: 0 8px;
	color: var(--oro);
}

/* Sezione adempimenti */
.home-sect {
	padding: 80px 0;
	border-top: 1px solid var(--rule);
}
.home-sect__head {
	text-align: center;
	margin-bottom: 48px;
}
.home-sect__head .supra {
	margin-bottom: 14px;
}
.home-sect__head h2 {
	font-family: var(--serif);
	font-weight: 700;
	font-size: clamp(28px, 3vw, 38px);
	letter-spacing: -0.012em;
	color: var(--blu);
	margin: 0 0 16px;
	text-wrap: balance;
}
.home-sect__head p {
	font-size: 16px;
	color: var(--mute);
	max-width: 60ch;
	margin: 0 auto;
	line-height: 1.6;
}

.home-sect__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.home-sect__cta {
	text-align: center;
	margin-top: 40px;
}

/* Sezione "perché noi" - 3 colonne con § iniziali */
.home-why {
	padding: 80px 0;
	border-top: 1px solid var(--rule);
	background: var(--white);
}
.home-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
}
.home-why__item {
	position: relative;
}
.home-why__item .mark {
	font-family: var(--serif);
	font-style: italic;
	font-size: 38px;
	color: var(--oro);
	line-height: 1;
	margin-bottom: 16px;
	display: block;
}
.home-why__item h3 {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: 600;
	color: var(--blu);
	margin: 0 0 10px;
	letter-spacing: -0.005em;
}
.home-why__item p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--ink);
	margin: 0;
}

/* Process - come funziona */
.home-process {
	padding: 80px 0;
	background: var(--paper-2);
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
}
.home-process__head {
	margin-bottom: 48px;
	text-align: center;
}
.home-process__head h2 {
	font-family: var(--serif);
	font-weight: 700;
	font-size: clamp(26px, 2.6vw, 32px);
	color: var(--blu);
	margin: 16px 0 0;
	letter-spacing: -0.012em;
}
.home-process__steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	position: relative;
}
.home-process__step {
	background: var(--white);
	border: 1px solid var(--rule);
	border-radius: 4px;
	padding: 28px;
	position: relative;
}
.home-process__step .num {
	font-family: var(--serif);
	font-style: italic;
	font-size: 16px;
	color: var(--oro);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	margin-bottom: 8px;
	display: block;
}
.home-process__step h3 {
	font-family: var(--serif);
	font-size: 19px;
	font-weight: 600;
	color: var(--blu);
	margin: 0 0 8px;
	letter-spacing: -0.005em;
}
.home-process__step p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--mute);
	margin: 0;
}

@media (max-width: 1024px) {
	.home-sect__grid { grid-template-columns: repeat(2, 1fr); }
	.home-why__grid { gap: 32px; }
}
@media (max-width: 860px) {
	.home-hero { padding: 40px 0 56px; }
	.home-hero__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.home-sect, .home-why, .home-process { padding: 56px 0; }
	.home-why__grid { grid-template-columns: 1fr; gap: 36px; }
	.home-process__steps { grid-template-columns: 1fr; gap: 14px; }
}
@media (max-width: 600px) {
	.home-hero__cta-group { flex-direction: column; align-items: stretch; }
	.home-hero__cta-group .btn { justify-content: center; }
	.home-sect__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}
