/* --- Base Styles & Variables --- */
:root {
	--primary-blue: #0a1833; /* Fresh blue */
	--secondary-blue: #3b5f99; /* Lighter blue */
	--accent-yellow: #FFEB3B; /* Bright yellow */
	--light-bg: #FAFAFA;
	--light-text: #333;
	--dark-text: #fff;
	--border-color-light: #e0e0e0;
	--shadow-light: 0 4px 4px rgba(0, 0, 0, 0.33);
	--strong-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.75);
	--shadow-dark: 0 4px 12px rgba(255, 255, 255, 0.1);
	
	--font-primary: 'Poppins', sans-serif;
	--font-secondary: 'Nunito', sans-serif;
	
	--bg-color: var(--light-bg);
	--text-color: var(--light-text);
	--card-bg: var(--light-bg);
	--border-color: var(--border-color-light);
	--shadow: var(--shadow-light);
	--header-bg: rgba(255, 255, 255, 0.95);
	--icon-color: var(--light-text);
	
	--lc-row-gap: 48px;   /* spazio verticale */
	--lc-logo-h: 128px;    /* altezza massima logo */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-secondary);
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1rem; /* Add padding for smaller screens */
}

a {
	text-decoration: none;
	color: var(--primary-blue);
	transition: color 0.3s ease;
}

a:hover {
	color: var(--secondary-blue);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-primary);
	font-weight: 700;
	margin-bottom: 1rem;
	color: var(--text-color); /* Ensure headings follow theme */
	margin-left: 8px;
	margin-right: 8px;
}

h2 {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2rem;
}

section {
	padding: 4rem 0;
}

strong{
	font-size: 110%;
}

.Anchor{
        position: relative;
        top: -196px;
}

/* --- Header & Navbar --- */
.header {
	background-color: var(--header-bg);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(5px); /* Optional: Frosted glass effect */
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}

.logo {
	font-family: var(--font-primary);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-blue);
}

.logo img{
	vertical-align: middle;
	display: inline;
	height: 90px;
	margin-right: 8px;
}

#logo-component{
	transition: none;
}

#logo-component:hover{
	color: var(--primary-blue);
}

.nav-links {
	display: flex;
	list-style: none;
	margin-left: auto;
}

.nav-links li {
	margin-left: 1.5rem;
}

.nav-links a {
	color: var(--text-color);
	font-weight: 400;
	font-family: var(--font-primary);
	font-size: 1.25rem;
	white-space: nowrap;
}
.nav-links a:hover {
	color: var(--secondary-blue);
}

.nav-icons {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.menu-toggle {
	display: none; /* Hidden on desktop */
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--icon-color);
}

/* --- Buttons --- */
.btn {
	padding: 0.8rem 1.8rem;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-family: var(--font-primary);
	font-weight: 600;
	font-size: 0.95rem;
	transition: background-color 0.3s ease, transform 0.2s ease;
	display: inline-block; /* Ensures proper padding and margin */
}

.btn:hover {
	transform: translateY(-2px);
}

.btn-primary {
	background-color: var(--primary-blue);
	color: var(--light-bg);
	max-width: 320px;
	text-align: center;
}
.btn-primary:hover {
	background-color: var(--secondary-blue);
	color: white;
}

.banner-btn {
	background-color: var(--light-bg);
	color: var(--primary-blue);
	max-width: 320px;
	text-align: center;
}

.banner-btn:hover {
	color: var(--primary-blue);
	text-decoration: underline;
}

.btn-secondary {
	background-color: var(--accent-yellow);
	color: #333;
}
.btn-secondary:hover {
	background-color: #FFD700; /* Darker yellow */
	color: #111;
}

