/**
 * Home hub comparatore — layout a griglia, palette Vitacomoda.
 */

.vc-home-facile {
	--vc-blue: #0445af;
	--vc-gold: #ffc532;
	--vc-cyan: #04b8d8;
	--vc-cta: #2e9e3e;
	--vc-cta-hover: #268534;
	--vc-text: #1a1a1a;
	--vc-muted: #5c6570;
	--vc-border: #e4e8ec;
	--vc-bg: transparent;
	--vc-card: #ffffff;
	--vc-radius: 10px;
	--vc-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--vc-text);
	width: 100%;
	max-width: 100%;
	margin: 0 0 48px;
	padding: 0;
	box-sizing: border-box;
}

.vc-home-facile *,
.vc-home-facile *::before,
.vc-home-facile *::after {
	box-sizing: border-box;
}

/* Hero full-bleed */
.vc-home-facile__hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: clamp(200px, 32vw, 320px);
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--vc-blue) 0%, #02367f 55%, #011f4d 100%);
}

.vc-home-facile__hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
	opacity: 0.45;
}

.vc-home-facile__hero-inner {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 40px 24px 40px;
	max-width: 920px;
}

.vc-home-facile__hero-title {
	margin: 0;
	font-size: clamp(1.85rem, 4.5vw, 3rem);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.vc-home-facile__hero-highlight {
	display: inline-block;
	background: var(--vc-gold);
	color: var(--vc-blue);
	padding: 0.06em 0.4em;
	border-radius: 2px;
}

.vc-home-facile__hero-lead {
	margin: 14px 0 0;
	font-size: clamp(0.9rem, 2vw, 1.05rem);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.5;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* Nav categorie */
.vc-home-facile__nav {
	background: var(--vc-card);
	border-bottom: 1px solid var(--vc-border);
	box-shadow: 0 2px 8px rgba(4, 69, 175, 0.06);
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	position: sticky;
	top: 0;
	z-index: 20;
}

.vc-home-facile__nav-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.vc-home-facile__nav-list {
	display: flex;
	flex-wrap: nowrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: min-content;
}

.vc-home-facile__nav-list li {
	flex: 0 0 auto;
}

.vc-home-facile__nav-list li + li a {
	border-left: 1px solid var(--vc-border);
}

.vc-home-facile__nav-list a {
	display: flex;
	align-items: center;
	padding: 0 16px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--vc-text);
	text-decoration: none;
	white-space: nowrap;
	min-height: 48px;
	line-height: 1.2;
	transition: color 0.2s, background 0.2s;
}

.vc-home-facile__nav-soon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 10px 14px;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.55);
	cursor: default;
	text-align: center;
	line-height: 1.2;
}

.vc-home-facile__nav-soon em {
	font-style: normal;
	font-size: 0.62rem;
	font-weight: 600;
	color: var(--vc-gold);
	letter-spacing: 0.06em;
}

.vc-home-facile__nav-list a:hover,
.vc-home-facile__nav-list a:focus {
	color: var(--vc-blue);
	background: rgba(4, 184, 216, 0.12);
	border-bottom: 2px solid var(--vc-cyan);
}

/* Pannelli card — sfondo trasparente (griglia pagina visibile) */
.vc-home-facile__panels-wrap {
	background: transparent;
	padding: 20px 16px 32px;
}

.vc-home-facile__panels {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	padding: 0;
}

