/* HERO CONTACT - Sfondo scuro con particelle grigio-blu */

.hero-section {
	background: #0a0e14;
	position: relative;
	padding: 50px 0 40px 0;
	margin-bottom: 0;
	overflow: hidden;
	animation: none;
}

.hero-section::before,
.hero-section::after {
	display: none;
}

#heroParticleCanvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: auto;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 2;
	pointer-events: auto;
	animation: heroSimpleFade 1s ease-out;
}

@keyframes heroSimpleFade {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.hero-title {
	font-family: "Inter", "Open Sans", sans-serif;
	font-size: 52px;
	font-weight: 300;
	letter-spacing: 4px;
	color: #ffffff;
	text-shadow: none;
	margin-bottom: 12px;
	animation: heroSimpleFade 1s ease-out 0.2s both;
}

.hero-title strong {
	font-weight: 300;
}

.hero-subtitle {
	font-family: "Inter", "Open Sans", sans-serif;
	font-size: 22px;
	font-weight: 300;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 18px;
	animation: heroSimpleFade 1s ease-out 0.4s both;
}

.hero-section .feature-card.characteristic-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(160, 180, 210, 0.15) !important;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-section .feature-card.characteristic-card:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(160, 180, 210, 0.30) !important;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	transform: translateY(-3px);
}

.hero-section .feature-card h3 {
	color: rgba(255, 255, 255, 0.90);
	font-size: 17px;
}

.hero-section .feature-card p {
	color: rgba(255, 255, 255, 0.60);
	font-size: 15px !important;
	line-height: 1.6;
}

.hero-section .feature-card p strong {
	color: rgba(255, 255, 255, 0.80);
}

.hero-section .feature-card i {
	opacity: 0.85;
	animation: none;
}

.hero-section .feature-card:hover i {
	animation: none;
	transform: scale(1.1);
	transition: transform 0.3s ease;
}

/* Griglia contatti */

.contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.contact-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 28px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	text-align: center;
}

.contact-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	border-color: #3b82f6;
}

.contact-card-icon {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px auto;
	transition: transform 0.3s ease;
}

.contact-card:hover .contact-card-icon {
	transform: scale(1.1);
}

.contact-card-icon i {
	color: white;
	font-size: 22px;
}

.contact-card h4 {
	color: #1e293b;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.contact-card p {
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.contact-card a {
	color: #3b82f6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-card a:hover {
	color: #1d4ed8;
	text-decoration: underline;
}

/* Transizioni header */

.header-transition {
	display: none;
}

.header-transition-2 {
	display: none;
}

/* Software cards */

.software-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.software-card .btn.v-btn.v-third-dark {
	color: #ffffff !important;
}

.software-card .btn.v-btn.v-third-dark:hover {
	background: rgba(255, 255, 255, 0.30) !important;
	border-color: rgba(255, 255, 255, 0.7) !important;
	color: #ffffff !important;
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Responsive */

@media (max-width: 992px) {
	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 36px;
		letter-spacing: 2px;
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.hero-section {
		padding: 35px 0 30px 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.hero-title {
		font-size: 28px;
		letter-spacing: 1px;
	}

	.hero-subtitle {
		font-size: 15px;
	}
}