/* --- Hero Section --- */
.hero-section {
	color: var(--light-bg);
	text-align: center;
	padding: 6rem 0;
	height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.home-hero-section {
	background:
		linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('uploads/jpeg_home_banner.jpeg') no-repeat center center/cover;
}

.services-hero-section{
background:
		linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('uploads/jpeg_services_banner.jpeg') no-repeat center center/cover;
}

.firm-hero-section {
	background:
		linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('uploads/jpeg_firm_banner.jpeg') no-repeat center center/cover;
}

.team-hero-section {
	background:
		/*linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),*/
		url('uploads/jpeg_team_banner.jpeg') no-repeat center center/cover;
}

.contacts-hero-section {
	background:
		linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
		url('uploads/jpeg_contacts_banner.jpeg') no-repeat center center/cover;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--light-bg);
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* --- Hero Section --- */

.hero-section-alt {
	/* Overlay + immagine di sfondo */
	background:
		linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
		url('pictures/common-banner.jpeg') no-repeat center center / cover;
	color: var(--light-bg);
	padding: 6rem 0;
	min-height: 400px;
	display: flex;
	align-items: center;
}

/* Layout a due colonne */
.hero-content-alt {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
	text-align: left;
}

.hero-left-alt h1 {
	font-size: 3rem;
	margin: 0;
	color: var(--light-bg);
}

/* Colonna destra: testo + bottone */
.hero-right-alt {
	display: flex;
	flex-direction: column;
	align-items: center; 
	gap: 1rem;
}

.hero-right-alt p {
	font-size: 1.2rem;
	margin: 16px;
}

/* --- Category Section --- */
.category-section {
	padding: 3rem; /* Ensure consistent padding */
}

.category-section h2 {
	text-align: center;
	margin-bottom: 3rem; /* Increased space below heading */
	font-size: 2.2rem; /* Slightly larger heading */
}

.category-grid {
	margin-left: 8px;
	margin-right: 8px;
	display: grid;
	/* Adjust minmax for desired minimum size and flexibility */
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem; /* Increased gap for better separation */
	justify-items: center; /* Center items if grid row isn't full */
}

.category-card {
	 background: linear-gradient(
		145deg,
		#ffffff 0%,     /* bianco puro */
		#fcfcfc 25%,    /* leggerissimo riflesso perlaceo */
		#f8f8f8 60%,    /* tono appena più caldo */
		#ffffff 100%    /* chiusura su bianco lucido */
	);
	border-radius: 4px; /* Slightly more rounded corners */
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.35s ease;
	overflow: hidden; /* Important to contain image scaling */
	border: 1px solid var(--primary-blue); /* Add a subtle border */
	width: 100%; /* Ensure card tries to fill its grid cell */
}

/* Style the new anchor tag wrapping the content */
.category-card .category-link {
	display: flex;
	flex-direction: column;
	align-items: center; /* Center content horizontally */
	justify-content: top; /* Center content vertically */
	padding: 1.5rem 1rem; /* Adjust padding inside the link */
	text-decoration: none; /* Remove default link underline */
	color: inherit; /* Use parent text color */
	height: 100%; /* Make link fill the card */
	transition: background-color 0.2s ease;
}

.category-link{
	position: relative;
}

.category-card:hover {
	transform: translateY(-8px); /* Slightly more lift on hover */
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
}

.category-card img {
	height: 70px; /* Increased image size */
	object-fit: cover;
	margin-bottom: 1.5rem; /* Space between image and text */
	transition: transform 0.35s ease; /* Smooth transition for zoom */
	vertical-align: middle;
}

.category-card li {
	margin-top: 0.75em;
}

.category-card:hover img {
	transform: scale(1.1); /* Zoom image slightly on card hover */
}

.category-card h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary-blue);
	margin-top: 16px;
	margin-bottom: 32px;
	text-align: center;
	width: 100%;
	height: 48px;
	display: inline-block;
}

.category-card h4 {
	font-size: 1.0rem;
	font-weight: 400;
	color: var(--text-color);
	margin: 32px;
	margin-top: 8px;
	margin-bottom: 48px;
	text-align: left;
	display: flex;
}

.category-card h5 {
	position: absolute;
	bottom: 0;           /* Lo piazza in fondo */
	right: 0;             /* Opzionale, per allinearlo a sinistra */
	margin: 4px;           /* Rimuove margini extra */
	margin-right: 16px;
	margin-bottom: 12px;
	font-size: 80%;
	color: var(--primary-blue);
}