.vc-home-facile__featured {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

@media (min-width: 768px) {
	.vc-home-facile__featured {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 992px) {
	.vc-home-facile__featured:has(.vc-home-facile__card:nth-child(3):last-child) {
		grid-template-columns: repeat(3, 1fr);
	}

	.vc-home-facile__featured:has(.vc-home-facile__card:nth-child(5):last-child) {
		grid-template-columns: repeat(6, 1fr);
	}

	.vc-home-facile__featured:has(.vc-home-facile__card:nth-child(5):last-child) .vc-home-facile__card:nth-child(-n + 2) {
		grid-column: span 3;
	}

	.vc-home-facile__featured:has(.vc-home-facile__card:nth-child(5):last-child) .vc-home-facile__card:nth-child(n + 3) {
		grid-column: span 2;
	}
}

.vc-home-facile__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

@media (min-width: 640px) {
	.vc-home-facile__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 992px) {
	.vc-home-facile__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Card base */
.vc-home-facile__card {
	background: var(--vc-card);
	border: 1px solid var(--vc-border);
	border-radius: var(--vc-radius);
	box-shadow: var(--vc-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vc-home-facile__card:hover,
.vc-home-facile__card:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(4, 69, 175, 0.12);
}

.vc-home-facile__card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 44px;
	padding: 20px 18px 68px;
	text-decoration: none;
	color: inherit;
	position: relative;
}

.vc-home-facile__card--featured .vc-home-facile__card-link {
	min-height: 260px;
	padding-left: 110px;
}

.vc-home-facile__card--compact .vc-home-facile__card-link {
	min-height: 168px;
	padding: 16px 14px 52px;
	text-align: center;
	align-items: center;
}

.vc-home-facile__badge {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	background: rgba(4, 184, 216, 0.15);
	color: var(--vc-blue);
	padding: 3px 9px;
	border-radius: 3px;
	margin-bottom: 8px;
}

.vc-home-facile__card--compact .vc-home-facile__badge {
	align-self: center;
}

.vc-home-facile__card-title {
	margin: 0 0 6px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--vc-blue);
	letter-spacing: 0.02em;
}

.vc-home-facile__card--featured .vc-home-facile__card-title {
	font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.vc-home-facile__card-title--readable {
	text-transform: none;
	font-weight: 750;
	font-size: clamp(1.05rem, 2.4vw, 1.35rem);
	line-height: 1.28;
	letter-spacing: -0.015em;
	max-width: 28ch;
}

.vc-home-facile__highlights {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 2px 0 10px;
	padding: 0;
}

.vc-home-facile__highlight {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.2;
	color: var(--vc-blue);
	background: linear-gradient(180deg, rgba(4, 184, 216, 0.14), rgba(4, 69, 175, 0.08));
	border: 1px solid rgba(4, 69, 175, 0.18);
	white-space: nowrap;
}

.vc-home-facile__card--compact .vc-home-facile__card-title {
	font-size: 0.72rem;
	margin-bottom: 4px;
}

.vc-home-facile__card-sub {
	margin: 0 0 8px;
	font-size: 0.875rem;
	line-height: 1.4;
	color: var(--vc-muted);
}

.vc-home-facile__card--compact .vc-home-facile__card-sub {
	font-size: 0.75rem;
	margin-bottom: 6px;
}

.vc-home-facile__card-icon {
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
}

.vc-home-facile__card--featured .vc-home-facile__card-icon {
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	width: 72px;
	height: 72px;
}

.vc-home-facile__card--compact .vc-home-facile__card-icon {
	position: relative;
	left: auto;
	top: auto;
	transform: none;
	width: 56px;
	height: 56px;
	margin: 4px auto 8px;
	flex-shrink: 0;
}

.vc-home-facile__cta {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 14px;
	background: var(--vc-cta);
	color: #fff !important;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-radius: 6px;
	transition: background 0.2s;
}

.vc-home-facile__card--compact .vc-home-facile__cta {
	left: 10px;
	right: 10px;
	bottom: 10px;
	font-size: 0.68rem;
	min-height: 40px;
	padding: 8px 10px;
}

.vc-home-facile__card-link:hover .vc-home-facile__cta,
.vc-home-facile__card-link:focus .vc-home-facile__cta {
	background: var(--vc-cta-hover);
}

.vc-home-facile__ext {
	display: block;
	margin-top: 4px;
	font-size: 0.62rem;
	color: var(--vc-muted);
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
}

/* Icone SVG inline */
.vc-home-facile__card--icon-training .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M12 48V20l20-8 20 8v28'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M32 12v36'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-marketplace .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='22' r='10' stroke='%230445AF' stroke-width='2.5'/%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M14 52c0-10 8-16 18-16s18 6 18 16'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-documenti .vc-home-facile__card-icon,
.vc-home-facile__card--icon-dvr .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M18 12h22l8 8v32H18V12z'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M40 12v8h8M24 28h16M24 36h12'/%3E%3Cpath stroke='%2304B8D8' stroke-width='2' d='M44 44l6 6 10-12'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-catalog .vc-home-facile__card-icon,
.vc-home-facile__card--icon-learn .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Crect x='14' y='12' width='36' height='44' rx='3' stroke='%230445AF' stroke-width='2.5'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M22 24h20M22 34h20'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-car .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M8 36h48l-6-14H14L8 36z'/%3E%3Ccircle cx='20' cy='40' r='4' stroke='%23FFC532' stroke-width='2'/%3E%3Ccircle cx='44' cy='40' r='4' stroke='%23FFC532' stroke-width='2'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-moto .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Ccircle cx='18' cy='40' r='8' stroke='%230445AF' stroke-width='2.5'/%3E%3Ccircle cx='46' cy='40' r='8' stroke='%230445AF' stroke-width='2.5'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M26 40h12l8-16h-8'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-mutui .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M12 48V28l20-12 20 12v20'/%3E%3Crect x='26' y='32' width='12' height='16' stroke='%23FFC532' stroke-width='2'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-prestiti .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Ccircle cx='32' cy='32' r='20' stroke='%230445AF' stroke-width='2.5'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M32 20v24M24 32h16'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-internet .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M8 32c8-12 40-12 48 0'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M16 40c6-8 26-8 32 0M24 48h16'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-nlt .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M10 38h44l-4-12H18l-4 12z'/%3E%3Cpath stroke='%23FFC532' stroke-width='2' d='M28 26h8v6h-8z'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-partners .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Ccircle cx='22' cy='24' r='8' stroke='%230445AF' stroke-width='2.5'/%3E%3Ccircle cx='42' cy='24' r='8' stroke='%230445AF' stroke-width='2.5'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M12 52c0-8 6-14 14-14s14 6 14 14M28 52c0-8 6-14 14-14s14 6 14 14'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-conti .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Crect x='12' y='18' width='40' height='28' rx='4' stroke='%230445AF' stroke-width='2.5'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M12 28h40'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-viaggio .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Crect x='16' y='26' width='32' height='26' rx='3' stroke='%230445AF' stroke-width='2.5'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M24 26v-7a8 8 0 0116 0v7'/%3E%3Cpath stroke='%230445AF' stroke-width='2' d='M28 36h8'/%3E%3Cpath stroke='%2304B8D8' stroke-width='2.5' d='M40 14l6 4-10 3 3 9-5-5-8 7'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-risparmio .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Crect x='10' y='38' width='8' height='14' stroke='%230445AF' stroke-width='2.5'/%3E%3Crect x='22' y='30' width='8' height='22' stroke='%230445AF' stroke-width='2.5'/%3E%3Crect x='34' y='22' width='8' height='30' stroke='%23FFC532' stroke-width='2.5'/%3E%3Cpath stroke='%2304B8D8' stroke-width='2.5' d='M48 34c0 6-4 10-10 10s-10-4-10-10 4-10 10-10 10 4 10 10z'/%3E%3Cpath stroke='%2304B8D8' stroke-width='2' d='M44 34h8M48 30v8'/%3E%3C/svg%3E");
}

.vc-home-facile__card--icon-luce-gas .vc-home-facile__card-icon {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 64 64'%3E%3Cpath stroke='%230445AF' stroke-width='2.5' d='M14 30c0-10 8-16 14-16s14 6 14 16c0 5-3 9-5 11h-18c-2-2-5-6-5-11z'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' d='M24 41h8M26 45h4'/%3E%3Cpath stroke='%230445AF' stroke-width='2' d='M22 41v4'/%3E%3Cpath stroke='%23FFC532' stroke-width='2.5' fill='%23FFC532' fill-opacity='0.2' d='M44 16c3 7 7 11 7 17a7 7 0 01-14 0c0-6 4-10 7-17z'/%3E%3Cpath stroke='%230445AF' stroke-width='2' d='M37 36h14'/%3E%3C/svg%3E");
}

.vc-home-facile__card--static {
	cursor: default;
	opacity: 0.92;
}

.vc-home-facile__card--static:hover,
.vc-home-facile__card--static:focus-within {
	transform: none;
	box-shadow: var(--vc-shadow);
}

.vc-home-facile__card--static .vc-home-facile__card-link {
	cursor: default;
}

.vc-home-facile__soon {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 14px;
	background: #e8ecf0;
	color: var(--vc-muted);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	border-radius: 6px;
}

.vc-home-facile__card--compact .vc-home-facile__soon {
	left: 10px;
	right: 10px;
	bottom: 10px;
	font-size: 0.68rem;
	min-height: 40px;
}

.vc-home-facile__company {
	max-width: 720px;
	margin: 2.25rem auto 0.5rem;
	padding: 0 16px 1.25rem;
}

.vc-home-facile__company-inner {
	position: relative;
	padding: 1.05rem 1.15rem 1.1rem;
	border-radius: 14px;
	border: 1px solid rgba(4, 69, 175, 0.12);
	background:
		linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 249, 255, 0.88) 55%, rgba(236, 254, 255, 0.75) 100%);
	box-shadow: 0 8px 28px rgba(4, 69, 175, 0.06);
	text-align: center;
}

