
	:root {
		--ink: #0b1410;
		--pine: #0f2b21;
		--pine-light: #17402f;
		--emerald: #1f7a52;
		--signal: #2fcf8e;
		--signal-dim: #23a374;
		--paper: #f6f8f5;
		--mist: #e7efe9;
		--text-muted: #5c6b62;
		--border: #dde6df;
		--font-display: 'Manrope', sans-serif;
		--font-body: 'Inter', sans-serif;
		--container: 1180px;
	}
	* { box-sizing: border-box; }
	html { scroll-behavior: smooth; }
	body {
		margin: 0;
		font-family: var(--font-body);
		color: var(--ink);
		background: var(--paper);
		line-height: 1.6;
		-webkit-font-smoothing: antialiased;
		overflow-x: hidden;
	}
	img { max-width: 100%; display: block; }
	a { color: inherit; text-decoration: none; }
	ul { margin: 0; padding: 0; list-style: none; }
	h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 18px; letter-spacing: -0.01em; }
	p { margin: 0 0 16px; }
	.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
	.notice {
		background: #fff3cd;
		color: #6b5600;
		text-align: center;
		font-size: 13.5px;
		padding: 10px 16px;
		font-family: var(--font-body);
	}

	/* ---------- Pulsante menu circolare ---------- */
	.lang-switch {
		position: fixed;
		top: 28px; right: 104px;
		z-index: 60;
		display: flex; gap: 6px;
		background: var(--ink);
		padding: 6px;
		border-radius: 100px;
		box-shadow: 0 10px 26px rgba(11,20,16,0.28);
	}
	.lang-flag {
		width: 38px; height: 38px;
		border-radius: 50%;
		border: none;
		background: transparent;
		font-size: 16px;
		display: flex; align-items: center; justify-content: center;
		cursor: pointer;
		opacity: 0.5;
		transition: all 0.25s ease;
	}
	.lang-flag.active { opacity: 1; background: rgba(255,255,255,0.14); }
	.lang-flag:hover { opacity: 1; }

	.menu-btn {
		position: fixed;
		top: 28px; right: 28px;
		width: 62px; height: 62px;
		border-radius: 50%;
		background: var(--ink);
		border: none;
		cursor: pointer;
		z-index: 60;
		display: flex; align-items: center; justify-content: center;
		box-shadow: 0 10px 26px rgba(11,20,16,0.28);
	}
	.menu-btn .bars { position: relative; width: 22px; height: 16px; }
	.menu-btn .bars span {
		position: absolute; left: 0; width: 100%; height: 2px;
		background: var(--paper);
		transition: transform 0.35s ease, opacity 0.25s ease, top 0.35s ease;
	}
	.menu-btn .bars span:nth-child(1) { top: 0; }
	.menu-btn .bars span:nth-child(2) { top: 7px; }
	.menu-btn .bars span:nth-child(3) { top: 14px; }
	body.menu-open .menu-btn .bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
	body.menu-open .menu-btn .bars span:nth-child(2) { opacity: 0; }
	body.menu-open .menu-btn .bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

	/* ---------- Il cerchio che si espande ---------- */
	.menu-reveal {
		position: fixed;
		top: 28px; right: 28px;
		width: 62px; height: 62px;
		border-radius: 50%;
		background: var(--signal);
		transform: scale(1);
		transform-origin: center;
		z-index: 55;
		transition: transform 0.85s cubic-bezier(0.65, 0, 0.35, 1);
		pointer-events: none;
	}
	body.menu-open .menu-reveal { transform: scale(70); }

	/* ---------- Overlay del menu ---------- */
	.menu-overlay {
		position: fixed; inset: 0;
		z-index: 58;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.4s ease 0.35s;
		display: flex;
		align-items: center;
	}
	body.menu-open .menu-overlay { opacity: 1; pointer-events: auto; }
	.menu-overlay nav { width: 100%; }
	.menu-overlay .container { display: flex; flex-direction: column; gap: 40px; }
	.menu-overlay ul { display: flex; flex-direction: column; gap: 8px; }
	.menu-overlay li a {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(34px, 6vw, 64px);
		color: var(--ink);
		display: inline-block;
		transition: color 0.25s ease, transform 0.25s ease;
	}
	.menu-overlay li a:hover { color: var(--emerald); transform: translateX(10px); }
	.menu-overlay .menu-brands {
		display: flex; gap: 40px; flex-wrap: wrap;
		border-top: 1px solid var(--border);
		padding-top: 28px;
	}
	.menu-overlay .menu-brands a {
		display: block;
		transition: transform 0.25s ease;
	}
	.menu-overlay .menu-brands a:hover { transform: translateY(-2px); }
	.menu-overlay .menu-brands a:hover strong { color: var(--emerald); }
	.menu-overlay .menu-brands a strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; transition: color 0.2s ease; }
	.menu-overlay .menu-brands a span { font-size: 13.5px; color: var(--text-muted); }

	/* ---------- Hero ---------- */
	.hero {
		position: relative;
		min-height: 100vh;
		display: flex;
		align-items: center;
		background: var(--ink);
		overflow: hidden;
	}
	.hero-bg {
		position: absolute; inset: 0;
		background-image: url('../images/hero-bg.jpg');
		background-size: cover;
		background-position: center;
		animation: heroZoom 14s ease-in-out infinite alternate;
	}
	.hero-overlay {
		position: absolute; inset: 0;
		background: linear-gradient(115deg, rgba(11,20,16,0.92) 0%, rgba(11,20,16,0.78) 40%, rgba(15,43,33,0.55) 75%, rgba(15,43,33,0.35) 100%);
	}
	@keyframes heroZoom {
		0% { transform: scale(1) translate(0, 0); }
		100% { transform: scale(1.18) translate(-1.5%, -1%); }
	}
	@media (prefers-reduced-motion: reduce) {
		.hero-bg { animation: none; }
	}
	.hero .container { position: relative; z-index: 2; padding-top: 60px; }
	.hero-content { max-width: 680px; }
	.hero-eyebrow { color: var(--signal); font-size: 15px; font-weight: 600; margin-bottom: 18px; }
	.hero h1 {
		color: #fff;
		font-size: clamp(38px, 5.6vw, 64px);
		font-weight: 800;
	}
	.hero p.lead {
		color: rgba(246,248,245,0.82);
		font-size: 19px;
		max-width: 520px;
		margin-bottom: 12px;
	}
	.hero p.lead-emphasis {
		color: #fff;
		font-size: 23px;
		font-weight: 700;
		font-family: var(--font-display);
		max-width: 520px;
		margin-bottom: 36px;
	}
	.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
	.consent-check {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		font-size: 13px;
		color: var(--text-muted);
		line-height: 1.5;
		cursor: pointer;
		margin-top: 4px;
	}
	.consent-check input[type="checkbox"] {
		margin-top: 3px;
		width: 16px; height: 16px;
		flex: none;
		accent-color: var(--signal);
	}
	.consent-check a { color: var(--ink); text-decoration: underline; font-weight: 600; }
	.form-notice { padding: 13px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 4px; }
	.form-notice.ok { background: #e4f6ec; color: #157a4d; }
	.form-notice.error { background: #fdecea; color: #b3311c; }
	.btn {
		display: inline-flex; align-items: center; gap: 8px;
		padding: 16px 30px;
		border-radius: 10px;
		font-family: var(--font-display);
		font-weight: 700;
		font-size: 15px;
		transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
		border: 2px solid transparent;
	}
	.btn-primary { background: var(--signal); color: var(--ink); }
	.btn-primary:hover { background: #fff; transform: translateY(-2px); }
	.btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; }
	.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }



	/* ---------- Servizi ---------- */
	/* ---------- Problema / Soluzione (racconto a due tempi) ---------- */
	.narrative { padding: 110px 0; }
	.narrative-inner { max-width: 640px; }
	.narrative.problema { background: var(--pine); color: rgba(246,248,245,0.88); }
	.narrative.problema h2 { color: var(--signal); font-size: clamp(26px, 3.4vw, 36px); }
	.narrative.problema p { font-size: 17px; color: rgba(246,248,245,0.82); }
	.narrative.soluzione { background: #fff; }
	.narrative.soluzione h2 { color: var(--ink); font-size: clamp(26px, 3.4vw, 36px); }
	.narrative.soluzione p { font-size: 17px; color: var(--text-muted); }

	/* ---------- Vantaggi ---------- */
	.advantages { padding: 110px 0; background: var(--mist); }
	.advantages-head { max-width: 640px; margin-bottom: 56px; }
	.advantages-head h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--ink); }
	.advantages-list { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
	.advantage-item { display: flex; gap: 16px; align-items: flex-start; }
	.advantage-item .tick {
		width: 26px; height: 26px; flex: none; margin-top: 2px;
		border-radius: 50%;
		background: var(--signal);
		display: flex; align-items: center; justify-content: center;
	}
	.advantage-item .tick svg { width: 13px; height: 13px; stroke: var(--ink); stroke-width: 3; }
	.advantage-item strong { display: block; font-size: 16.5px; color: var(--ink); margin-bottom: 4px; }
	.advantage-item span { font-size: 15px; color: var(--text-muted); }

	/* ---------- Prove sociali / FAQ ---------- */
	.faq { padding: 110px 0; background: #fff; }
	.faq-head { max-width: 640px; margin-bottom: 50px; }
	.faq-head h2 { font-size: clamp(26px, 3.4vw, 36px); color: var(--ink); }
	.faq-head p { font-size: 16px; color: var(--text-muted); }
	.faq-list { max-width: 760px; }
	.faq-item { border-bottom: 1px solid var(--border); }
	.faq-item summary {
		padding: 22px 4px;
		font-family: var(--font-display);
		font-weight: 700;
		font-size: 17px;
		color: var(--ink);
		cursor: pointer;
		list-style: none;
		display: flex; align-items: center; justify-content: space-between;
		gap: 20px;
	}
	.faq-item summary::-webkit-details-marker { display: none; }
	.faq-item summary::after {
		content: '+';
		font-size: 24px;
		color: var(--emerald);
		flex: none;
		transition: transform 0.25s ease;
	}
	.faq-item[open] summary::after { transform: rotate(45deg); }
	.faq-item p { padding: 0 4px 22px; color: var(--text-muted); font-size: 15.5px; max-width: 620px; }

	.services { padding: 130px 0; background: var(--paper); }
	.services-head { max-width: 640px; margin-bottom: 70px; }
	.services-head h2 { font-size: clamp(28px, 3.6vw, 40px); color: var(--ink); }
	.services-head p { color: var(--text-muted); font-size: 17px; }
	.services-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}
	.service-box {
		background: #fff;
		border: 1px solid var(--border);
		border-radius: 16px;
		padding: 40px 32px;
		transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	}
	.service-box:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(11,20,16,0.10); border-color: transparent; }
	.service-box .mark {
		width: 58px; height: 58px;
		border-radius: 50%;
		background: linear-gradient(155deg, var(--emerald) 0%, var(--pine) 100%);
		display: flex; align-items: center; justify-content: center;
		margin-bottom: 26px;
	}
	.service-box .mark svg { width: 26px; height: 26px; stroke: #fff; }
	.service-box .service-logo { height: 42px; width: auto; max-width: 100%; margin-bottom: 26px; display: block; }

	.site-logo { position: fixed; top: 22px; left: 28px; z-index: 60; }
	.site-logo img {
		height: 92px; width: auto; display: block;
		filter: drop-shadow(0 0 2px rgba(255,255,255,0.9)) drop-shadow(0 0 9px rgba(255,255,255,0.6));
	}
	.service-box h3 { font-size: 21px; color: var(--ink); }
	.service-box p { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }
	.service-box .service-link { font-weight: 600; font-size: 14.5px; color: var(--emerald); border-bottom: 2px solid var(--signal); padding-bottom: 2px; }

	/* ---------- Contatti ---------- */
	.contact { padding: 130px 0; background: var(--mist); }
	.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
	.contact-intro h2 { font-size: clamp(28px, 3.6vw, 40px); color: var(--ink); }
	.contact-intro p { color: var(--text-muted); font-size: 17px; max-width: 420px; }
	.contact-detail { margin-top: 32px; }
	.contact-detail div { margin-bottom: 18px; }
	.contact-detail strong { display: block; font-size: 13.5px; color: var(--text-muted); margin-bottom: 3px; }
	.contact-detail span { font-size: 16px; font-weight: 600; color: var(--ink); }

	.contact-form { background: #fff; border-radius: 16px; padding: 40px; border: 1px solid var(--border); }
	.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
	.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
	.form-group label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
	.form-group input, .form-group textarea, .form-group select {
		border: 1.5px solid var(--border);
		border-radius: 9px;
		padding: 13px 15px;
		font-family: inherit;
		font-size: 15px;
		color: var(--ink);
		background: var(--paper);
		width: 100%;
		max-width: 100%;
	}
	.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: 2px solid var(--signal); outline-offset: 1px; }
	.form-group textarea { min-height: 120px; resize: vertical; }

	.site-footer { background: var(--ink); color: rgba(246,248,245,0.6); padding: 32px 0; font-size: 13.5px; }
	.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
	.footer-privacy-link { color: rgba(246,248,245,0.6); text-decoration: underline; transition: color 0.2s ease; }
	.footer-privacy-link:hover { color: #fff; }

	@media (max-width: 900px) {
		.services-grid { grid-template-columns: 1fr; }
		.contact-grid { grid-template-columns: 1fr; gap: 40px; }
	}
	@media (max-width: 600px) {
		.form-row { grid-template-columns: 1fr; }
		.menu-overlay li a { font-size: 32px; }
		.contact-form { padding: 26px; }
		.menu-btn { top: 18px; right: 18px; width: 52px; height: 52px; }
		.lang-switch { top: 18px; right: 82px; padding: 4px; }
		.lang-flag { width: 32px; height: 32px; font-size: 14px; }
		.site-logo { top: 18px; left: 18px; }
		.site-logo img { height: 60px; }
		.services-head, .advantages-head, .faq-head, .contact-intro { text-align: center; margin-left: auto; margin-right: auto; }
		.contact-intro p { margin-left: auto; margin-right: auto; }
		.contact-detail { display: inline-block; text-align: left; }
	}

/* ---------- Banner cookie ---------- */
.cookie-banner {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 100;
	background: var(--ink);
	box-shadow: 0 -6px 24px rgba(0,0,0,0.25);
	transform: translateY(100%);
	transition: transform 0.5s ease;
	max-height: 40vh;
	overflow-y: auto;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner-inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 20px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 14px; line-height: 1.6; color: rgba(246,248,245,0.82); flex: 1 1 480px; }
.cookie-banner p a { color: var(--signal); text-decoration: underline; font-weight: 600; }
.cookie-banner .btn { flex: 0 0 auto; padding: 12px 24px; font-size: 13.5px; }

@media (max-width: 600px) {
	.cookie-banner-inner { flex-direction: column; align-items: stretch; padding: 16px 20px; gap: 14px; }
	.cookie-banner p { flex: 0 1 auto; }
	.cookie-banner .btn { width: 100%; justify-content: center; }
}

/* ---------- Pagine interne (Chi Siamo, Assistenza IT, Privacy) ---------- */
.page-header {
	padding: 190px 0 90px;
	background: var(--pine);
	color: #fff;
}
.page-header .hero-eyebrow { color: var(--signal); font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.page-header h1 { color: #fff; font-size: clamp(32px, 4.4vw, 50px); max-width: 700px; }
.about-content { padding: 100px 0; background: #fff; }
.about-content .container { max-width: 720px; }
.about-content h2 { font-size: 24px; color: var(--ink); margin-top: 44px; }
.about-content h3 { font-size: 19px; color: var(--ink); margin-top: 32px; }
.about-content p { font-size: 17px; color: var(--text-muted); }
.about-content ul, .about-content ol { margin: 0 0 16px; padding-left: 22px; color: var(--text-muted); font-size: 17px; }
.about-content li { margin-bottom: 8px; }
.about-content a { color: var(--emerald); text-decoration: underline; font-weight: 600; }
.about-content strong { color: var(--ink); }
.about-content blockquote { border-left: 3px solid var(--signal); margin: 24px 0; padding: 4px 0 4px 20px; font-style: italic; color: var(--ink); }
.about-content img { border-radius: 12px; margin: 24px 0; height: auto; }
.about-timeline { margin-top: 20px; display: flex; flex-direction: column; gap: 24px; }
.about-timeline .row { display: flex; gap: 20px; }
.about-timeline .year { font-family: var(--font-display); font-weight: 800; color: var(--emerald); flex: none; width: 70px; }
.about-timeline p { margin: 0; }

/* ---------- Slogan finale, tra contatti e footer ---------- */
.closing-claim { padding: 100px 0 120px; background: var(--paper); text-align: center; }
[data-animate] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
	[data-animate] { opacity: 1; transform: none; transition: none; }
}
.claim-text {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(26px, 4.2vw, 46px);
	line-height: 1.25;
	max-width: 780px;
	margin: 0 auto;
	background: linear-gradient(90deg, var(--emerald) 0%, var(--signal) 25%, var(--emerald) 50%, var(--signal) 75%, var(--emerald) 100%);
	background-size: 250% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: claimShimmer 6s linear infinite;
}
@keyframes claimShimmer {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
	.claim-text { animation: none; background-position: 0% 50%; }
}

/* ---------- Campo anti-spam nascosto (honeypot) ---------- */
.form-honeypot {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	left: 0 !important;
}