/* Responsive adjustments for category grid if needed */
@media (max-width: 480px) {
	.category-grid {
		gap: 1rem; /* Reduced gap */
	}

	.category-card h3 {
		font-size: 1rem;
		margin-bottom: 8px;
	}
	
	.category-card h5 {
		font-size: 0.95rem;
	}
	
	.category-card h4 {
		margin-bottom: 4rem;
	}
	
	.category-section h2 {
		font-size: 1.8rem;
		margin-bottom: 2rem;
	}
	
	.category-card .category-link {
		padding: 1rem 0.5rem;
	}
}


/* --- Promotional Section --- */
.promotional-section {
	background_aa: radial-gradient(140% 140% at 10% 10%,
		var(--primary-blue) 0%,
		var(--secondary-blue) 70%,
		var(--primary-blue) 100%);
		
	background: var(--primary-blue);
	padding: 56px 0;
	padding-bottom: 24px;
	color: var(--light-bg);
	text-align: center;
}

.promo-content h2 {
	color: inherit; /* Inherit color from parent */
}
.promo-content p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

/* --- Info Grid --- */
.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Keep this */
	gap: 1.5rem;
	justify-items: center; /* Add this line */
}

/* Find your existing .info-card rule */
.info-card {
	background-color: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 10px;
	padding: 1rem; /* Adjust padding top/bottom if needed */
	text-align: center;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	max-width: 300px;
	cursor: pointer; /* ADD THIS - Indicates the whole card is clickable */
	display: flex;
	flex-direction: column;
	/* Optional: Set a min-height for visual consistency */
	/* min-height: 300px; */
}

.info-card:hover {
	transform: translateY(-6px); /* Keep existing hover */
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.info-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.info-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.5rem; /* Space between title and price */
	color: var(--text-color);
	flex-grow: 1; /* Allow title to take space if using flex */
}

.info-card .details {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin-bottom: 0; /* No space needed below price */
}

.no-infos {
	grid-column: 1 / -1; /* Make message span all grid columns */
	text-align: center;
	padding: 3rem 1rem;
	font-size: 1.1rem;
	color: var(--text-color);
	opacity: 0.8;
}

/* --- Contact Form --- */
.contact-form {
	max-width: 920px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 2px;
	padding: 24px;
	box-shadow: var(--shadow);
}

.contact-form p {
	margin: 0 0 0.5rem 0;
}

/* Griglia per Nome / Email */
.contact-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

@media (max-width: 768px) {
	.contact-form .form-row {
		grid-template-columns: 1fr;
	}
}

/* Field */
.contact-form .field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.contact-form label {
	font-family: var(--font-primary);
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--text-color);
}

.contact-form input,
.contact-form textarea {
	padding: 0.9rem 1rem;
	border: 1px solid var(--border-color);
	border-radius: 2px;
	font-family: var(--font-secondary);
	font-size: 0.95rem;
	color: var(--text-color);
	background-color: #fff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	opacity: 0.55;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: color-mix(in oklab, var(--secondary-blue) 60%, var(--primary-blue));
	box-shadow: 0 0 0 3px rgba(51, 133, 173, 0.15);
}

.contact-form textarea {
	min-height: 160px;
	resize: vertical;
}

/* Pulsante invio */
.contact-form .form-submit {
	width: 100%;
	border-radius: 4px;
	height: 56px;
	font-weight: 700;
	font-family: var(--font-primary);
	font-size: 1rem;
	background: linear-gradient(90deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: #fff;
	border: none;
	cursor: pointer;
	transition: filter 0.2s ease, transform 0.2s ease;
}

.contact-form .form-submit:hover {
	filter: brightness(1.05);
	transform: translateY(-1px);
}

.contact-form .form-submit:active {
	transform: translateY(0);
}

/* Nota informativa */
.contact-form .form-note {
	margin-top: 10px;
	color: #6b7280;
	font-size: 0.9rem;
	line-height: 1.4;
}

/* Stato messaggio accessibile */
#form-status {
	font-size: 0.95rem;
	margin-top: 0.5rem;
}