.vc-home-facile__company-inner::before {
	content: "";
	display: block;
	width: 42px;
	height: 3px;
	margin: 0 auto 0.85rem;
	border-radius: 999px;
	background: linear-gradient(90deg, #0445af, #04b8d8, #ffc532);
}

.vc-home-facile__company-name {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0445af;
	line-height: 1.35;
}

.vc-home-facile__company-site {
	margin: 0.28rem 0 0.7rem;
	font-size: 0.72rem;
	line-height: 1.4;
}

.vc-home-facile__company-site a {
	color: #0474a8;
	text-decoration: none;
	font-weight: 600;
}

.vc-home-facile__company-site a:hover,
.vc-home-facile__company-site a:focus {
	color: #0445af;
	text-decoration: underline;
}

.vc-home-facile__company-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.28rem;
	font-size: 0.7rem;
	line-height: 1.45;
	color: #475569;
}

.vc-home-facile__company-k {
	display: inline;
	font-weight: 700;
	color: #334155;
	margin-right: 0.2rem;
}

.vc-home-facile__company-k::after {
	content: ":";
}

.vc-home-facile__company-list a {
	color: #0445af;
	text-decoration: none;
	font-weight: 600;
}

.vc-home-facile__company-list a:hover,
.vc-home-facile__company-list a:focus {
	text-decoration: underline;
}

.vc-home-facile__company-people {
	margin-top: 0.75rem;
	padding-top: 0.7rem;
	border-top: 1px solid rgba(4, 69, 175, 0.1);
	display: grid;
	gap: 0.45rem;
	font-size: 0.68rem;
	line-height: 1.45;
	color: #475569;
}

.vc-home-facile__company-people p {
	margin: 0;
}

.vc-home-facile__company-people .vc-home-facile__company-k {
	display: block;
	margin: 0 0 0.1rem;
	font-size: 0.62rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #64748b;
	font-weight: 700;
}

.vc-home-facile__company-people .vc-home-facile__company-k::after {
	content: none;
}

@media (min-width: 640px) {
	.vc-home-facile__company-list {
		grid-template-columns: 1fr 1fr;
		column-gap: 1rem;
		text-align: left;
	}

	.vc-home-facile__company-people {
		grid-template-columns: 1fr 1fr 1fr;
		column-gap: 1rem;
		text-align: left;
	}
}

.vc-home-facile__disclaimer-wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}

.vc-home-facile__disclaimer {
	margin: 16px 0 0;
	font-size: 0.72rem;
	line-height: 1.5;
	color: var(--vc-muted);
	text-align: center;
}

.vc-home-facile__disclaimer a {
	color: var(--vc-blue);
}

@media (max-width: 767px) {
	.vc-home-facile {
		margin-bottom: 32px;
	}

	.vc-home-facile__panels {
		margin-top: 0;
	}

	.vc-home-facile__card--featured .vc-home-facile__card-link {
		min-height: 220px;
		padding-left: 18px;
		padding-top: 88px;
	}

	.vc-home-facile__card--featured .vc-home-facile__card-icon {
		left: 50%;
		top: 20px;
		transform: translateX(-50%);
		width: 56px;
		height: 56px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-home-facile__card {
		transition: none;
	}
}

/* Full-bleed sicuro (evita overflow orizzontale da 100vw su mobile) */
.home .entry-content > .vc-home-facile,
.blog .entry-content > .vc-home-facile {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

.home.ast-plain-container .site-content > .ast-container,
.home.ast-separate-container .site-content > .ast-container {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

.home .entry-header,
.home .ast-single-entry-banner {
	display: none;
}

.home .entry-content {
	margin-top: 0;
}

.home .entry-content > .vc-home-facile + * {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

/* Full-bleed su home Kadence (servizi.vitacomoda.it) */
.home .content-container .vc-home-facile,
.page-id-25 .content-container .vc-home-facile {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

body.home,
body.page-id-25 {
	overflow-x: clip;
}

.home .entry-hero,
.home .entry-header,
.page-id-25 .entry-hero,
.page-id-25 .entry-header {
	display: none;
}

.home .content-wrap,
.page-id-25 .content-wrap {
	padding-top: 0;
	padding-left: 0;
	padding-right: 0;
	background: transparent !important;
}

.home .content-container,
.page-id-25 .content-container {
	max-width: 100%;
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}

body:has(.vc-home-facile) .content-wrap,
body:has(.vc-home-facile) .content-container,
body:has(.vc-home-facile) .entry.content-bg,
body:has(.vc-home-facile) .site-main {
	background: transparent !important;
}

/* ——— Ricerca magica home (gaming + puff fumo) ——— */
.vc-hf-find-wrap {
	max-width: 920px;
	margin: -0.75rem auto 1.25rem;
	padding: 0 16px;
	position: relative;
	z-index: 4;
}

.vc-hf-find {
	--hf-blue: #0445af;
	--hf-gold: #ffc532;
	--hf-cyan: #04b8d8;
	position: relative;
	padding: 1.35rem 1.35rem 1.2rem;
	border-radius: 20px;
	overflow: hidden;
	text-align: left;
	color: #e8f1ff;
	background:
		radial-gradient(ellipse 90% 80% at 12% 0%, rgba(4, 184, 216, 0.28) 0%, transparent 55%),
		radial-gradient(ellipse 70% 60% at 90% 100%, rgba(255, 197, 50, 0.22) 0%, transparent 50%),
		linear-gradient(145deg, #062a63 0%, #0445af 42%, #023067 100%);
	border: 2px solid rgba(255, 197, 50, 0.72);
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.38),
		0 0 0 1px rgba(255, 255, 255, 0.12) inset,
		0 0 40px rgba(4, 184, 216, 0.22);
	font-family: "Rajdhani", system-ui, -apple-system, "Segoe UI", sans-serif;
	isolation: isolate;
}

.vc-hf-find::before {
	content: "";
	position: absolute;
	inset: -40% -20%;
	background: conic-gradient(
		from 180deg at 50% 50%,
		transparent 0deg,
		rgba(255, 197, 50, 0.18) 60deg,
		transparent 120deg,
		rgba(4, 184, 216, 0.2) 200deg,
		transparent 280deg
	);
	animation: vc-hf-find-spin 14s linear infinite;
	opacity: 0.55;
	z-index: 0;
	pointer-events: none;
}

.vc-hf-find__glow {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 42%);
	pointer-events: none;
	z-index: 1;
}

.vc-hf-find__head,
.vc-hf-find__shell,
.vc-hf-find__chips,
.vc-hf-find__meta,
.vc-hf-find__hit,
.vc-hf-find__results,
.vc-hf-find__empty {
	position: relative;
	z-index: 2;
}

.vc-hf-find__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.45rem;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	font-family: "Orbitron", "Rajdhani", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #062042;
	background: linear-gradient(135deg, #ffd84d 0%, #ffc532 50%, #ffb300 100%);
	box-shadow: 0 4px 16px rgba(255, 197, 50, 0.45);
}

.vc-hf-find__title {
	margin: 0;
	font-family: "Orbitron", "Rajdhani", sans-serif;
	font-size: clamp(1.05rem, 2.6vw, 1.4rem);
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.25;
	color: #fff;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.vc-hf-find__hint {
	margin: 0.35rem 0 0.95rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: rgba(232, 241, 255, 0.82);
	line-height: 1.4;
}

.vc-hf-find__shell {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 0.95rem;
	align-items: stretch;
}

.vc-hf-find__search {
	flex: 1 1 220px;
	display: block;
	position: relative;
	min-width: 0;
}

.vc-hf-find__search-icon {
	position: absolute;
	left: 0.95rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.05rem;
	color: var(--hf-cyan);
	text-shadow: 0 0 12px rgba(4, 184, 216, 0.7);
	pointer-events: none;
	z-index: 1;
}

.vc-hf-find__search input {
	width: 100%;
	min-height: 52px;
	padding: 0.8rem 1rem 0.8rem 2.65rem;
	border: 2px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	color: #0f172a;
	font-size: 16px;
	font-weight: 600;
	font-family: "Rajdhani", system-ui, sans-serif;
	box-shadow:
		0 8px 24px rgba(0, 0, 0, 0.18),
		0 0 0 1px rgba(4, 184, 216, 0.15) inset;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vc-hf-find__search input::placeholder {
	color: #64748b;
	font-weight: 500;
}

.vc-hf-find__search input:focus {
	outline: none;
	border-color: var(--hf-gold);
	box-shadow:
		0 0 0 3px rgba(255, 197, 50, 0.35),
		0 0 28px rgba(4, 184, 216, 0.35),
		0 10px 28px rgba(0, 0, 0, 0.2);
	transform: translateY(-1px);
}

.vc-hf-find__btn {
	flex: 0 0 auto;
	min-height: 52px;
	min-width: 120px;
	padding: 0.65rem 1.25rem;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	font-family: "Orbitron", "Rajdhani", sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #062042;
	background: linear-gradient(135deg, #ffd84d 0%, #ffc532 55%, #ffb300 100%);
	box-shadow:
		0 8px 22px rgba(255, 197, 50, 0.45),
		0 0 0 1px rgba(255, 255, 255, 0.35) inset;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.vc-hf-find__btn:hover,
.vc-hf-find__btn:focus {
	transform: translateY(-2px);
	box-shadow:
		0 12px 28px rgba(255, 197, 50, 0.55),
		0 0 24px rgba(4, 184, 216, 0.35);
	outline: none;
}

.vc-hf-find__puff {
	position: absolute;
	inset: -30% -10%;
	pointer-events: none;
	z-index: 8;
	overflow: visible;
}

.vc-hf-find__puff .vc-hf-puff-bloom {
	position: absolute;
	inset: 8% 4%;
	border-radius: 20px;
	background: radial-gradient(ellipse at 50% 45%, rgba(255, 197, 50, 0.55) 0%, rgba(4, 184, 216, 0.35) 35%, transparent 70%);
	opacity: 0;
	animation: vc-hf-puff-bloom 1.6s ease-out forwards;
	mix-blend-mode: screen;
}

.vc-hf-find__puff .vc-hf-puff-flash {
	position: absolute;
	top: 45%;
	left: 50%;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: radial-gradient(circle, #ffffff 0%, rgba(255, 197, 50, 0.9) 28%, rgba(4, 184, 216, 0.45) 55%, transparent 72%);
	transform: translate(-50%, -50%) scale(0.15);
	opacity: 0;
	animation: vc-hf-puff-flash 1.05s cubic-bezier(0.15, 0.85, 0.35, 1) forwards;
	box-shadow: 0 0 60px 20px rgba(255, 197, 50, 0.55);
}

.vc-hf-find__puff .vc-hf-puff-ring {
	position: absolute;
	top: 45%;
	left: 50%;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 3px solid rgba(255, 197, 50, 0.95);
	box-shadow:
		0 0 18px rgba(4, 184, 216, 0.85),
		inset 0 0 12px rgba(255, 255, 255, 0.45);
	transform: translate(-50%, -50%) scale(0.3);
	opacity: 0;
	animation: vc-hf-puff-ring 1.25s ease-out forwards;
}

.vc-hf-find__puff .vc-hf-puff-smoke,
.vc-hf-find__puff .vc-hf-puff-spark,
.vc-hf-find__puff .vc-hf-puff-star,
.vc-hf-find__puff .vc-hf-puff-streak {
	position: absolute;
	top: 45%;
	left: 50%;
	will-change: transform, opacity;
}

.vc-hf-find__puff .vc-hf-puff-smoke {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(4, 184, 216, 0.45) 40%, transparent 72%);
	filter: blur(2px);
	transform: translate(-50%, -50%) scale(0.2);
	animation: vc-hf-puff-smoke 1.55s ease-out forwards;
}

.vc-hf-find__puff .vc-hf-puff-smoke--gold {
	background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 197, 50, 0.55) 42%, transparent 72%);
}

.vc-hf-find__puff .vc-hf-puff-smoke--cyan {
	background: radial-gradient(circle, rgba(255, 255, 255, 0.85) 0%, rgba(4, 184, 216, 0.6) 40%, rgba(124, 58, 237, 0.25) 60%, transparent 75%);
}

.vc-hf-find__puff .vc-hf-puff-spark {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0.3);
	animation: vc-hf-puff-spark 1.35s cubic-bezier(0.12, 0.8, 0.3, 1) forwards;
}

.vc-hf-find__puff .vc-hf-puff-star {
	font-size: 1.15rem;
	line-height: 1;
	font-weight: 800;
	text-shadow: 0 0 12px currentColor, 0 0 24px rgba(255, 197, 50, 0.8);
	transform: translate(-50%, -50%) scale(0.2);
	animation: vc-hf-puff-star 1.55s ease-out forwards;
}

.vc-hf-find__puff .vc-hf-puff-streak {
	width: var(--len, 60px);
	height: 3px;
	border-radius: 999px;
	transform: translate(-50%, -50%) rotate(var(--ang, 0deg)) scaleX(0.2);
	opacity: 0;
	filter: drop-shadow(0 0 6px rgba(255, 197, 50, 0.8));
	animation: vc-hf-puff-streak 0.95s ease-out forwards;
}

.vc-hf-find.is-puffing {
	animation: vc-hf-find-thump 0.7s cubic-bezier(0.2, 1.4, 0.35, 1);
	box-shadow:
		0 0 0 3px rgba(255, 197, 50, 0.75),
		0 0 48px rgba(4, 184, 216, 0.55),
		0 0 90px rgba(255, 197, 50, 0.4),
		0 22px 56px rgba(0, 0, 0, 0.35);
}

.vc-hf-find__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.vc-hf-find__chip {
	min-height: 44px;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	border: 1.5px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	cursor: pointer;
	backdrop-filter: blur(6px);
	transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.vc-hf-find__chip:hover {
	transform: translateY(-1px);
	border-color: rgba(4, 184, 216, 0.7);
	background: rgba(4, 184, 216, 0.18);
}

.vc-hf-find__chip.is-active {
	color: #062042;
	background: linear-gradient(135deg, #ffd84d 0%, #ffc532 100%);
	border-color: #ffc532;
	box-shadow: 0 0 18px rgba(255, 197, 50, 0.55);
}

a.vc-hf-find__chip--compare {
	text-decoration: none !important;
	color: #062042;
	background: linear-gradient(135deg, rgba(4, 184, 216, 0.95) 0%, rgba(4, 69, 175, 0.92) 100%);
	border-color: rgba(255, 197, 50, 0.85);
	box-shadow: 0 0 16px rgba(4, 184, 216, 0.45);
	gap: 0.35rem;
}

a.vc-hf-find__chip--compare:hover,
a.vc-hf-find__chip--compare:focus {
	color: #062042;
	background: linear-gradient(135deg, #ffd84d 0%, #ffc532 100%);
	border-color: #ffc532;
	transform: translateY(-1px);
	outline: none;
}

.vc-hf-find__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	margin-top: 0.85rem;
}

.vc-hf-find__count {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(232, 241, 255, 0.9);
}

.vc-hf-find__count.is-hit {
	color: #ffc532;
	text-shadow: 0 0 12px rgba(255, 197, 50, 0.55);
}

.vc-hf-find__reset {
	min-height: 40px;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	cursor: pointer;
}

.vc-hf-find__reset:hover {
	border-color: #ffc532;
	color: #ffc532;
}

.vc-hf-find__hit {
	margin: 0.75rem 0 0;
	padding: 0.55rem 0.85rem;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-family: "Orbitron", "Rajdhani", sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #062042;
	background: linear-gradient(135deg, rgba(255, 216, 77, 0.95), rgba(4, 184, 216, 0.85));
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.vc-hf-find__hit.is-replay {
	animation: vc-hf-hit-pop 0.55s ease;
}

.vc-hf-find__hit[hidden],
.vc-hf-find__empty[hidden],
.vc-hf-find__results[hidden],
.vc-hf-find__reset[hidden] {
	display: none !important;
}

.vc-hf-find__empty {
	margin: 0.75rem 0 0;
	padding: 0.7rem 0.9rem;
	border-radius: 12px;
	background: rgba(0, 0, 0, 0.22);
	border: 1px dashed rgba(255, 255, 255, 0.28);
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}

.vc-hf-find .vc-mkt-back-nav--find,
.vc-mkt-back-nav--find {
	width: 100%;
	max-width: none;
	margin: 0.85rem 0 0;
	padding: 0;
	position: relative;
	z-index: 2;
}

.vc-mkt-back-nav--find .vc-mkt-back-nav__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	justify-content: flex-start;
}

.vc-mkt-back-nav--find .vc-mkt-back-nav__link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 44px;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	font-family: "Orbitron", "Rajdhani", system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	color: #0445af !important;
	background: rgba(255, 255, 255, 0.96);
	border: 1.5px solid rgba(4, 69, 175, 0.35);
	box-shadow: 0 4px 14px rgba(4, 69, 175, 0.08);
	transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.vc-mkt-back-nav--find .vc-mkt-back-nav__link:hover,
.vc-mkt-back-nav--find .vc-mkt-back-nav__link:focus {
	color: #02367f !important;
	border-color: rgba(4, 184, 216, 0.55);
	background: #fff;
	text-decoration: none !important;
	transform: translateY(-1px);
	outline: none;
}

.vc-mkt-back-nav--find-dark .vc-mkt-back-nav__link {
	background: rgba(255, 255, 255, 0.97);
	border-color: rgba(255, 255, 255, 0.55);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.vc-mkt-back-nav--find .vc-mkt-back-nav__icon {
	font-size: 1rem;
	line-height: 1;
}

.vc-hf-find__results {
	margin-top: 0.85rem;
	padding: 0.85rem;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(8px);
}

.vc-hf-find__results-label {
	margin: 0 0 0.55rem;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 197, 50, 0.95);
}

.vc-hf-find__results-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.5rem;
}

@media (min-width: 700px) {
	.vc-hf-find__results-list {
		grid-template-columns: 1fr 1fr;
	}
}

.vc-hf-find__result {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-height: 44px;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	text-decoration: none;
	color: #fff;
	background: rgba(6, 42, 99, 0.55);
	border: 1px solid rgba(4, 184, 216, 0.35);
	transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.vc-hf-find__result:hover,
.vc-hf-find__result:focus {
	transform: translateY(-2px);
	border-color: #ffc532;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
	outline: none;
}

.vc-hf-find__result-title {
	font-family: "Orbitron", "Rajdhani", sans-serif;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.25;
}

.vc-hf-find__result-sub {
	font-size: 0.8rem;
	font-weight: 500;
	color: rgba(232, 241, 255, 0.78);
	line-height: 1.35;
}

.vc-hf-find__result-cta {
	margin-top: 0.25rem;
	font-size: 0.78rem;
	font-weight: 800;
	color: #ffc532;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.vc-home-facile__card.is-home-hidden {
	display: none !important;
}

.vc-home-facile__card.is-home-found {
	animation: vc-hf-card-found 0.7s ease both;
}

@keyframes vc-hf-find-spin {
	to { transform: rotate(360deg); }
}

@keyframes vc-hf-find-thump {
	0% { transform: scale(1); }
	35% { transform: scale(1.018); }
	100% { transform: scale(1); }
}

@keyframes vc-hf-puff-bloom {
	0% { opacity: 0; }
	25% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes vc-hf-puff-flash {
	0% { opacity: 0; transform: translate(-50%, -50%) scale(0.15); }
	30% { opacity: 1; transform: translate(-50%, -50%) scale(1.4); }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(2.8); }
}

@keyframes vc-hf-puff-ring {
	0% { opacity: 0; transform: translate(-50%, -50%) scale(0.3); }
	20% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(8); }
}

@keyframes vc-hf-puff-smoke {
	0% { opacity: 0.9; transform: translate(-50%, -50%) scale(0.2); }
	100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, -80px))) scale(var(--sc, 2)); }
}

@keyframes vc-hf-puff-spark {
	0% { opacity: 1; transform: translate(-50%, -50%) scale(0.3); }
	100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px))) scale(0.1) rotate(var(--rot, 180deg)); }
}