/* --- Scroll-to-Top Button --- */
.scroll-top-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: var(--primary-blue);
	color: var(--light-bg);
	border-radius: 50%;
	border: none;
	width: 45px;
	height: 45px;
	font-size: 1.2rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	z-index: 999;
	box-shadow: var(--shadow);
}

.scroll-top-btn.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top-btn:hover {
	background-color: var(--secondary-blue);
	transform: scale(1.1);
}

/* --- Responsive Design --- */
@media (max-width: 1280px) {
	 .info-grid {
		grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	}
}

@media (max-width: 1024px) {
	.container {
		padding: 1rem;
	}

	.navbar {
		position: relative; /* Needed for absolute positioning of nav-links */
	}

	.header {
		height: auto; /* Allow header to grow */
	}

	.nav-links {
		display: none; /* Hide links by default */
		flex-direction: column;
		position: absolute;
		top: 100px; /* Position below navbar */
		left: 0;
		width: 100%;
		background-color: var(--header-bg); /* Use header background */
		border-top: 1px solid var(--border-color);
		box-shadow: var(--shadow);
		padding: 3rem 0 1rem 0;
	}

	.nav-links.active {
		display: flex; /* Show when active */
	}

	.nav-links li {
		margin: 0;
		text-align: center;
	}
	.nav-links a {
		display: block;
		padding: 0.8rem 1rem;
		width: 100%;
	}
	
	.nav-links a:hover {
		background-color: var(--border-color); /* Subtle hover effect */
	}
	
	.menu-toggle {
		display: block; /* Show hamburger menu */
		order: 2; /* Position between logo/icons and search */
	}
	
	.nav-icons {
		order: 1; /* Move icons next to logo */
	}
	 
	.hero-content h1 {
		font-size: 2.5rem;
	}
	
	.hero-content p {
		font-size: 1rem;
	}
	
	.info-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}
	
	.info-card {
		padding: 1rem;
	}

	h2 {
		font-size: 1.8rem;
	}
	
	.hero-section {
		min-height: 400px;
	}
}

@media (max-width: 480px) {
	.hero-content h1 {
		font-size: 2rem;
	}
	.hero-section {
		padding: 4rem 0;
	}
	
	.info-grid {
		grid-template-columns: 1fr; /* Single column */
	}
	
	.logo {
		font-size: 1.5rem;
	}
	.nav-icons {
		gap: 0.8rem; /* Reduce gap */
	}
	.menu-toggle {
		font-size: 1.3rem;
	}
}

@media (max-width: 768px) {
	.hero-content-alt {
		grid-template-columns: 1fr;
		text-align: center;
		align-items: center; 
	}
	
	.hero-left-alt h1 {
		font-size: 2rem;
	}
	.hero-section-alt {
		padding: 4rem 0;
	}
}

/* Style the active nav link (Optional) */
.nav-links a.active {
	color: var(--primary-blue);
	text-decoration: underline;
	/* Add other styles like underline if desired */
}

/* --- Modal Styles --- */
.modal {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 1001; /* Above header */
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden; /* Prevent background scroll */
	background-color: rgba(0, 0, 0, 0.6); /* Darker overlay */
	/* Use flex to center the modal content */
	justify-content: center;
	align-items: center;
}

/* Add 'open' class via JS to show modal */
.modal.open {
	display: flex;
}

.modal-content {
	background-color: var(--bg-color);
	color: var(--text-color);
	padding: 1.5rem 2rem 2rem 2rem; /* More padding bottom */
	border-radius: 10px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
	position: relative;
	max-width: 700px; /* Wider modal */
	width: 90%;
	max-height: 85vh; /* Limit height */
	display: flex;
	flex-direction: column; /* Stack title, items, summary */
	transition: background-color 0.3s ease, color 0.3s ease;
}

.modal-content h2 {
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
	color: var(--text-color);
}