@keyframes vc-hf-puff-star {
	0% { opacity: 1; transform: translate(-50%, -50%) scale(0.2) rotate(0deg); }
	100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px))) scale(1.2) rotate(var(--rot, 180deg)); }
}

@keyframes vc-hf-puff-streak {
	0% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--ang, 0deg)) scaleX(0.2); }
	30% { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, -50%) rotate(var(--ang, 0deg)) scaleX(1.6) translateX(40px); }
}

@keyframes vc-hf-hit-pop {
	0% { transform: scale(0.85); opacity: 0; }
	60% { transform: scale(1.05); opacity: 1; }
	100% { transform: scale(1); }
}

@keyframes vc-hf-card-found {
	0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(255, 197, 50, 0.6); }
	50% { transform: scale(1.02); box-shadow: 0 0 0 4px rgba(255, 197, 50, 0.35), 0 16px 32px rgba(4, 69, 175, 0.25); }
	100% { transform: scale(1); }
}

@media (max-width: 640px) {
	.vc-hf-find-wrap {
		margin-top: 0.5rem;
		margin-bottom: 1rem;
	}

	.vc-hf-find {
		padding: 1.1rem 1rem 1rem;
		border-radius: 16px;
	}

	.vc-hf-find__btn {
		flex: 1 1 100%;
		width: 100%;
	}

	.vc-hf-find__chip {
		font-size: 0.82rem;
		padding: 0.4rem 0.8rem;
	}

	.vc-hf-find__puff .vc-hf-puff-smoke {
		width: 58px;
		height: 58px;
	}
}

/* ——— Premium home polish (v1.6.20) ——— */
.vc-home-facile {
	--vc-blue-deep: #022a6b;
	--vc-font-display: "Orbitron", "Rajdhani", system-ui, sans-serif;
	--vc-font-body: "Rajdhani", system-ui, -apple-system, "Segoe UI", sans-serif;
	--vc-radius: 16px;
	--vc-shadow: 0 10px 28px rgba(2, 42, 107, 0.08);
	--vc-shadow-hover: 0 18px 40px rgba(2, 42, 107, 0.14);
	font-family: var(--vc-font-body);
}

body:has(.vc-home-facile) {
	background-color: #f3f7fc !important;
	background-image:
		linear-gradient(rgba(4, 69, 175, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(4, 69, 175, 0.045) 1px, transparent 1px),
		radial-gradient(ellipse 80% 48% at 50% -8%, rgba(4, 184, 216, 0.12) 0%, transparent 55%),
		radial-gradient(ellipse 55% 40% at 100% 100%, rgba(255, 197, 50, 0.1) 0%, transparent 50%) !important;
	background-size: 48px 48px, 48px 48px, 100% 100%, 100% 100% !important;
}

.vc-home-facile__hero {
	min-height: clamp(240px, 36vw, 360px);
	background:
		radial-gradient(ellipse 70% 80% at 15% 20%, rgba(4, 184, 216, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 55% 70% at 88% 75%, rgba(255, 197, 50, 0.22) 0%, transparent 50%),
		linear-gradient(145deg, #033a8f 0%, #0445af 38%, #022a6b 72%, #011a42 100%);
	isolation: isolate;
}

.vc-home-facile__hero-mesh {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.28;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 20%, transparent 85%);
}

.vc-home-facile__hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(42px);
	pointer-events: none;
	z-index: 0;
	opacity: 0.55;
	will-change: transform;
}

.vc-home-facile__hero-orb--cyan {
	width: min(42vw, 320px);
	height: min(42vw, 320px);
	left: -8%;
	top: -18%;
	background: rgba(4, 184, 216, 0.55);
	animation: vc-home-orb-drift 12s ease-in-out infinite alternate;
}

.vc-home-facile__hero-orb--gold {
	width: min(36vw, 260px);
	height: min(36vw, 260px);
	right: -6%;
	bottom: -22%;
	background: rgba(255, 197, 50, 0.42);
	animation: vc-home-orb-drift 15s ease-in-out infinite alternate-reverse;
}

@keyframes vc-home-orb-drift {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to { transform: translate3d(18px, -14px, 0) scale(1.08); }
}

.vc-home-facile__hero-inner {
	padding: clamp(48px, 8vw, 72px) 24px clamp(56px, 9vw, 84px);
	animation: vc-home-hero-in 0.7s ease both;
}

@keyframes vc-home-hero-in {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: translateY(0); }
}