.close-modal-btn {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 2rem; /* Larger close icon */
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
	color: var(--text-color);
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.close-modal-btn:hover {
	opacity: 1;
}

.ln-footer{
	background: linear-gradient(180deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
	color: var(--dark-text);
	border-top-color: rgba(255,255,255,.35);
	padding: 32px 0 18px;
}

.ln-footer__container{
	width: min(1100px, 92vw);
	margin-inline: auto;
}

.ln-footer__grid{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(0px, 320px));
	gap: 48px;
	justify-content: center;
}

.ln-footer__grid section{
	padding: 1rem 0;
}

.ln-foot__block{ min-width: 0;}
.ln-foot__title{
	margin: 0 0 10px;
	font: 700 16px/1 var(--font-primary, system-ui);
	color: #fff;
}
.ln-foot__addr{ font-style: normal; }
.ln-foot__label{
	display:inline-block;
	width: 80px;
	color: color-mix(in oklab, #fff 80%, var(--dark-bg));
	font-weight: 600;
}
.ln-foot__list{
	list-style: none; margin: 8px 0 0; padding: 0;
	display: grid; gap: 6px;
}

.ln-foot__list a{
	color: var(--dark-text);
	text-decoration: none;
	border-bottom: 1px dashed rgba(255,255,255,.25);
	width: fit-content;
	margin-bottom: 8px;
	display: inline-block;
}

.ln-foot__list a:hover{
	color: #fff;
	border-bottom-color: #fff;
}

/* Bottom row */
.ln-footer__bottom{
	margin-top: 22px;
	padding-top: 12px;
	border-top-color: rgba(255,255,255,.25);
	color: rgba(255,255,255,.9);
	font: 12px/1.6 var(--font-secondary, system-ui);
}

/* Contenitore del menu */
.scroll-menu {
  width: 100%;
  background-color: #0a0a0a; /* sfondo scuro moderno */
  overflow-x: auto;         /* abilita lo scroll orizzontale */
  white-space: nowrap;      /* evita che gli item vadano a capo */
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Lista orizzontale */
.scroll-menu ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Ogni elemento della lista */
.scroll-menu li {
  flex: 0 0 auto; /* non comprimere, mantieni larghezza minima */
}

/* Link del menu */
.scroll-menu a {
	display: inline-block;
	padding: 1rem 1.5rem;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	transition: background 0.3s ease, color 0.3s ease;
	font-size: 1rem;
	border-bottom: 3px solid transparent;
}

/* Effetto hover */
.scroll-menu a:hover {
	background-color: #007bff;
	color: #fff;
}

/* Link attivo */
.scroll-menu a.active {
	border-bottom: 3px solid var(--accent-yellow);
	color: var(--accent-yellow);
}

.scroll-menu a.active:hover {
	background-color: #222200;
}

/* Mobile: scrollbar più sottile e gradevole */
.scroll-menu::-webkit-scrollbar {
	height: 6px;
}

.scroll-menu::-webkit-scrollbar-thumb {
	background-color: #AAA;
	border-radius: 3px;
}

.scroll-menu::-webkit-scrollbar-track {
	background-color: transparent;
}

/* TwoColumnSection - estensione leggera basata sulle tue variabili */
.two-col-section{
	background: var(--bg-color);
	padding: 3rem 0;
}

.two-col{
	display: grid;
	grid-template-columns: 0.95fr 1fr;
	gap: 4rem;
	align-items: center;
}

.two-col-section.two-col-section--reverse .two-col{
	direction: rtl;           /* trucco per invertire l’ordine visuale */
}
.two-col-section.two-col-section--reverse .two-col > *{
	direction: ltr;           /* riportiamo il testo a sinistra */
}

.two-col__content h2{
	font-family: var(--font-primary);
	color: var(--light-text);
	margin: 0 0 .5rem 0;
	font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.two-col__lead{
	color: var(--light-text);
	opacity: .9;
	font-size: 1.05rem;
	margin: 0 0 1rem 0;
}

.two-col__list{
	list-style: none;
	margin: 0 0 1.2rem 0;
	padding: 0;
}
.two-col__list li{
	position: relative;
	padding-left: 28px;
	margin: .55rem 0;
	color: var(--light-text);
}

.two-col__list li::before{
	content: "";
	position: absolute; left: 0; top: .45rem;
	width: 8px; height: 8px; border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--secondary-blue), var(--primary-blue));
	box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

.two-col__ctas{ display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center;}

.two-col__media{
	background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
	border: 1px solid var(--border-color);
	border-radius: 2px;
	box-shadow: var(--shadow);
}

.two-col__img{ width: 100%; height: auto; display: block; border-radius: 2px; }

@media (max-width: 960px){
	.two-col{ grid-template-columns: 1fr;}
	.two-col-section .two-col-section--reverse .two-col{
		direction: ltr;
	}
	
	.two-col-section {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}

.benefits-section {
	background-color: var(--light-bg);
	padding: 4rem 0;
	text-align: center;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.benefit-card {
	background: var(--card-bg);
	padding: 1.8rem 1.4rem;
	border: 1px solid var(--border-color);
	border-radius: 12px;
	box-shadow: var(--shadow);
	transition: transform 0.2s ease, box-shadow 0.3s ease;
	text-align: left; /* così titolo e testo si allineano meglio */
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--strong-shadow-light);
}

/* Header icona + titolo */
.benefit-head {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
}

/* Icona */
.benefit-icon {
	width: 48px;
	height: auto;
	flex-shrink: 0; /* evita che si riduca se il titolo è lungo */
}

/* Titolo */
.benefit-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--primary-blue);
	margin: 0;
	line-height: 1.3;
}

/* Testo */
.benefit-card p {
	margin-top: 2rem;
	font-size: 1.0rem;
	color: var(--text-color);
}

.spec-card h4 {
	font-size: 1.05rem;
	color: var(--primary-blue);
	margin-bottom: 0.4rem;
}

.spec-card p {
	font-size: 0.95rem;
	color: var(--text-color);
	opacity: 0.9;
}

.faq-wrap{max-width:900px;margin-right: 8px; margin-left: 8px; display:grid;gap:12px}
.faq{
	background: var(--card-bg);
	border:1px solid var(--border-color);
	border-radius:4px;
	padding:.8rem 1rem;
	box-shadow: var(--shadow);
}
.faq summary{
	cursor:pointer;
	font-family: var(--font-primary);
	font-weight:700;
	color: var(--primary-blue);
	list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin:.6rem 0 0}

.dc-cta{
	display:flex;align-items:center;justify-content:space-between;
	gap:16px;padding:14px 16px;border:1px solid var(--border-color);
	border-radius:12px;background:linear-gradient(180deg,#fff 0%,#f7f9fb 100%);
	box-shadow: var(--shadow);
}
@media (max-width:768px){ .dc-cta{flex-direction:column;align-items:flex-start} }

/* Contact Section */
.contact-section h1 {
	text-align: center;
	margin-bottom: 2rem;
	font-size: 2.2rem;
	color: var(--primary-blue);
}

.contact-section .container{
	text-align: center;
	max-width: 1024px;
}

.contact-section img {
	width: 96px;
	margin-top: 2rem;
}

.contact-section p {
	margin-bottom: 1.5rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 3rem;
}

.contact-item {
	background: var(--card-bg);
	border: 1px solid var(--border-color);
	border-radius: 2px;
	padding: 1.2rem;
	box-shadow: var(--shadow);
	text-align: center;
}

.contact-item h3 {
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
	color: var(--primary-blue);
}

.contact-item p {
	margin: 0;
	font-size: 0.95rem;
	word-break: break-word;
}

.contact-item a {
	color: var(--primary-blue);
	font-weight: 600;
}

.contact-item a:hover {
	color: var(--secondary-blue);
}

.team-role span{
	color: var(--primary-blue);
	border-bottom: 1px solid var(--primary-blue);
	padding-left: 1em;
	padding-right: 1em;
}