.vc-home-facile__brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	margin: 0 0 1rem;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	font-family: var(--vc-font-display);
	font-size: clamp(0.72rem, 1.6vw, 0.82rem);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #062042;
	background: linear-gradient(135deg, #ffe082 0%, #ffc532 48%, #ffb300 100%);
	box-shadow: 0 8px 24px rgba(255, 197, 50, 0.35);
}

.vc-home-facile__brand-mark {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--vc-blue);
	box-shadow: 0 0 0 3px rgba(4, 69, 175, 0.18);
}

.vc-home-facile__hero-title {
	font-family: var(--vc-font-display);
	font-size: clamp(1.75rem, 4.6vw, 3.05rem);
	text-wrap: balance;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.vc-home-facile__hero-highlight {
	margin-top: 0.18em;
	background: linear-gradient(180deg, #ffe082 0%, #ffc532 55%, #f0b400 100%);
	color: var(--vc-blue-deep);
	padding: 0.08em 0.42em 0.1em;
	border-radius: 8px;
	box-shadow: 0 6px 18px rgba(255, 197, 50, 0.28);
}

.vc-home-facile__hero-lead {
	margin-top: 1rem;
	font-size: clamp(1rem, 2.1vw, 1.18rem);
	font-weight: 500;
	max-width: 38rem;
}

.vc-home-facile__nav {
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 8px 24px rgba(4, 69, 175, 0.06);
}

.vc-hf-find-wrap {
	margin-top: -1.35rem;
	max-width: 960px;
}

.vc-hf-find {
	border-radius: 22px;
	border-width: 2px;
	box-shadow:
		0 22px 56px rgba(0, 0, 0, 0.34),
		0 0 0 1px rgba(255, 255, 255, 0.14) inset,
		0 0 48px rgba(4, 184, 216, 0.2);
}

.vc-home-facile__panels-wrap {
	background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(4, 184, 216, 0.08) 0%, transparent 55%);
	padding-top: 28px;
	padding-bottom: 40px;
}

.vc-home-facile__featured {
	gap: 16px;
}

.vc-home-facile__card {
	border-radius: var(--vc-radius);
	box-shadow: var(--vc-shadow);
	overflow: hidden;
	contain: layout paint;
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.vc-home-facile__card--featured {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	border-color: rgba(4, 69, 175, 0.14);
}

.vc-home-facile__card--featured::before {
	content: "";
	display: block;
	height: 4px;
	background: linear-gradient(90deg, var(--vc-blue) 0%, var(--vc-cyan) 55%, var(--vc-gold) 100%);
}

.vc-home-facile__card:hover,
.vc-home-facile__card:focus-within {
	transform: translateY(-4px);
	box-shadow: var(--vc-shadow-hover);
	border-color: rgba(4, 184, 216, 0.35);
}

.vc-home-facile__card--featured .vc-home-facile__card-link {
	min-height: 268px;
	padding-left: 112px;
	padding-top: 22px;
	padding-right: 20px;
}

.vc-home-facile__badge {
	border-radius: 999px;
	padding: 5px 11px;
	border: 1px solid rgba(4, 184, 216, 0.22);
	letter-spacing: 0.07em;
}

.vc-home-facile__card-title--readable {
	font-family: var(--vc-font-body);
	font-weight: 700;
	font-size: clamp(1.12rem, 2.35vw, 1.42rem);
	line-height: 1.28;
	letter-spacing: -0.02em;
	max-width: 22ch;
	color: var(--vc-blue-deep);
}

.vc-home-facile__card-sub {
	font-size: 0.95rem;
	line-height: 1.45;
	font-weight: 500;
}

.vc-home-facile__card-icon {
	filter: drop-shadow(0 8px 16px rgba(4, 69, 175, 0.18));
	transition: transform 0.22s ease;
}

.vc-home-facile__card--featured .vc-home-facile__card-icon {
	left: 20px;
}

.vc-home-facile__card--featured:hover .vc-home-facile__card-icon,
.vc-home-facile__card--featured:focus-within .vc-home-facile__card-icon {
	transform: translateY(-50%) scale(1.05);
}

.vc-home-facile__cta {
	border-radius: 999px;
	font-family: var(--vc-font-body);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	background: linear-gradient(180deg, #2bb04a 0%, var(--vc-cta) 100%);
	box-shadow: 0 8px 18px rgba(31, 143, 58, 0.28);
}

.vc-home-facile__card-link:hover .vc-home-facile__cta,
.vc-home-facile__card-link:focus .vc-home-facile__cta {
	background: linear-gradient(180deg, #249643 0%, var(--vc-cta-hover) 100%);
}

.vc-home-facile__card--compact .vc-home-facile__card-title {
	font-family: var(--vc-font-body);
	text-transform: none;
	font-size: 0.84rem;
	letter-spacing: -0.01em;
	font-weight: 700;
}

.vc-home-facile__soon {
	border-radius: 999px;
	background: #edf1f6;
}

@media (max-width: 767px) {
	.vc-home-facile__card--featured .vc-home-facile__card-link {
		min-height: 230px;
		padding-left: 18px;
		padding-top: 92px;
	}

	.vc-home-facile__card--featured .vc-home-facile__card-icon {
		left: 50%;
		top: 22px;
		transform: translateX(-50%);
	}

	.vc-home-facile__card--featured:hover .vc-home-facile__card-icon,
	.vc-home-facile__card--featured:focus-within .vc-home-facile__card-icon {
		transform: translateX(-50%) scale(1.05);
	}

	.vc-home-facile__card-title--readable {
		max-width: none;
	}

	.vc-home-facile__hero {
		min-height: 0;
		border-radius: 0;
	}

	.vc-home-facile__hero-title {
		font-size: clamp(1.45rem, 6.2vw, 1.95rem);
		padding-inline: 0.15rem;
	}

	.vc-home-facile__hero-lead {
		font-size: 0.95rem;
		padding-inline: 0.15rem;
		max-width: 100%;
	}

	.vc-home-facile__brand {
		font-size: 0.68rem;
		letter-spacing: 0.1em;
		padding: 0.3rem 0.75rem;
	}

	.vc-hf-find-wrap {
		margin-top: 0.35rem;
		padding-left: max(12px, env(safe-area-inset-left, 0px));
		padding-right: max(12px, env(safe-area-inset-right, 0px));
	}

	.vc-home-facile__panels-wrap {
		padding-left: max(12px, env(safe-area-inset-left, 0px));
		padding-right: max(12px, env(safe-area-inset-right, 0px));
		padding-bottom: max(28px, env(safe-area-inset-bottom, 0px));
	}

	.vc-home-facile__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.vc-home-facile__card--compact .vc-home-facile__card-link {
		padding: 14px 12px 48px;
		min-height: 0;
	}

	.vc-home-facile__card--compact .vc-home-facile__card-title {
		font-size: 0.78rem;
		line-height: 1.25;
		overflow-wrap: anywhere;
	}

	.vc-home-facile__card--compact .vc-home-facile__card-sub {
		font-size: 0.72rem;
		line-height: 1.35;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vc-hf-find::before,
	.vc-hf-find.is-puffing,
	.vc-hf-find__hit,
	.vc-home-facile__card.is-home-found,
	.vc-home-facile__hero-orb,
	.vc-home-facile__hero-inner,
	.vc-hf-find__puff .vc-hf-puff-bloom,
	.vc-hf-find__puff .vc-hf-puff-flash,
	.vc-hf-find__puff .vc-hf-puff-ring,
	.vc-hf-find__puff .vc-hf-puff-smoke,
	.vc-hf-find__puff .vc-hf-puff-spark,
	.vc-hf-find__puff .vc-hf-puff-star,
	.vc-hf-find__puff .vc-hf-puff-streak {
		animation: none !important;
	}

	.vc-home-facile__card,
	.vc-home-facile__card-icon {
		transition: none !important;
	}
}
