:root {
	--config-beige-rgb: 247, 244, 241;
	--config-beige-alpha: 0.2;
	--config-beige: rgba(var(--config-beige-rgb), var(--config-beige-alpha));
	--config-beige-solid: rgba(var(--config-beige-rgb), 1);
	--background-rgb-color: var(--config-beige-rgb);
	--bg: rgba(var(--background-rgb-color), var(--config-beige-alpha));
	--bg-accent:
		radial-gradient(circle at 12% 0%, rgba(var(--background-rgb-color), 0.34), transparent 32%),
		radial-gradient(circle at 88% 14%, rgba(var(--background-rgb-color), 0.22), transparent 30%),
		linear-gradient(180deg, rgba(var(--background-rgb-color), 0.24) 0%, rgba(var(--background-rgb-color), 0.14) 46%, rgba(var(--background-rgb-color), 0.2) 100%);
	--banner-bg: #f7f4f1;
	--banner-bg-soft: #fbf9f7;
	--surface: var(--config-beige);
	--surface-solid: var(--config-beige);
	--surface-soft: var(--config-beige);
	--surface-strong: #101010;
	--text: #101010;
	--text-muted: #45413c;
	--text-soft: #79716a;
	--line: rgba(16, 16, 16, 0.1);
	--line-strong: rgba(16, 16, 16, 0.18);
	--primary: #071b3b;
	--primary-soft: rgba(7, 27, 59, 0.1);
	--primary-strong: #06142b;
	--shadow-lg: 0 28px 80px rgba(42, 34, 26, 0.12);
	--shadow-md: 0 18px 44px rgba(42, 34, 26, 0.09);
	--shadow-sm: 0 10px 24px rgba(42, 34, 26, 0.06);
	--radius-xl: 18px;
	--radius-lg: 14px;
	--radius-md: 10px;
	--radius-sm: 8px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scrollbar-gutter: stable;
	max-width: 100%;
	overflow-x: clip;
}

body {
	font-family: 'Arial Nova', Arial, sans-serif;
	background: var(--config-beige-solid);
	color: var(--text);
	margin: 0;
	min-height: 100vh;
	max-width: 100%;
	overflow-x: clip;
}

body::before {
	display: none;
}

.is-booting .lang-switcher {
	visibility: hidden;
}

.is-booting .header .tabs > :not([data-tab="home"]){
	display: none;
}

a {
	color: inherit;
}

.header {
	position: sticky;
	top: 0;
	z-index: 50;
	padding: 0;
	background: var(--config-beige);
	border-bottom: 1px solid rgba(16, 16, 16, 0.06);
	backdrop-filter: blur(16px);
}

.header-content {
	max-width: none;
	margin: 0 auto;
}

.header-content {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 86px;
	padding: 0 56px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.logo-container {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	flex-shrink: 0;
	padding: 0;
	background: transparent;
	border: 0;
	cursor: pointer;
	appearance: none;
}

.logo-container:focus-visible {
	outline: 2px solid rgba(13, 94, 168, 0.35);
	outline-offset: 6px;
	border-radius: 12px;
}

.logo {
	height: 46px;
	width: auto;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.logo-hub {
	padding-bottom: 6px;
	color: #041E43;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
}

.lang-switcher {
	margin-left: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	place-items: center;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--config-beige);
	color: var(--primary-strong);
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(7, 27, 59, 0.18);
	background: var(--config-beige);
	outline: none;
}

.nav-toggle__bars {
	position: relative;
	display: block;
	width: 18px;
	height: 12px;
}

.nav-toggle__bars span {
	position: absolute;
	left: 0;
	right: 0;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.nav-toggle__bars span:nth-child(1) {
	top: 0;
}

.nav-toggle__bars span:nth-child(2) {
	top: 5px;
}

.nav-toggle__bars span:nth-child(3) {
	top: 10px;
}

body.is-nav-open .nav-toggle__bars span:nth-child(1) {
	top: 5px;
	transform: rotate(45deg);
}

body.is-nav-open .nav-toggle__bars span:nth-child(2) {
	opacity: 0;
}

body.is-nav-open .nav-toggle__bars span:nth-child(3) {
	top: 5px;
	transform: rotate(-45deg);
}

.nav-backdrop {
	position: fixed;
	inset: 0;
	z-index: 40;
	padding: 0;
	border: 0;
	background: rgba(16, 16, 16, 0.28);
	cursor: pointer;
}

.nav-backdrop[hidden] {
	display: none;
}

.global-search-trigger {
	display: none;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 0 10px;
	border: 1px solid rgba(7, 27, 59, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.58);
	color: var(--primary);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	cursor: pointer;
	transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.global-search-trigger:hover,
.global-search-trigger:focus-visible {
	border-color: rgba(7, 27, 59, 0.28);
	background: #fff;
	outline: none;
	transform: translateY(-1px);
}

.global-search-trigger svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
}

.global-search-trigger kbd,
.global-search__field kbd {
	padding: 3px 6px;
	border: 1px solid rgba(7, 27, 59, 0.12);
	border-radius: 6px;
	background: rgba(7, 27, 59, 0.05);
	color: #5b6572;
	font: inherit;
	font-size: 0.64rem;
	font-weight: 750;
}

.profile-menu {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 10px;
	margin-bottom: -10px;
}

.profile-menu::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 12px;
}

.profile-customer-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 40px;
	flex: 0 0 32px;
}

.profile-customer-badge[hidden] {
	display: none;
}

.profile-customer-badge img {
	display: block;
	width: auto;
	height: 30px;
	max-width: 32px;
	object-fit: contain;
	transform-origin: center;
	transition: transform 0.2s ease, filter 0.2s ease;
}

.profile-customer-badge:hover {
	position: relative;
	z-index: 60;
}

.profile-customer-badge:hover img {
	transform: scale(3);
	filter: drop-shadow(0 8px 12px rgba(7, 27, 59, 0.24));
}

.profile-btn {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--config-beige);
	color: var(--primary-strong);
	cursor: pointer;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.profile-btn svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.profile-btn:hover,
.profile-btn:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(7, 27, 59, 0.18);
	background: var(--config-beige);
	outline: none;
}

.profile-menu__panel {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 20;
	display: grid;
	gap: 8px;
	min-width: 220px;
	max-width: min(380px, calc(100vw - 32px));
	padding: 12px;
	background: var(--config-beige-solid);
	border: 1px solid rgba(13, 94, 168, 0.12);
	border-radius: 18px;
	box-shadow: 0 18px 36px rgba(14, 41, 68, 0.18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.profile-btn:hover ~ .profile-menu__panel,
.profile-btn:focus-visible ~ .profile-menu__panel,
.profile-menu__panel:hover,
.profile-menu.is-hover-open .profile-menu__panel,
.profile-menu.is-open .profile-menu__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.profile-menu__welcome {
	margin: 0;
	padding: 10px 12px;
	border-radius: 12px;
	background: rgba(44, 139, 75, 0.1);
	color: #20653a;
	font-size: 0.84rem;
	font-weight: 700;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.profile-menu__welcome[hidden] {
	display: none;
}

.profile-menu__action {
	border: 0;
	border-radius: 12px;
	padding: 10px 14px;
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	text-align: center;
	transition: background 0.2s ease, transform 0.2s ease;
}

.profile-menu__action:hover,
.profile-menu__action:focus-visible {
	background: rgba(170, 133, 120, 0.55);
	color: #171310;
	transform: translateY(-1px);
	outline: none;
}

.lang-btn {
	display: none;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	border-radius: 999px;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
	align-items: center;
	opacity: 0.78;
}

.lang-btn.active {
	border-color: rgba(13, 94, 168, 0.18);
	background: var(--config-beige);
	opacity: 1;
	box-shadow: 0 10px 18px rgba(13, 94, 168, 0.12);
}

.lang-btn:hover,
.lang-btn:focus-visible {
	transform: translateY(-1px);
	opacity: 1;
	outline: none;
}

.flag-icon {
	height: 24px;
	width: 34px;
	object-fit: cover;
	display: block;
	border-radius: 999px;
	box-shadow: 0 6px 12px rgba(14, 41, 68, 0.12);
}

.header .tabs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	min-width: 0;
	gap: clamp(22px, 3vw, 42px);
	padding: 0 4px;
}

.tab-menu {
	--tab-menu-overhang: 28px;
	position: relative;
	display: flex;
	padding-bottom: var(--tab-menu-overhang);
	margin-bottom: calc(-1 * var(--tab-menu-overhang));
}

.tab-menu::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 14px;
}

.tab {
	position: relative;
	font-family: 'Arial Nova', Arial, sans-serif;
	padding: 32px 0 30px;
	cursor: pointer;
	background: transparent;
	border: 0;
	outline: none;
	font-size: 0.86rem;
	font-weight: 700;
	color: #25211e;
	border-radius: 0;
	transition: color 0.18s ease;
	box-shadow: none;
}

.tab:hover,
.tab:focus-visible {
	color: var(--primary);
	background: transparent;
	outline: none;
}

.tab.active {
	color: #101010;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	font-weight: 800;
}

.tab::after,
.tab-menu__trigger::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 23px;
	height: 1px;
	background: currentColor;
	opacity: 0;
	transform: scaleX(0.5);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.tab.active::after,
.tab:hover::after,
.tab:focus-visible::after,
.tab-menu__trigger.active::after,
.tab-menu.is-open .tab-menu__trigger::after,
.tab-menu:hover .tab-menu__trigger::after,
.tab-menu__trigger:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.tab-menu__trigger {
	position: relative;
	font-family: 'Arial Nova', Arial, sans-serif;
	padding: 32px 0 30px;
	cursor: pointer;
	background: transparent;
	border: 0;
	outline: none;
	font-size: 0.86rem;
	font-weight: 700;
	color: #25211e;
	border-radius: 0;
	transition: color 0.18s ease;
	box-shadow: none;
}

.tab-menu:hover .tab-menu__trigger,
.tab-menu.is-open .tab-menu__trigger,
.tab-menu__trigger:focus-visible {
	color: var(--primary);
	background: transparent;
	outline: none;
}

.tab-menu__trigger.active {
	color: #101010;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	font-weight: 800;
}

.tab-menu__panel {
	position: absolute;
	top: calc(100% - var(--tab-menu-overhang));
	left: 0;
	z-index: 30;
	display: grid;
	gap: 8px;
	min-width: 220px;
	padding: 12px;
	border-radius: 18px;
	background: var(--config-beige-solid);
	border: 1px solid rgba(16, 16, 16, 0.08);
	box-shadow: 0 22px 40px rgba(42, 34, 26, 0.18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.tab-menu:hover .tab-menu__panel,
.tab-menu.is-open .tab-menu__panel,
.tab-menu:focus-within .tab-menu__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.tab-menu.is-locked-closed .tab-menu__panel,
.tab-menu.is-locked-closed.is-open .tab-menu__panel,
.tab-menu.is-locked-closed:hover .tab-menu__panel,
.tab-menu.is-locked-closed:focus-within .tab-menu__panel {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-8px);
}

.tab-menu__item {
	padding: 11px 14px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: var(--surface-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.86rem;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.tab-menu__item:hover,
.tab-menu__item:focus-visible {
	background: rgba(16, 16, 16, 0.06);
	color: var(--primary-strong);
	transform: translateX(2px);
	outline: none;
}

.tab__icon {
	display: none;
}

.tab__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.tab--promo::before {
	content: '';
	position: absolute;
	top: 31px;
	right: -9px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #bc8f7e;
}

.header .tab[data-tab="training"] {
	display: none;
}

.update-ticker[hidden] {
	display: none;
}

.update-ticker {
	max-width: none;
	margin: 15px auto 14px;
	padding: 0 clamp(36px, 10vw, 160px);
}

.update-ticker__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: stretch;
	overflow: hidden;
	border-radius: 20px;
	border: 1px solid rgba(4, 30, 67, 1);
	background: rgba(161, 176, 215, 0.7);
	box-shadow: 0 18px 34px rgba(96, 44, 26, 0.14);
}

.update-ticker__badge {
	display: inline-flex;
	align-items: center;
	padding: 6px 13px;
	background: rgb(4, 30, 67);
	color: #fefefe;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.update-ticker__track {
	position: relative;
	overflow: hidden;
	min-width: 0;
}

.update-ticker__rail {
	display: flex;
	align-items: center;
	width: max-content;
	animation: updateTickerScroll 48s linear infinite;
	will-change: transform;
}

.update-ticker__content {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	min-width: max-content;
	padding: 5px 0;
	color: #ffffff;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.update-ticker__content span {
	padding-right: 48px;
}

@keyframes updateTickerScroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.container {
	max-width: none;
	margin: 0 auto 48px;
	padding: 0 0 32px;
	width: 100%;
	overflow-x: clip;
}

body.is-home-tab .container {
	margin-bottom: 0;
	padding-bottom: 0;
	background: var(--config-beige-solid);
}

.tab-content {
	display: none;
	position: relative;
	max-width: 1520px;
	margin: 28px auto 0;
	background: var(--config-beige);
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--shadow-md);
	backdrop-filter: blur(12px);
	overflow: hidden;
}

#home.tab-content {
	max-width: none;
	margin-top: 0;
	padding: 0 0 42px;
	background: var(--config-beige-solid);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.footer-design-banner {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(130px, 13vw, 190px);
	padding: 22px 6vw;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(20, 16, 12, 0.78) 0%, rgba(20, 16, 12, 0.52) 24%, rgba(20, 16, 12, 0.1) 52%, rgba(20, 16, 12, 0) 100%),
		url("../_files/footer-design-banner-test.jpg") center top / cover no-repeat;
	color: #ffffff;
}

.footer-design-banner__content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 8px;
	width: min(100%, 360px);
}

.footer-design-banner h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.35rem, 2vw, 2.2rem);
	font-weight: 900;
	line-height: 0.96;
	letter-spacing: 0;
	text-wrap: balance;
}

.footer-design-banner p {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(0.82rem, 0.95vw, 1rem);
	font-weight: 600;
	line-height: 1.3;
}

.footer-design-banner__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-self: start;
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(0.82rem, 0.95vw, 1rem);
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
}

.footer-design-banner__link svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.footer-design-banner__link:hover,
.footer-design-banner__link:focus-visible {
	color: #ffffff;
	text-decoration: underline;
	outline: none;
}

.site-footer {
	width: 100%;
	margin: 0;
	padding: 0;
	background: var(--config-beige);
	border-top: 1px solid rgba(16, 16, 16, 0.08);
	color: #111;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(240px, 320px) minmax(520px, max-content);
	justify-content: space-between;
	gap: 48px;
	width: 100%;
	margin: 0 auto;
	padding: 18px 6vw 16px;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.site-footer__brand,
.site-footer__details,
.site-footer__nav {
	min-width: 0;
}

.site-footer__brand p,
.site-footer__details p {
	margin: 0;
	color: #332e28;
}

.site-footer__brand {
	display: grid;
	align-content: start;
	gap: 0;
	max-width: 250px;
}

.site-footer__logo {
	display: flex;
	align-items: flex-end;
	gap: 4px;
	margin-bottom: 8px;
}

.site-footer__logo img {
	width: auto;
	height: 30px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.site-footer__logo span {
	padding-bottom: 4px;
	color: #041E43;
	font-size: 0.64rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
}

.site-footer__brand p {
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.35;
	white-space: nowrap;
	transform: translateY(-1px);
}

.site-footer__details {
	display: grid;
	align-content: start;
	gap: 3px;
	min-width: 560px;
	padding: 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	transform: translateX(240px);
}

.site-footer__details h4,
.site-footer__nav h4 {
	margin: 0 0 8px;
	color: #171310;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.site-footer__detail-row {
	color: #332e28;
	font-size: 0.76rem;
	font-weight: 600;
	line-height: 1.32;
	white-space: nowrap;
}

.site-footer__detail-row strong {
	color: #171310;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 800;
}

.site-footer__detail-row span {
	font-size: inherit;
}

.site-footer__nav {
	display: grid;
	align-content: start;
	gap: 8px;
}

.site-footer__nav a,
.site-footer__details a {
	width: fit-content;
	color: #332e28;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__details a:hover,
.site-footer__details a:focus-visible {
	color: #071b3b;
	border-color: currentColor;
	outline: none;
	transform: translateX(2px);
}

.site-footer__social {
	margin-top: 18px;
	padding-top: 0;
	border-top: 0;
	display: grid;
	gap: 0;
}

.site-footer__social-links {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	transform: translateY(8px);
}

.site-footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	color: #1a1a1a;
	text-decoration: none;
	border: 0;
	transform: none;
}

.site-footer__social-link svg {
	width: 24px;
	height: 24px;
	max-width: 24px;
	max-height: 24px;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.site-footer__social-link img {
	display: block;
	width: 24px;
	height: 24px;
	max-width: 24px;
	max-height: 24px;
	object-fit: contain;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
	color: #000;
	outline: none;
	transform: translateY(-1px);
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 24px;
	row-gap: 4px;
	width: 100%;
	margin: 0 auto;
	padding: 6px 6vw;
	border-top: 1px solid rgba(16, 16, 16, 0.08);
	color: #4c453e;
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.4;
}

.site-footer__clarity-notice {
	flex: 0 0 100%;
	margin: 0;
	padding-top: 4px;
	border-top: 1px solid rgba(16, 16, 16, 0.08);
	font-size: 0.66rem;
	font-weight: 400;
	line-height: 1.35;
}

.site-footer__privacy-trigger {
	display: inline;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: #071b3b;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.site-footer__privacy-trigger:hover,
.site-footer__privacy-trigger:focus-visible {
	color: #0d5ea8;
	outline-offset: 2px;
}

.site-footer__copyright {
	flex: 0 1 auto;
	white-space: nowrap;
}

.site-footer__legal-links {
	display: flex;
	align-items: center;
	gap: 0;
}

.site-footer__legal-links span,
.site-footer__legal-links a {
	color: #4c453e;
	text-decoration: none;
	padding: 0 18px;
	border-right: 1px solid rgba(16, 16, 16, 0.28);
}

.site-footer__legal-links span:first-child,
.site-footer__legal-links a:first-child {
	padding-left: 0;
}

.site-footer__legal-links a:last-child {
	padding-right: 0;
	border-right: 0;
}

.site-footer__legal-links a:hover,
.site-footer__legal-links a:focus-visible {
	color: #071b3b;
	outline: none;
}

.tab-content::before {
	display: none;
}

.tab-content.active {
	display: block;
}

.tab-content.page-section.active {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	backdrop-filter: none;
}

.page-section > * {
	position: relative;
	z-index: 1;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--primary-soft);
	color: var(--primary);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

h1,
h2,
h3 {
	font-family: 'Arial Nova', Arial, sans-serif;
	letter-spacing: 0;
}

h2 {
	font-size: clamp(2rem, 3vw, 3rem);
	line-height: 1.04;
	margin: 18px 0 10px;
	color: var(--surface-strong);
}

h3 {
	font-size: 1.15rem;
	line-height: 1.2;
}

p,
li,
span {
	line-height: 1.68;
}

.section-lead,
.page-section > p {
	max-width: 780px;
	font-size: 1.02rem;
	color: var(--text-muted);
}

.section-search {
	margin-bottom: 18px;
}

.section-search__input {
	display: block;
	width: 100%;
	padding: 14px 18px;
	border: 1px solid rgba(13, 94, 168, 0.12);
	border-radius: 16px;
	background: var(--config-beige);
	color: var(--surface-strong);
	font: inherit;
	box-shadow: var(--shadow-sm);
	outline: none;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.section-search__input:focus {
	border-color: rgba(13, 94, 168, 0.3);
	box-shadow: 0 0 0 4px rgba(13, 94, 168, 0.08);
	background: var(--config-beige);
}

.section-search__input::placeholder {
	color: var(--text-soft);
}

.section-search__empty {
	margin: 16px 0 0;
	color: var(--text-muted);
	font-style: italic;
}

.home-status-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}

.status-card,
.countdown-card,
.support-hours {
	padding: 10px 12px;
	border-radius: 16px;
	background: var(--config-beige);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-sm);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.status-card:hover,
.countdown-card:hover,
.support-hours:hover {
	transform: translateY(-2px);
	border-color: rgba(13, 94, 168, 0.18);
	box-shadow: 0 18px 30px rgba(14, 41, 68, 0.12);
}

.status-card__eyebrow,
.countdown-card__eyebrow {
	display: inline-flex;
	margin-bottom: 6px;
	padding: 4px 7px;
	border-radius: 999px;
	background: rgba(13, 94, 168, 0.1);
	color: var(--primary);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.64rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.countdown-card__eyebrow {
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #171310;
}

.status-card__row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.countdown-card__row {
	min-height: 18px;
}

.status-card__dot {
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: #2c8b4b;
	box-shadow: 0 0 0 4px rgba(44, 139, 75, 0.12);
	animation: statusPulse 2.4s ease-in-out infinite;
}

.status-card__dot[data-state="maintenance"] {
	background: #cf5d20;
	box-shadow: 0 0 0 4px rgba(207, 93, 32, 0.14);
}

.status-card__dot[data-state="degraded"] {
	background: #b88a16;
	box-shadow: 0 0 0 4px rgba(184, 138, 22, 0.14);
}

.status-card strong,
.countdown-card__value {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.98rem;
	color: var(--surface-strong);
}

.status-card p,
.countdown-card__detail,
.support-hours p {
	margin: 4px 0 0;
	color: var(--text-muted);
	font-size: 0.82rem;
}

.hero-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.95fr);
	gap: 24px;
	align-items: stretch;
	margin-bottom: 30px;
}

.hero-copy {
	padding: 30px;
	background: var(--config-beige);
	border: 1px solid rgba(13, 94, 168, 0.08);
	border-radius: 26px;
	box-shadow: var(--shadow-md);
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-copy p {
	margin-bottom: 0;
	font-size: 1.06rem;
}

.hero-panel {
	display: grid;
	gap: 10px;
	padding: 18px;
	background: linear-gradient(180deg, rgba(15, 40, 66, 0.96), rgba(12, 62, 107, 0.94));
	color: rgb(4, 30, 67);
	border-radius: 26px;
	box-shadow: 0 24px 40px rgba(8, 34, 59, 0.24);
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.hero-copy:hover,
.hero-panel:hover {
	transform: translateY(-3px);
}

.hero-copy:hover {
	border-color: rgba(13, 94, 168, 0.16);
	box-shadow: 0 24px 40px rgba(14, 41, 68, 0.14);
}

.hero-panel:hover {
	box-shadow: 0 28px 48px rgba(8, 34, 59, 0.28);
}

.hero-stat {
	padding: 18px;
	border-radius: 20px;
	background: var(--config-beige);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-stat:hover {
	transform: translateY(-2px);
	background: var(--config-beige);
	border-color: rgba(255, 255, 255, 0.18);
}

.hero-stat strong {
	display: block;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1.8rem;
	margin-bottom: 6px;
}

.hero-stat span {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.home-feature-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
}

.home-feature-grid li {
	padding: 20px 20px 20px 56px;
	background: var(--config-beige);
	border: 1px solid var(--line);
	border-radius: 20px;
	box-shadow: var(--shadow-sm);
	position: relative;
	color: var(--text-muted);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-feature-grid li:hover {
	transform: translateY(-3px);
	border-color: rgba(13, 94, 168, 0.18);
	box-shadow: 0 20px 30px rgba(14, 41, 68, 0.12);
}

.home-feature-grid li::before {
	content: '';
	position: absolute;
	top: 22px;
	left: 20px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--primary) 0%, #6ebcff 100%);
	box-shadow: 0 8px 18px rgba(13, 94, 168, 0.24);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-feature-grid li:hover::before {
	transform: scale(1.08);
	box-shadow: 0 12px 24px rgba(13, 94, 168, 0.28);
}

.home-feature-grid strong {
	display: block;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1rem;
	margin-bottom: 6px;
	color: var(--surface-strong);
}

.home-gif-section {
	margin-top: 38px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}

.home-gif-section p {
	margin-top: 0;
	margin-bottom: 22px;
	color: var(--text-muted);
}

.home-gif-grid,
.video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.home-gif-card,
.video-card,
.attachments li,
.faq-item {
	background: var(--config-beige);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.home-gif-card {
	margin: 0;
	overflow: hidden;
}

.home-gif-card img {
	display: block;
	width: 100%;
	height: auto;
	background: var(--config-beige);
}

.home-gif-card figcaption,
.home-gif-card__caption {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 20px 20px;
}

.home-gif-card strong,
.video-card h3 {
	color: var(--surface-strong);
}

.home-gif-card span {
	color: var(--text-muted);
}

.home-gif-section__link {
	display: inline-flex;
	align-items: center;
	margin: 0 0 18px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #171310;
	font: inherit;
	font-weight: 850;
	text-decoration: underline;
	text-underline-offset: 4px;
	cursor: pointer;
}

.home-gif-section__link:hover,
.home-gif-section__link:focus-visible {
	outline: none;
	color: #9f0d24;
}

#scoprilo .home-gif-section__link {
	margin: 18px 0 0;
	color: #000000;
}

#scoprilo .home-gif-section__link:hover,
#scoprilo .home-gif-section__link:focus-visible {
	color: #000000;
}

.home-hero-stage {
	position: relative;
	min-height: clamp(520px, 68vh, 720px);
	margin-bottom: 0;
	padding: clamp(34px, 4vw, 58px) 6vw 72px;
	border-radius: 0;
	border: 0;
	background: var(--banner-bg) url("../_files/home-hero-stage.jpg") center center / cover no-repeat;
	box-shadow: none;
	overflow: hidden;
	display: grid;
	align-items: start;
	isolation: isolate;
}

.home-hero-stage::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(247, 244, 241, 0.94) 0%, rgba(247, 244, 241, 0.78) 34%, rgba(247, 244, 241, 0.28) 58%, rgba(247, 244, 241, 0) 78%);
	z-index: 0;
}

.home-hero-stage::after {
	display: none;
}

.home-hero-stage__backdrop {
	display: none;
}

.home-hero-stage__backdrop::before {
	content: '';
	position: absolute;
	left: 46%;
	top: 0;
	width: 19%;
	height: 76%;
	background:
		linear-gradient(100deg, transparent 0 52%, var(--banner-bg) 52% 62%, transparent 62%),
		linear-gradient(180deg, var(--banner-bg), var(--banner-bg-soft));
	clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.home-hero-stage__backdrop::after {
	content: '';
	position: absolute;
	left: 36%;
	bottom: 0;
	width: 33%;
	height: 26%;
	background:
		radial-gradient(ellipse at 40% 44%, rgba(31, 25, 20, 0.75) 0 20%, transparent 21%),
		linear-gradient(165deg, transparent 0 42%, rgba(29, 24, 20, 0.88) 43% 61%, transparent 62%),
		linear-gradient(180deg, var(--banner-bg), var(--banner-bg-soft));
	clip-path: polygon(8% 56%, 48% 24%, 62% 72%, 100% 82%, 100% 100%, 0 100%);
	opacity: 0.84;
}

.home-hero-stage__content {
	position: relative;
	z-index: 1;
	width: min(48vw, 760px);
	max-width: 760px;
	margin: 0;
	text-align: left;
}

.home-hero-stage__title {
	margin: 0;
	max-width: 760px;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: clamp(2.45rem, 3.65vw, 4.1rem);
	font-weight: 500;
	line-height: 1.04;
	letter-spacing: 0;
	color: #050505;
}

.home-hero-stage__subtitle {
	margin: 28px 0 0;
	max-width: 620px;
	font-size: clamp(1rem, 1.2vw, 1.18rem);
	font-weight: 600;
	line-height: 1.45;
	color: #27231f;
}

.home-hero-features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(100%, 680px);
	margin-top: 44px;
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.home-hero-feature {
	display: grid;
	align-content: start;
	justify-items: start;
	gap: 10px;
	min-width: 0;
	padding: 0 20px;
	color: #171310;
	text-align: left;
}

.home-hero-feature:first-child {
	padding-left: 20px;
}

.home-hero-feature:last-child {
	padding-right: 20px;
}

.home-hero-feature + .home-hero-feature {
	border-left: 1px solid rgba(16, 16, 16, 0.14);
}

.home-hero-feature svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-hero-feature strong {
	margin-top: 8px;
	font-size: 0.86rem;
	font-weight: 800;
	line-height: 1.2;
}

.home-hero-feature span {
	max-width: 150px;
	color: #3f3832;
	font-size: 0.78rem;
	font-weight: 600;
	line-height: 1.45;
}

.home-hero-stage__actions {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.home-hero-stage__primary,
.home-hero-stage__secondary {
	min-height: 58px;
	padding: 0 30px;
	border-radius: 4px;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.96rem;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.home-hero-stage__primary {
	border: 1px solid #071b3b;
	background: #071b3b;
	color: rgb(4, 30, 67);
	box-shadow: 0 15px 26px rgba(7, 27, 59, 0.2);
}

.home-hero-stage__primary::after {
	content: ' ->';
}

.home-hero-stage__secondary {
	border: 1px solid #101010;
	background: var(--config-beige);
	color: #101010;
}

.home-hero-stage__primary:hover,
.home-hero-stage__primary:focus-visible,
.home-hero-stage__secondary:hover,
.home-hero-stage__secondary:focus-visible {
	transform: translateY(-2px);
	outline: none;
}

.home-hero-stage__secondary:hover,
.home-hero-stage__secondary:focus-visible {
	background: var(--config-beige);
}

.home-hero-stage__scroll {
	position: absolute;
	left: 6vw;
	bottom: 40px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #25211e;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	cursor: pointer;
}

.home-hero-stage__scroll span {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	line-height: 1;
}

.home-hero-stage__scroll svg,
.home-category-intro__note svg,
.home-configurator-action__arrow svg,
.discover-configurator-access__primary svg,
.updates-header__link svg,
.updates-feedback a svg,
.updates-panel-load-more svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-category-grid {
	display: grid;
	grid-template-columns: minmax(210px, 0.72fr) repeat(4, minmax(0, 1fr));
	gap: 28px;
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: 54px 6vw 68px;
	position: relative;
	z-index: 2;
	align-items: stretch;
	background: var(--config-beige-solid);
}

.home-category-intro {
	display: grid;
	align-content: start;
	gap: 10px;
	padding-top: 12px;
	color: #151515;
}

.home-category-intro > span {
	color: #7a7168;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.home-category-intro > span::after {
	display: none;
}

.home-category-intro h3 {
	max-width: 300px;
	margin: 0;
	font-family: 'Arial Nova', Arial, sans-serif;
	color: #20201f;
	font-size: clamp(1.55rem, 1.8vw, 2.1rem);
	font-weight: 800;
	line-height: 1.12;
}

.home-category-intro__note {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	justify-self: start;
	margin-top: 18px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #071b3b;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.2;
}

.home-category-card {
	padding: 0;
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: 12px;
	background: var(--config-beige);
	box-shadow: 0 12px 26px rgba(42, 34, 26, 0.08);
	cursor: pointer;
	overflow: hidden;
	text-align: center;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-category-card.has-render-media {
	display: none;
}

.home-category-card:hover,
.home-category-card:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(16, 16, 16, 0.18);
	box-shadow: 0 22px 36px rgba(42, 34, 26, 0.14);
	outline: none;
}

.home-category-card__media {
	position: relative;
	aspect-ratio: 1.32 / 1;
	height: auto;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	background: linear-gradient(135deg, var(--config-beige), var(--config-beige));
}

.home-category-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.home-category-card__media--manual.has-image::before,
.home-category-card__media--manual.has-image::after,
.home-category-card__media--doc.has-image::before,
.home-category-card__media--doc.has-image::after {
	display: none;
}

.home-category-card__media--manual img,
.home-category-card__media--doc img {
	filter: brightness(0.94);
}

.home-category-card__media--manual {
	border-radius: 12px 12px 0 0;
}

.home-category-card__media--manual::before,
.home-category-card__media--doc::before,
.home-category-card__media--render::before {
	content: '';
	position: absolute;
	inset: 20px 28px;
	border-radius: 4px;
	background: var(--config-beige);
	box-shadow: 0 14px 24px rgba(20, 24, 38, 0.12);
}

.home-category-card__media--manual::before {
	border-radius: 6px;
}

.home-category-card__media--manual::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 48%;
	height: 62%;
	border-radius: 6px;
	background:
		linear-gradient(90deg, rgba(16, 16, 16, 0.1) 0 10%, transparent 10%),
		linear-gradient(180deg, var(--config-beige), var(--config-beige));
	box-shadow: 0 16px 24px rgba(20, 24, 38, 0.16);
	transform: translate(-50%, -48%) rotate(-15deg);
}

.home-category-card__media--render {
	background:
		linear-gradient(90deg, var(--config-beige) 0 36%, var(--config-beige) 36% 58%, rgba(121, 101, 84, 0.46) 58% 100%),
		linear-gradient(180deg, var(--config-beige), var(--config-beige));
}

.home-category-card__media--render::after {
	content: '';
	position: absolute;
	left: 26%;
	right: 18%;
	bottom: 16%;
	height: 30%;
	border-radius: 2px;
	background: linear-gradient(90deg, #35302b, var(--config-beige));
	box-shadow: 0 14px 20px rgba(20, 24, 38, 0.14);
}

.home-category-card__media--doc {
	background: linear-gradient(135deg, var(--config-beige), var(--config-beige));
}

.home-category-card__media--doc::after {
	content: '';
	position: absolute;
	left: 44%;
	top: 17%;
	width: 46%;
	height: 66%;
	border-radius: 3px;
	background:
		repeating-linear-gradient(180deg, rgba(29, 29, 29, 0.18) 0 2px, transparent 2px 9px),
		linear-gradient(180deg, var(--config-beige), var(--config-beige));
	box-shadow: 0 18px 30px rgba(20, 24, 38, 0.16);
	transform: rotate(15deg);
}

.home-category-card__media-icon {
	position: absolute;
	left: 18px;
	top: 18px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--config-beige);
	color: #171310;
}

.home-category-card__media-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-category-card__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	padding: 0 18px;
	background: rgba(170, 133, 120, 0.4);
	backdrop-filter: blur(3px);
	color: #171310;
	font-size: 0.64rem;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.home-category-card__icon {
	display: grid;
	place-items: center;
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	color: currentColor;
}

.home-category-card__icon svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-category-card__play {
	position: absolute;
	inset: 50% auto auto 50%;
	width: 82px;
	height: 58px;
	transform: translate(-50%, -50%);
	border-radius: 16px;
	background: rgba(24, 27, 35, 0.75);
	box-shadow: 0 18px 26px rgba(0, 0, 0, 0.22);
}

.home-category-card__play::before {
	content: '';
	position: absolute;
	left: 33px;
	top: 19px;
	border-left: 18px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.home-category-card__body {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
	min-height: 82px;
	padding: 18px 20px;
	text-align: left;
}

.home-category-card__body span {
	color: #5d554e;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.38;
}

.home-category-card__body small {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	align-self: center;
	color: #071b3b;
	font-weight: 800;
	line-height: 1;
}

.home-category-card__body small svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-configurator-panel {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
	gap: 28px;
	width: calc(100% - 12vw);
	margin: 34px auto 44px;
	padding: 28px 44px 26px;
	overflow: hidden;
	border: 1px solid rgba(16, 16, 16, 0.05);
	border-radius: 8px;
	background: rgba(170, 133, 120, 0.07);
	box-shadow: none;
}

.home-configurator-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(90deg, rgba(170, 133, 120, 0.07), rgba(170, 133, 120, 0.05) 58%, rgba(170, 133, 120, 0.07));
	pointer-events: none;
}

.home-configurator-panel::after {
	display: none;
}

.home-configurator-panel__content {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: start;
	gap: 10px;
	padding-right: 20px;
	border-right: 2px solid rgba(16, 16, 16, 0.14);
}

.home-configurator-panel__eyebrow {
	color: #151515;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
}

.home-configurator-panel__eyebrow::after {
	content: '';
	display: block;
	width: 52px;
	height: 3px;
	margin-top: 10px;
	background: #151515;
}

.home-configurator-panel h3 {
	max-width: 590px;
	margin: 0;
	color: #2c2925;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: clamp(1.65rem, 2.05vw, 2.35rem);
	font-weight: 500;
	line-height: 1.14;
	letter-spacing: 0;
}

.home-configurator-panel p {
	max-width: 560px;
	margin: 4px 0 0;
	color: #4f4943;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.42;
}

.home-configurator-panel__actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin-top: 18px;
}

.home-configurator-action {
	display: grid;
	grid-template-columns: minmax(0, max-content) 18px;
	grid-template-rows: auto auto;
	justify-content: center;
	align-content: center;
	align-items: center;
	justify-items: center;
	gap: 8px 6px;
	min-height: 62px;
	padding: 2px 22px 0;
	border: 0;
	border-right: 2px solid rgba(16, 16, 16, 0.16);
	background: transparent;
	color: #171310;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.15;
	cursor: pointer;
	text-align: center;
	transition: color 0.18s ease, transform 0.18s ease;
}

.home-configurator-action[hidden] {
	display: none;
}

.home-featured-updates[hidden] {
	display: none !important;
}

.home-configurator-action:first-child {
	padding-left: 22px;
}

.home-configurator-action:last-child {
	border-right: 0;
}

.home-configurator-action:hover,
.home-configurator-action:focus-visible {
	color: #071b3b;
	transform: translateY(-2px);
	outline: none;
}

.home-configurator-action__icon {
	display: grid;
	grid-column: 1 / -1;
	grid-row: 1;
	place-items: center;
	width: 28px;
	height: 28px;
	color: currentColor;
}

.home-configurator-action__label {
	grid-column: 1;
	grid-row: 2;
	min-width: 0;
	max-width: 100%;
	overflow-wrap: normal;
	word-break: normal;
	white-space: normal;
}

.home-configurator-action__arrow {
	grid-column: 2;
	grid-row: 2;
	align-self: center;
	justify-self: center;
	line-height: 1;
}

.home-configurator-action__icon svg,
.home-configurator-stat__icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.15;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-configurator-panel__stats {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.home-configurator-stat {
	position: relative;
	display: grid;
	grid-template-rows: 56px minmax(50px, auto) minmax(40px, auto);
	row-gap: 10px;
	justify-items: start;
	align-content: center;
	min-height: 156px;
	padding: 0 34px 4px;
	border-right: 0;
}

.home-configurator-stat:last-child {
	border-right: 0;
}
.home-configurator-stat::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 2px;
	height: 66%;
	background: rgba(16, 16, 16, 0.14);
	transform: translateY(-50%);
}

.home-configurator-stat:last-child::after {
	display: none;
}

.home-configurator-stat__icon {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin-bottom: 0;
	border-radius: 999px;
	background: var(--config-beige);
	color: #171310;
	box-shadow: none;
}

.home-configurator-stat__icon svg {
	width: 28px;
	height: 28px;
}

.home-configurator-stat strong {
	color: #2b2926;
	font-size: clamp(2rem, 2.6vw, 2.75rem);
	font-weight: 500;
	line-height: 1;
}

.home-configurator-stat > span:last-child {
	margin-top: 0;
	color: #3f3a35;
	font-size: clamp(1rem, 1.25vw, 1.35rem);
	font-weight: 500;
	line-height: 1.25;
}

.home-featured-updates {
	display: grid;
	grid-template-columns: minmax(190px, 0.72fr) minmax(0, 3.2fr);
	gap: 36px;
	width: calc(100% - 12vw);
	margin: 115px auto 64px;
	padding: 0;
	align-items: start;
	background: var(--config-beige-solid);
}

.home-featured-updates__intro {
	display: grid;
	align-content: start;
	gap: 10px;
	padding-top: 12px;
	color: #151515;
}

.home-featured-updates__intro > span {
	color: #7a7168;
	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.home-featured-updates__intro h3 {
	max-width: 300px;
	margin: 0;
	color: #20201f;
	font-size: clamp(1.55rem, 1.8vw, 2.1rem);
	font-weight: 800;
	line-height: 1.12;
}

.home-featured-updates__link {
	justify-self: start;
	margin-top: 18px;
	padding: 0;
	color: #071b3b;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1.2;
}

.home-featured-updates__cards {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	padding-right: 0;
}

.home-featured-card {
	padding: 0;
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: 12px;
	background: var(--config-beige);
	box-shadow: 0 12px 26px rgba(42, 34, 26, 0.08);
	text-align: center;
	cursor: pointer;
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.home-featured-card:hover,
.home-featured-card:focus-visible {
	transform: translateY(-4px);
	border-color: rgba(16, 16, 16, 0.18);
	box-shadow: 0 22px 36px rgba(42, 34, 26, 0.14);
	outline: none;
}

.home-featured-card__media {
	position: relative;
	aspect-ratio: 1.32 / 1;
	height: auto;
	border-radius: 12px 12px 0 0;
	overflow: hidden;
	background: linear-gradient(135deg, var(--config-beige), var(--config-beige));
}

.home-featured-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-featured-card__media--placeholder {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 44%),
		linear-gradient(180deg, var(--config-beige), #e7e2dc);
}

.home-featured-card__media--catalog.has-image::before,
.home-featured-card__media--catalog.has-image::after {
	display: none;
}

.home-featured-card__media--catalog img {
	filter: brightness(0.94);
	object-fit: contain;
	padding: 12px;
	background: var(--config-beige);
}

.home-featured-card__media--catalog {
	background: linear-gradient(135deg, var(--config-beige), var(--config-beige));
}

.home-featured-card__media--catalog::before {
	content: '';
	position: absolute;
	inset: 20px 28px;
	border-radius: 4px;
	background: var(--config-beige);
	box-shadow: 0 14px 24px rgba(20, 24, 38, 0.12);
}

.home-featured-card__media--catalog::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 48%;
	height: 62%;
	border-radius: 6px;
	background:
		linear-gradient(90deg, rgba(16, 16, 16, 0.09), transparent 16%),
		linear-gradient(180deg, #fff 0 14%, var(--config-beige) 14% 100%);
	box-shadow: 0 16px 26px rgba(20, 24, 38, 0.14);
	transform: translate(-50%, -50%) rotate(-2deg);
}

.home-featured-card__media--update {
	background:
		linear-gradient(120deg, var(--config-beige) 0 32%, var(--config-beige) 32% 56%, var(--config-beige) 56% 100%),
		linear-gradient(180deg, var(--config-beige), var(--config-beige));
}

.home-featured-card__media--update::after {
	content: '';
	position: absolute;
	right: 12%;
	bottom: 18%;
	width: 58%;
	height: 32%;
	border-radius: 3px;
	background: linear-gradient(90deg, var(--config-beige) 0 42%, #47423d 42% 52%, var(--config-beige) 52% 100%);
	box-shadow: 0 16px 24px rgba(34, 27, 21, 0.16);
}

.home-featured-card__play {
	position: absolute;
	inset: 50% auto auto 50%;
	z-index: 2;
	width: 82px;
	height: 58px;
	transform: translate(-50%, -50%);
	border-radius: 16px;
	background: rgba(24, 27, 35, 0.75);
	box-shadow: 0 18px 26px rgba(0, 0, 0, 0.22);
}

.home-featured-card__play::before {
	content: '';
	position: absolute;
	left: 33px;
	top: 19px;
	border-left: 18px solid #fff;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.home-featured-card__media-icon {
	position: absolute;
	left: 18px;
	top: 18px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	background: var(--config-beige);
	color: #171310;
}

.home-featured-card__media-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-featured-card__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 34px;
	padding: 0 18px;
	background: rgba(170, 133, 120, 0.4);
	backdrop-filter: blur(3px);
	color: #171310;
	font-size: 0.64rem;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.home-featured-card__icon {
	display: grid;
	place-items: center;
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	color: currentColor;
}

.home-featured-card__icon svg {
	width: 14px;
	height: 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-featured-card__body {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
	min-height: 82px;
	padding: 18px 20px;
	text-align: center;
}

.home-featured-card__body > span {
	color: #5d554e;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.38;
}

.home-featured-card__body small {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	align-self: center;
	color: #071b3b;
	font-weight: 800;
	line-height: 1;
}

.home-featured-card__body small svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.home-kpi-strip {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 22px;
	margin-bottom: 34px;
	padding: 18px;
}

.discover-configurator__header {
	display: grid;
	gap: 10px;
	margin-bottom: 20px;
}

.discover-configurator__header h2 {
	margin: 0;
	color: #071b3b;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: clamp(1.65rem, 2.25vw, 2.55rem);
	font-weight: 850;
	line-height: 1.05;
	letter-spacing: 0;
}

.discover-configurator__header p {
	max-width: 780px;
	margin: 0;
	color: #5b6572;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}

.discover-configurator__description {
	display: grid;
	gap: 12px;
	max-width: 960px;
	color: #171310;
}

.discover-configurator__description h3 {
	margin: 12px 0 0;
	color: #171310;
	font-size: 1rem;
	font-weight: 850;
	line-height: 1.35;
}

.discover-configurator__description h3:first-child {
	margin-top: 0;
}

.discover-configurator__description p {
	max-width: none;
	color: #2f3338;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.65;
}

.discover-configurator__description strong {
	font-weight: 850;
}

.discover-configurator-access {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	margin: 28px 0 0;
	padding: 22px 28px;
	border-radius: 10px;
	background: linear-gradient(135deg, #082247 0%, #072f5f 58%, #052447 100%);
	color: #ffffff;
	box-shadow: 0 24px 48px rgba(7, 27, 59, 0.18);
}

.discover-configurator-access__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.discover-configurator-access__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.discover-configurator-access__copy {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.discover-configurator-access__copy h3 {
	max-width: 430px;
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.05rem, 1.35vw, 1.45rem);
	font-weight: 850;
	line-height: 1.16;
}

.discover-configurator-access__copy p {
	max-width: 540px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.88rem;
	font-weight: 650;
	line-height: 1.5;
}

.discover-configurator-access__actions {
	display: grid;
	justify-items: stretch;
	gap: 8px;
	min-width: 220px;
}

.discover-configurator-access__primary,
.discover-configurator-access__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	border-radius: 8px;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.discover-configurator-access__primary {
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	background: #ffffff;
	color: #071b3b;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.discover-configurator-access__secondary {
	min-height: 28px;
	padding: 0;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.78);
}

.discover-configurator-access__secondary[hidden] {
	display: none;
}

.discover-configurator-access__secondary svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.discover-configurator-access__primary:hover,
.discover-configurator-access__primary:focus-visible,
.discover-configurator-access__secondary:hover,
.discover-configurator-access__secondary:focus-visible {
	outline: none;
	transform: translateY(-2px);
}

.discover-configurator-kpis {
	display: grid;
	gap: 0;
	margin: 0 0 28px;
	padding: 26px 28px;
	border: 1px solid rgba(16, 16, 16, 0.06);
	border-radius: 14px;
	background: var(--config-beige);
	box-shadow: 0 22px 44px rgba(14, 41, 68, 0.1);
}

.discover-configurator-kpis .hero-stat {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 18px;
	align-items: center;
	padding: 0 34px;
	min-height: 82px;
	border: 0;
	border-right: 1px solid rgba(7, 27, 59, 0.12);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: #071b3b;
}

.discover-configurator-kpis .hero-stat:first-child {
	padding-left: 0;
}

.discover-configurator-kpis .hero-stat:last-child {
	padding-right: 0;
	border-right: 0;
}

.discover-configurator-kpis .hero-stat:hover {
	transform: none;
	background: transparent;
	border-color: rgba(7, 27, 59, 0.12);
}

.discover-configurator-kpis .home-configurator-stat__icon {
	grid-row: 1 / span 2;
	margin-bottom: 0;
	transform: none;
	color: #171310;
}

.discover-configurator-kpis .hero-stat strong {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: clamp(1.8rem, 2.4vw, 2.45rem);
	font-weight: 850;
	line-height: 1;
	color: #071b3b;
}

.discover-configurator-kpis .hero-stat > span:last-child {
	color: #6a7280;
	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.25;
}

.home-kpi-strip .hero-stat,
.home-kpi-strip .home-configurator-stat__icon,
.home-kpi-strip .hero-stat strong,
.home-kpi-strip .hero-stat > span:last-child,
.home-configurator-stat,
.home-configurator-stat .home-configurator-stat__icon,
.home-configurator-stat strong,
.home-configurator-stat > span:last-child {
	color: #171310;
}

.home-kpi-strip .home-configurator-stat__icon,
.home-configurator-stat .home-configurator-stat__icon {
	background: rgba(200, 16, 46, 0.08);
	box-shadow: inset 0 0 0 1px rgba(200, 16, 46, 0.18);
}

.home-gif-section--homepage {
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
}

#home *,
#home *::before,
#home *::after {
	box-shadow: none !important;
}

#home .home-configurator-panel {
	box-shadow: 0 12px 30px rgba(42, 34, 26, 0.08) !important;
}

.media-gallery-layout {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.documents-layout {
	display: grid;
	grid-template-columns: 340px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

#allegati.tab-content,
#video.tab-content {
	max-width: 1340px;
	padding: 42px;
	border-radius: 8px;
	background: var(--config-beige);
	box-shadow: 0 18px 52px rgba(18, 16, 14, 0.08);
}

.media-gallery-sidebar {
	display: grid;
	gap: 18px;
	padding: 20px;
	border-radius: 24px;
	background: var(--config-beige);
	border: 1px solid var(--line);
	box-shadow: var(--shadow-md);
}

.documents-sidebar {
	gap: 24px;
	padding: 0 28px 0 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	border-right: 1px solid rgba(16, 16, 16, 0.08);
}

.documents-sidebar__intro {
	display: grid;
	gap: 8px;
}

.documents-sidebar__intro h2 {
	margin: 0;
	font-size: clamp(1.7rem, 2.3vw, 2.35rem);
	line-height: 1;
	color: #171310;
}

.documents-sidebar__intro p {
	margin: 0;
	max-width: 260px;
	color: #5f5851;
	font-size: 0.88rem;
	font-weight: 600;
	line-height: 1.42;
}

.media-gallery-sidebar__sections {
	display: grid;
	gap: 10px;
	padding-top: 6px;
}

.media-gallery-sidebar__label {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--surface-strong);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.media-gallery-main {
	display: grid;
	gap: 20px;
}

.documents-main,
.media-gallery-main {
	display: grid;
	gap: 22px;
}

.documents-main__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.documents-main__count {
	margin: 0;
	color: #332e28;
	font-size: 0.86rem;
	font-weight: 800;
}

.media-gallery-group__count {
	margin: -8px 0 14px;
}

.attachments-group__count {
	margin: -8px 0 14px;
}

.documents-main__header h2 {
	margin: 0;
}

.documents-main__header .attachments-search {
	margin: 0 0 0 auto;
	width: min(360px, 100%);
}

.media-gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.media-placeholder-card {
	min-height: 164px;
	border-radius: 18px;
	border: 1px dashed rgba(13, 94, 168, 0.24);
	background:
		linear-gradient(135deg, rgba(13, 94, 168, 0.06), var(--config-beige)),
		repeating-linear-gradient(
			45deg,
			rgba(13, 94, 168, 0.04) 0 14px,
			var(--config-beige) 14px 28px
		);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.media-placeholder-card--wide {
	min-height: 220px;
}

#faq.tab-content {
	width: calc(100% - 48px);
	max-width: 1520px;
	margin: 28px auto 0;
	padding: 34px;
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: var(--radius-lg);
	background: var(--config-beige-solid);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.faq-hero {
	width: 100%;
	max-width: 100%;
	min-height: 300px;
	display: grid;
	align-items: start;
	padding: 0 0 34px;
	background: var(--config-beige-solid);
}

.faq-hero__copy {
	display: grid;
	gap: 10px;
	max-width: 760px;
}

.faq-hero__copy span {
	color: #071b3b;
	font-size: 0.8rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.faq-hero__copy h2 {
	margin: 0;
	color: #071b3b;
	font-size: clamp(2.1rem, 3.4vw, 3.7rem);
	font-weight: 850;
	line-height: 1.02;
	letter-spacing: 0;
	white-space: nowrap;
}

.faq-hero__copy p {
	max-width: 560px;
	margin: 0;
	color: #2f3440;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.42;
}

.faq-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
	gap: 22px;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding: 0 0 24px;
}

.faq-search {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
	width: 100%;
}

.faq-search .section-search__input {
	min-height: 54px;
	padding-right: 52px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.84);
	border-color: rgba(16, 16, 16, 0.08);
}

.faq-search .search-field__icon {
	top: 27px;
	right: 18px;
	width: 18px;
	height: 18px;
	transform: translateY(-50%);
}

.faq-filters {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
}

.faq-filter {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 42px;
	padding: 0 16px;
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.68);
	color: #20242c;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 850;
	cursor: pointer;
}

.faq-filter.active {
	background: #071b3b;
	color: #ffffff;
	border-color: #071b3b;
}

.faq-filter svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.faq-content {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 26px;
	align-items: start;
}

.faq-list {
	display: grid;
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.62);
	box-shadow: 0 18px 42px rgba(14, 41, 68, 0.08);
	overflow: hidden;
}

.faq-item {
	margin: 0;
	border: 0;
	border-bottom: 1px solid rgba(16, 16, 16, 0.08);
	background: transparent;
	box-shadow: none;
	border-radius: 0;
}

.faq-item:last-of-type {
	border-bottom: 0;
}

.faq-item[hidden] {
	display: none;
}

.faq-question {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 20px 56px 20px 24px;
	border: 0;
	background: transparent;
	color: #1c2531;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.98rem;
	font-weight: 850;
	line-height: 1.35;
	text-align: left;
	cursor: pointer;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 24px;
	top: 50%;
	color: #071b3b;
	font-size: 1.35rem;
	font-weight: 500;
	line-height: 1;
	transform: translateY(-50%);
}

.faq-answer {
	display: none;
	padding: 0 24px 20px;
	color: #4c5666;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.42;
}

.faq-answer p {
	margin: 0;
}

.faq-answer button {
	padding: 0;
	border: 0;
	background: transparent;
	color: #071b3b;
	font: inherit;
	font-weight: 900;
	text-decoration: underline;
	cursor: pointer;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-item.active .faq-question::after {
	content: '-';
}

.attachments-groups {
	display: grid;
	gap: 24px;
}

#allegati .attachments-groups {
	gap: 28px;
}
#allegati {
	text-align: left;
}

#allegati .documents-tree__item,
#allegati .attachments-group,
#allegati .document-card,
#allegati .document-card__body {
	text-align: left;
}

#allegati .attachments-group {
	display: grid;
	gap: 0;
}

#allegati .attachments-group[hidden],
#allegati [data-attachment-item][hidden] {
	display: none !important;
}

#allegati .attachments-group ul {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
}

.attachments-group__title {
	margin: 0 0 14px;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1.08rem;
	color: var(--surface-strong);
}

.attachments-group__meta {
	margin: 0 0 6px;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--primary);
}

.documents-tree {
	display: grid;
	gap: 8px;
}

.documents-tree__children {
	display: grid;
	gap: 6px;
	padding: 4px 0 4px 18px;
	margin-left: 10px;
	border-left: 1px solid rgba(13, 94, 168, 0.14);
}

.documents-tree__children[hidden] {
	display: none;
}

.documents-tree__item[hidden] {
	display: none !important;
}

.documents-tree__children--nested {
	padding-left: 22px;
}

.documents-tree__item {
	width: 100%;
	position: relative;
	padding: 9px 14px;
	border: 0;
	background: transparent;
	color: var(--surface-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.95rem;
	text-align: center;
	cursor: pointer;
	border-radius: 14px;
	transition: color 0.18s ease, transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.documents-tree__item:hover,
.documents-tree__item:focus-visible {
	color: var(--primary);
	outline: none;
	transform: translateX(2px);
	background: rgba(13, 94, 168, 0.08);
}

.documents-tree__item.active {
	background: linear-gradient(135deg, rgba(13, 94, 168, 0.14), rgba(36, 120, 196, 0.08));
	color: var(--primary-strong);
	font-weight: 700;
	box-shadow: inset 0 0 0 1px rgba(13, 94, 168, 0.18);
}

.documents-tree__item.is-ancestor {
	background: rgba(13, 94, 168, 0.08);
	color: var(--primary-strong);
}

.documents-tree__item--parent {
	padding-right: 40px;
}

.documents-tree__item--parent::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 14px;
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-62%) rotate(45deg);
	transition: transform 0.18s ease;
	opacity: 0.8;
}

.documents-tree__item--parent[aria-expanded="true"]::after {
	transform: translateY(-38%) rotate(225deg);
}

.documents-tree__item--child {
	padding-left: 34px;
	font-size: 0.9rem;
}

.documents-tree__item--grandchild::before {
	content: '▪';
	font-size: 0.72rem;
}

.documents-tree__item--child::before {
	content: '○';
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.8rem;
	color: rgba(13, 94, 168, 0.75);
}

.documents-tree__item--child.active::before,
.documents-tree__item--child.is-ancestor::before {
	color: currentColor;
}

#allegati .documents-tree,
#video .documents-tree {
	gap: 4px;
}

#allegati .documents-tree__children,
#video .documents-tree__children {
	gap: 4px;
	padding: 4px 0 4px 14px;
	border-left-color: rgba(16, 16, 16, 0.08);
}

#allegati .documents-tree__item,
#video .documents-tree__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 36px;
	padding: 8px 10px 8px 34px;
	border-radius: 6px;
	color: #47413b;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.84rem;
	font-weight: 700;
}

#allegati .documents-tree__item::before,
#video .documents-tree__item::before {
	content: '';
	position: absolute;
	left: 12px;
	top: 50%;
	width: 14px;
	height: 14px;
	background: currentColor;
	opacity: 0.72;
	transform: translateY(-50%);
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h8l4 4v16H6V2Zm7 1.8V7h3.2L13 3.8ZM8 11h8v1.8H8V11Zm0 4h8v1.8H8V15Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 2h8l4 4v16H6V2Zm7 1.8V7h3.2L13 3.8ZM8 11h8v1.8H8V11Zm0 4h8v1.8H8V15Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

#allegati .documents-tree__item:hover,
#allegati .documents-tree__item:focus-visible,
#video .documents-tree__item:hover,
#video .documents-tree__item:focus-visible {
	color: #171310;
	transform: none;
	background: rgba(16, 16, 16, 0.04);
}

#allegati .documents-tree__item.active,
#video .documents-tree__item.active {
	background: var(--config-beige);
	color: #171310;
	font-weight: 850;
	box-shadow: none;
}

#allegati .documents-tree__item.is-ancestor,
#video .documents-tree__item.is-ancestor {
	background: var(--config-beige);
	color: #171310;
}

#allegati .documents-tree__item--parent,
#video .documents-tree__item--parent {
	padding-right: 30px;
}

#allegati .documents-tree__item--parent::after,
#video .documents-tree__item--parent::after {
	right: 14px;
	width: 6px;
	height: 6px;
	border-right-width: 1.5px;
	border-bottom-width: 1.5px;
}

#allegati .documents-tree__item--child,
#video .documents-tree__item--child {
	padding-left: 42px;
	font-size: 0.82rem;
}

#allegati .documents-tree__item--child::before,
#video .documents-tree__item--child::before {
	left: 20px;
	color: currentColor;
}

#video .documents-tree__item--parent::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5A2.5 2.5 0 0 1 6.5 4h11A2.5 2.5 0 0 1 20 6.5v11a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 17.5v-11Zm2.5-.7a.7.7 0 0 0-.7.7v11c0 .39.31.7.7.7h11a.7.7 0 0 0 .7-.7v-11a.7.7 0 0 0-.7-.7h-11ZM10 9l5 3-5 3V9Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5A2.5 2.5 0 0 1 6.5 4h11A2.5 2.5 0 0 1 20 6.5v11a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 17.5v-11Zm2.5-.7a.7.7 0 0 0-.7.7v11c0 .39.31.7.7.7h11a.7.7 0 0 0 .7-.7v-11a.7.7 0 0 0-.7-.7h-11ZM10 9l5 3-5 3V9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

#video .documents-tree__item--child::before {
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5A2.5 2.5 0 0 1 6.5 4h11A2.5 2.5 0 0 1 20 6.5v11a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 17.5v-11Zm2.5-.7a.7.7 0 0 0-.7.7v11c0 .39.31.7.7.7h11a.7.7 0 0 0 .7-.7v-11a.7.7 0 0 0-.7-.7h-11ZM10 9l5 3-5 3V9Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6.5A2.5 2.5 0 0 1 6.5 4h11A2.5 2.5 0 0 1 20 6.5v11a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 4 17.5v-11Zm2.5-.7a.7.7 0 0 0-.7.7v11c0 .39.31.7.7.7h11a.7.7 0 0 0 .7-.7v-11a.7.7 0 0 0-.7-.7h-11ZM10 9l5 3-5 3V9Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.documents-tree__count {
	margin-left: auto;
	color: #8a8178;
	font-size: 0.72rem;
	font-weight: 800;
}

.documents-tree__item.active .documents-tree__count {
	color: #4f4943;
}

.documents-tree__item--parent .documents-tree__count {
	margin-right: 18px;
}

.attachments-subsections {
	margin: 0;
	padding-left: 22px;
	list-style: circle;
	color: var(--surface-strong);
}

.attachments-subsections li + li {
	margin-top: 8px;
}

.attachments-subsections span {
	color: var(--surface-strong);
}

.social-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(240px, 0.85fr);
	gap: 24px;
	margin-top: 26px;
	margin-bottom: 24px;
	padding: 24px;
	border: 1px solid rgba(13, 94, 168, 0.1);
	border-radius: 26px;
	background:
		radial-gradient(circle at top right, rgba(13, 94, 168, 0.16), transparent 24%),
		linear-gradient(180deg, var(--config-beige), var(--config-beige));
	box-shadow: var(--shadow-md);
}

.social-hero__copy {
	display: grid;
	gap: 10px;
}

.social-hero__eyebrow {
	display: inline-flex;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(13, 94, 168, 0.08);
	color: var(--primary-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.social-hero__copy h3,
.social-panel__header h3 {
	margin: 0;
}

.social-hero__copy p,
.social-panel__header p,
.social-map__note {
	margin: 0;
	color: var(--text-muted);
}

.social-hero__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	align-self: stretch;
}

.social-hero__stat,
.social-panel {
	padding: 20px;
	border-radius: 22px;
	border: 1px solid var(--line);
	background: var(--config-beige);
	box-shadow: var(--shadow-sm);
}

.social-hero__stat {
	display: grid;
	align-content: center;
	gap: 6px;
	text-align: center;
}

.social-hero__stat strong {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 2rem;
	line-height: 1;
	color: var(--surface-strong);
}

.social-hero__stat span {
	color: var(--text-muted);
	font-size: 0.92rem;
}

.social-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
	gap: 24px;
	align-items: start;
}

.social-panel {
	display: grid;
	gap: 18px;
}

.social-panel__header {
	display: grid;
	gap: 6px;
}

.social-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.social-card {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px;
	border-radius: 20px;
	text-decoration: none;
	border: 0;
	overflow: hidden;
	box-shadow: 0 14px 28px rgba(14, 41, 68, 0.08);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover,
.social-card:focus-visible {
	transform: translateY(-3px);
	box-shadow: 0 18px 34px rgba(14, 41, 68, 0.12);
	outline: none;
}

.social-card__icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	border-radius: 16px;
	background: var(--config-beige);
}

.social-card__icon svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.social-card__body {
	display: grid;
	gap: 2px;
}

.social-card__body strong {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1rem;
	color: inherit;
}

.social-card__body span {
	font-size: 0.9rem;
	opacity: 0.82;
}

.social-card--instagram {
	background: linear-gradient(135deg, #fdc468 0%, #df4996 52%, #4d38c8 100%);
	color: rgb(4, 30, 67);
}

.social-card--facebook {
	background: linear-gradient(135deg, #1877f2 0%, #0f5bcc 100%);
	color: rgb(4, 30, 67);
}

.social-card--linkedin {
	background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
	color: rgb(4, 30, 67);
}

.social-card--pinterest {
	background: linear-gradient(135deg, #e60023 0%, #ad081b 100%);
	color: rgb(4, 30, 67);
}

.social-card--youtube {
	background: linear-gradient(135deg, #ff4e45 0%, #c40d05 100%);
	color: rgb(4, 30, 67);
}

.social-map {
	overflow: hidden;
	border-radius: 22px;
	border: 1px solid rgba(13, 94, 168, 0.1);
	background: var(--config-beige);
	min-height: 360px;
}

.social-map iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
}

.media-subsections {
	margin-top: 20px;
	padding: 18px;
	border: 1px solid rgba(13, 94, 168, 0.12);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(13, 94, 168, 0.05), var(--config-beige));
	display: grid;
	gap: 10px;
}

.media-subsections__header {
	display: flex;
	align-items: center;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(13, 94, 168, 0.1);
}

.media-subsections__eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(13, 94, 168, 0.08);
	color: var(--primary-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.media-subsection {
	padding: 0;
	border-radius: 18px;
	background: var(--config-beige);
	border: 1px solid rgba(13, 94, 168, 0.08);
	box-shadow: 0 10px 20px rgba(13, 94, 168, 0.05);
}

.media-subsection__toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 16px 18px;
	border: 0;
	border-radius: 18px;
	background: transparent;
	cursor: pointer;
	text-align: center;
	transition: background 0.18s ease, color 0.18s ease;
}

.media-subsection__toggle::after {
	content: '+';
	flex: 0 0 auto;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--primary-strong);
}

.media-subsection.is-open .media-subsection__toggle {
	background: rgba(13, 94, 168, 0.05);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.media-subsection.is-open .media-subsection__toggle::after {
	content: '-';
}

.media-subsection__title {
	margin: 0;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.96rem;
	color: var(--surface-strong);
}

.media-subsection__panel {
	padding: 0 18px 18px;
}

.media-subsection__panel[hidden] {
	display: none;
}

.media-subsection__panel .media-card--nested + .media-card--nested {
	margin-top: 16px;
}

.media-subsection__empty {
	margin: 0;
	padding: 14px 16px;
	border-radius: 14px;
	background: rgba(13, 94, 168, 0.05);
	color: var(--surface-muted);
	font-size: 0.94rem;
	line-height: 1.42;
}

.media-card--nested .media-card__title {
	font-size: 1rem;
}

.attachments ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: subgrid;
	grid-column: 1 / -1;
	gap: 20px;
}

.attachments-search {
	margin-bottom: 0;
}

.search-field--with-icon {
	position: relative;
}

.search-field--with-icon .section-search__input {
	padding-right: 48px;
}

.search-field__icon {
	position: absolute;
	top: 50%;
	right: 16px;
	display: grid;
	width: 20px;
	height: 20px;
	place-items: center;
	color: var(--text-soft);
	pointer-events: none;
	transform: translateY(-50%);
}

.search-field__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.attachments-filters,
.video-index {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.attachments-filter,
.video-index__item {
	padding: 10px 14px;
	border: 1px solid rgba(13, 94, 168, 0.12);
	border-radius: 999px;
	background: var(--config-beige);
	color: var(--surface-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.86rem;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.attachments-filter.active,
.attachments-filter:hover,
.attachments-filter:focus-visible,
.video-index__item:hover,
.video-index__item:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(13, 94, 168, 0.22);
	background: rgba(13, 94, 168, 0.09);
	color: var(--primary-strong);
	outline: none;
}

.attachments li {
	margin: 0;
}

#allegati .document-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: 8px;
	background: var(--config-beige);
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(24, 21, 18, 0.06);
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#allegati .document-card:hover {
	transform: translateY(-2px);
	border-color: rgba(16, 16, 16, 0.14);
	box-shadow: 0 18px 34px rgba(24, 21, 18, 0.1);
}

#allegati .document-card a,
#allegati .document-card__inner,
#allegati .document-card--pending {
	display: grid;
	grid-template-rows: auto 1fr;
	flex: 1;
	height: 100%;
	min-height: 160px;
	gap: 0;
	padding: 0;
	color: #171310;
	text-decoration: none;
}

#allegati .document-card__preview {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 90px;
	background:
		radial-gradient(circle at 62% 18%, var(--config-beige), transparent 20%),
		linear-gradient(145deg, var(--config-beige), var(--config-beige));
	overflow: hidden;
}

#allegati .document-card__preview::after {
	content: '';
	position: absolute;
	top: 12px;
	right: 12px;
	width: 17px;
	height: 17px;
	background: #554f48;
	opacity: 0.8;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6v20h12V6l-4-4Zm1 5V4.8L17.2 7H15ZM8 10h8v1.6H8V10Zm0 3.6h8v1.6H8v-1.6Zm0 3.6h5v1.6H8v-1.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 2H6v20h12V6l-4-4Zm1 5V4.8L17.2 7H15ZM8 10h8v1.6H8V10Zm0 3.6h8v1.6H8v-1.6Zm0 3.6h5v1.6H8v-1.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

#allegati .document-card__preview--image {
	background: var(--config-beige);
}

#allegati .document-card__preview--image::after {
	display: none;
}

#allegati .document-card__preview--image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 90px;
	object-fit: cover;
}

#allegati .document-card__sheet {
	width: 48px;
	height: 74px;
	border-radius: 2px;
	background:
		linear-gradient(90deg, transparent 0 18%, rgba(16, 16, 16, 0.08) 18% 19%, transparent 19%),
		repeating-linear-gradient(180deg, transparent 0 13px, rgba(16, 16, 16, 0.11) 13px 15px),
		var(--config-beige);
	box-shadow: 0 14px 24px rgba(24, 21, 18, 0.2);
	transform: rotate(-12deg) skewY(3deg);
}

#allegati .document-card:nth-child(2n) .document-card__sheet {
	transform: rotate(12deg) skewY(-3deg);
}

#allegati .document-card__body {
	display: flex;
	flex-direction: column;
	min-height: 0;
	height: 100%;
	gap: 7px;
	padding: 12px 54px 14px 14px;
}

#allegati .document-card__title {
	color: #171310;
	font-size: 0.86rem;
	font-weight: 850;
	line-height: 1.22;
}

#allegati .document-card__meta {
	display: block;
	margin-top: auto;
	align-self: flex-start;
	color: #756e66;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.1;
}

#allegati .document-card__email {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(16, 16, 16, 0.1);
	border-radius: 999px;
	background: #ffffff;
	color: #171310;
	box-shadow: 0 10px 22px rgba(24, 21, 18, 0.16);
	cursor: pointer;
	transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
	z-index: 2;
}

#allegati .document-card__email:disabled,
#allegati .document-card__email[aria-busy="true"] {
	opacity: 0.65;
	cursor: progress;
}

#allegati .document-card__email:hover,
#allegati .document-card__email:focus-visible {
	outline: none;
	transform: translateY(-1px);
	background: rgba(170, 133, 120, 0.55);
	color: #171310;
	box-shadow: 0 14px 26px rgba(24, 21, 18, 0.22);
}

#allegati .document-card__email-icon {
	width: 18px;
	height: 18px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect width='20' height='16' x='2' y='4' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E") center / contain no-repeat;
}
#allegati .document-card__download {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	min-height: 34px;
	margin-top: 2px;
	padding: 0 14px;
	border: 1px solid rgba(200, 16, 46, 0.18);
	border-radius: 8px;
	background: #c8102e;
	color: #ffffff;
	font: inherit;
	font-size: 0.78rem;
	font-weight: 850;
	cursor: pointer;
}

#allegati .document-card__download:hover,
#allegati .document-card__download:focus-visible {
	outline: none;
	background: #9f0d24;
}

#allegati .document-card__download:disabled {
	opacity: 0.65;
	cursor: progress;
}

.attachments a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 22px;
	text-decoration: none;
	font-weight: 700;
	color: var(--surface-strong);
}

.attachments a::after {
	content: '';
	min-width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--primary-soft);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d5ea8' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 3H8.8C7.11984 3 6.27976 3 5.63803 3.32698C5.07354 3.6146 4.6146 4.07354 4.32698 4.63803C4 5.27976 4 6.11984 4 7.8V16.2C4 17.8802 4 18.7202 4.32698 19.362C4.6146 19.9265 5.07354 20.3854 5.63803 20.673C6.27976 21 7.11984 21 8.8 21H15.2C16.8802 21 17.7202 21 18.362 20.673C18.9265 20.3854 19.3854 19.9265 19.673 19.362C20 18.7202 20 17.8802 20 16.2V9M14 3L20 9M14 3V9H20'/%3E%3Cpath d='M9 14H15'/%3E%3Cpath d='M9 17H13'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 18px 18px;
}

#allegati .document-card a::after {
	display: none;
}

.documents-load-more {
	justify-self: center;
	min-width: 220px;
	min-height: 42px;
	padding: 0 22px;
	border: 1px solid rgba(16, 16, 16, 0.1);
	border-radius: 8px;
	background: var(--config-beige);
	color: #332e28;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 850;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(24, 21, 18, 0.05);
	transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.documents-load-more:hover,
.documents-load-more:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(16, 16, 16, 0.18);
	box-shadow: 0 14px 28px rgba(24, 21, 18, 0.08);
	outline: none;
}

.documents-load-more[hidden] {
	display: none;
}

.video-card {
	padding: 18px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.video-card:hover {
	transform: translateY(-3px);
	border-color: rgba(13, 94, 168, 0.16);
	box-shadow: 0 24px 38px rgba(14, 41, 68, 0.12);
}

.video-card h3 {
	margin-top: 0;
	margin-bottom: 12px;
	font-size: 1.04rem;
	min-height: 2.6em;
}

.video-list video {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 0;
	max-width: 100%;
	border-radius: 14px;
	background: #000;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.media-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.media-debug-link {
	display: inline-flex;
	width: fit-content;
	margin-bottom: 18px;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(15, 40, 66, 0.08);
	color: var(--surface-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-weight: 700;
	text-decoration: none;
}

.media-gallery__empty {
	margin: 0;
	padding: 18px 20px;
	border: 1px dashed rgba(13, 94, 168, 0.2);
	border-radius: 20px;
	background: rgba(13, 94, 168, 0.04);
	color: var(--text-muted);
}

.media-card {
	display: grid;
	gap: 16px;
	padding: 20px;
	border: 1px solid var(--line);
	border-radius: 24px;
	background:
		radial-gradient(circle at top right, rgba(13, 94, 168, 0.12), transparent 28%),
		linear-gradient(180deg, var(--config-beige), var(--config-beige));
	box-shadow: var(--shadow-md);
}

[data-media-item][hidden] {
	display: none !important;
}

.media-card__visual {
	overflow: hidden;
	border-radius: 18px;
	background: rgba(15, 40, 66, 0.06);
}

.media-card__visual--video {
	position: relative;
}

.media-card__visual--link {
	display: block;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-card__visual--link:hover,
.media-card__visual--link:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(15, 40, 66, 0.14);
}

.media-card__media {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	background: #000;
	transition: transform 180ms ease;
}

#video video.media-card__media:hover,
#video video.media-card__media:focus-visible {
	transform: scale(1.04);
}

#video [data-group-id="videos-montaggio-sinfonia"] .media-gallery-grid {
	grid-template-columns: minmax(280px, 360px);
	justify-content: start;
}

#video [data-group-id="videos-montaggio-sinfonia"] video.media-card__media {
	aspect-ratio: 9 / 16;
	object-fit: contain;
}

#video [data-group-id="videos-montaggio-sinfonia"] video.media-card__media:hover,
#video [data-group-id="videos-montaggio-sinfonia"] video.media-card__media:focus-visible {
	transform: none;
}

.media-card__poster {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 100%;
	padding: 0;
	border: 0;
	background: #000;
	cursor: pointer;
}

.media-card__poster[hidden] {
	display: none;
}

.media-card__poster-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	image-rendering: auto;
}

.media-card__poster-play {
	position: relative;
	width: 50px;
	height: 50px;
	border-radius: 999px;
	background: rgba(191, 161, 146, 0.92);
	box-shadow: 0 16px 30px rgba(54, 38, 31, 0.2);
	opacity: 0;
	transform: scale(0.92);
	transition: opacity 180ms ease, transform 180ms ease;
}

.media-card__poster-play::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 52%;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	transform: translate(-40%, -50%);
}

.media-card__poster:hover .media-card__poster-play,
.media-card__poster:focus-visible .media-card__poster-play {
	opacity: 1;
	transform: scale(1.06);
}

.media-card__error {
	display: grid;
	gap: 10px;
	padding: 20px;
	min-height: 220px;
	align-content: center;
	border: 1px dashed rgba(191, 55, 55, 0.35);
	background: rgba(191, 55, 55, 0.08);
	color: #7a1f1f;
}

.media-card__error-title {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1rem;
	text-transform: uppercase;
}

.media-card__error-url {
	overflow-wrap: anywhere;
	font-size: 0.88rem;
	color: #8f2e2e;
}

.media-card__error-link {
	display: inline-flex;
	width: fit-content;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(191, 55, 55, 0.14);
	color: #7a1f1f;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-weight: 700;
	text-decoration: none;
}

.media-card__body {
	display: grid;
	gap: 10px;
}

.media-card__title {
	margin: 0;
	font-size: 1.08rem;
	color: var(--surface-strong);
}

.media-card__link--debug {
	background: rgba(15, 40, 66, 0.08);
	color: var(--surface-strong);
}

.training-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
	gap: 24px;
	align-items: start;
}

.training-calendar-card,
.training-summary-card {
	background: var(--config-beige);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: var(--shadow-md);
}

.training-calendar-card {
	padding: 22px;
}

.training-calendar__header {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.training-calendar__title {
	margin: 0;
	text-align: center;
	font-size: 1.2rem;
	color: var(--surface-strong);
}

.training-calendar__nav {
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: rgba(13, 94, 168, 0.08);
	color: var(--primary-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
}

.training-calendar__weekdays,
.training-calendar__grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
}

.training-calendar__weekdays {
	margin-bottom: 12px;
}

.training-calendar__weekday {
	text-align: center;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--text-soft);
	text-transform: uppercase;
}

.training-calendar__day {
	min-height: 56px;
	border: 0;
	border-radius: 18px;
	background: rgba(13, 94, 168, 0.08);
	color: var(--surface-strong);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.training-calendar__day[disabled] {
	background: rgba(15, 40, 66, 0.04);
	color: rgba(25, 50, 74, 0.35);
	cursor: default;
}

.training-calendar__day.is-selected {
	background: linear-gradient(135deg, var(--primary) 0%, #2478c4 100%);
	color: rgb(4, 30, 67);
	box-shadow: 0 16px 24px rgba(13, 94, 168, 0.22);
}

.training-summary-card {
	padding: 24px;
	display: grid;
	gap: 16px;
}

.training-summary__label {
	margin: 0;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--primary);
}

.training-summary__date {
	margin: 0;
	font-size: 1.2rem;
	color: var(--surface-strong);
}

.training-slots {
	display: grid;
	gap: 10px;
}

.training-slots__empty {
	margin: 0;
	padding: 14px 16px;
	border-radius: 16px;
	background: rgba(13, 94, 168, 0.06);
	color: var(--text-muted);
	font-size: 0.94rem;
}

.training-slot,
.training-book {
	border: 0;
	border-radius: 16px;
	font: inherit;
	cursor: pointer;
}

.training-slot {
	padding: 13px 14px;
	background: rgba(13, 94, 168, 0.08);
	color: var(--surface-strong);
	font-weight: 700;
	text-align: center;
}

.training-slot.is-selected {
	background: rgba(13, 94, 168, 0.16);
	color: var(--primary-strong);
}

.training-book {
	margin-top: 8px;
	padding: 14px 18px;
	background: linear-gradient(135deg, var(--primary) 0%, #2478c4 100%);
	color: rgb(4, 30, 67);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	box-shadow: 0 18px 28px rgba(13, 94, 168, 0.18);
}

.registration-shell {
	max-width: 1180px;
	margin: 0 auto;
	padding: 4px 0 8px;
	display: grid;
	gap: 24px;
}

.registration-hero {
	max-width: 760px;
	display: grid;
	gap: 10px;
}

.registration-title {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3.15rem);
	color: var(--surface-strong);
}

.registration-form {
	position: relative;
	display: block;
}

.registration-panel {
	position: relative;
	display: grid;
	gap: 28px;
	padding: 30px;
	border: 1px solid rgba(13, 94, 168, 0.12);
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(13, 94, 168, 0.12), transparent 32%),
		linear-gradient(180deg, var(--config-beige), var(--config-beige));
	box-shadow: 0 26px 42px rgba(14, 41, 68, 0.12);
	overflow: hidden;
	transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.registration-panel:hover {
	transform: translateY(-3px);
	border-color: rgba(13, 94, 168, 0.18);
	box-shadow: 0 30px 48px rgba(14, 41, 68, 0.14);
}

.registration-panel::before {
	content: '';
	position: absolute;
	inset: 0 auto auto 0;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(13, 94, 168, 0.14), transparent 72%);
	transform: translate(-30%, -30%);
	pointer-events: none;
}

.registration-grid {
	display: grid;
	gap: 28px 24px;
}

.registration-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-grid--four {
	grid-template-columns: 0.66fr 1fr 1.05fr 1.45fr;
}

.registration-field {
	position: relative;
	display: grid;
	gap: 10px;
}

.registration-field:focus-within span {
	color: var(--primary-strong);
}

.registration-field span {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.96rem;
	font-weight: 700;
	color: var(--surface-strong);
}

.registration-input,
.registration-select {
	width: 100%;
	min-height: 58px;
	padding: 0 18px;
	border: 1px solid rgba(13, 94, 168, 0.12);
	border-radius: 18px;
	background: var(--config-beige);
	color: var(--surface-strong);
	font: inherit;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.registration-input::placeholder {
	color: #8190a2;
}

.registration-input:focus,
.registration-select:focus {
	outline: none;
	border-color: rgba(13, 94, 168, 0.28);
	box-shadow: 0 0 0 4px rgba(13, 94, 168, 0.12);
	background: var(--config-beige);
	transform: translateY(-1px);
}

.registration-select:disabled,
.registration-input[readonly] {
	background: var(--config-beige);
	color: #586779;
	cursor: not-allowed;
}

.registration-input-wrap {
	position: relative;
	display: block;
}

.registration-input-wrap .registration-input {
	padding-right: 56px;
}

.registration-password-toggle {
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #3d4d63;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.registration-password-toggle:hover,
.registration-password-toggle:focus-visible {
	background: rgba(13, 94, 168, 0.08);
	color: var(--primary-strong);
	outline: none;
}

.registration-password-toggle svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.registration-password-toggle .eye-slash {
	opacity: 0;
	transition: opacity 0.18s ease;
}

.registration-password-toggle.is-hidden .eye-slash {
	opacity: 1;
}

.registration-required {
	margin: -4px 0 0;
	color: var(--primary);
	font-size: 0.98rem;
	font-weight: 700;
}

.registration-actions {
	display: flex;
	justify-content: flex-end;
	padding-top: 8px;
}

.registration-submit {
	flex-shrink: 0;
	min-width: 190px;
	padding: 15px 26px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--primary) 0%, #2478c4 100%);
	color: rgb(4, 30, 67);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 18px 28px rgba(13, 94, 168, 0.18);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.registration-submit:hover,
.registration-submit:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 22px 34px rgba(13, 94, 168, 0.24);
	outline: none;
}

.tab,
.attachments-filter,
.chat-widget__toggle,
.training-book,
.training-slot,
.login-submit,
.login-access-request__link,
.lang-btn,
.profile-btn {
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.tab:hover,
.attachments-filter:hover {
	transform: translateY(-1px);
}

.training-slot:hover,
.training-book:hover,
.login-submit:hover {
	transform: translateY(-2px);
}

.tab-content.active > * {
	animation: sectionFadeUp 0.45s ease both;
}

.tab-content.active > *:nth-child(2) {
	animation-delay: 0.04s;
}

.tab-content.active > *:nth-child(3) {
	animation-delay: 0.08s;
}

.tab-content.active > *:nth-child(4) {
	animation-delay: 0.12s;
}

@keyframes sectionFadeUp {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes statusPulse {
	0%, 100% {
		box-shadow: 0 0 0 4px rgba(44, 139, 75, 0.12);
	}
	50% {
		box-shadow: 0 0 0 7px rgba(44, 139, 75, 0.08);
	}
}

#login.tab-content.active {
	display: grid;
	justify-items: center;
	gap: 34px;
}

#login > h2 {
	width: 100%;
	margin: 6px 0 0;
	text-align: center;
	color: var(--primary);
}

.login-shell {
	display: grid;
	grid-template-columns: minmax(0, 390px);
	justify-content: center;
	width: 100%;
	align-items: start;
}

.clarity-privacy-modal__dialog {
	width: min(100%, 720px);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	text-align: left;
}

.clarity-privacy-modal__dialog .access-modal__title {
	padding-right: 30px;
}

.clarity-privacy-modal__content {
	color: var(--text-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.clarity-privacy-modal__content p {
	margin: 0;
}

.clarity-privacy-modal__content p + p {
	margin-top: 16px;
}

.clarity-privacy-modal__content a {
	color: #0a315a;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.login-note {
	background: var(--config-beige);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: var(--shadow-md);
}

.login-card {
	display: grid;
	width: 100%;
	gap: 16px;
	padding: 32px;
	background: #ffffff;
	border: 0;
	border-radius: 16px;
	box-shadow: none;
}

.login-field {
	position: relative;
	display: grid;
	gap: 8px;
	color: var(--surface-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
}

.login-field__input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ded7cf;
	border-radius: 8px;
	background: #faf8f6;
	color: var(--surface-strong);
	font: inherit;
}

.login-field__input:focus {
	outline: none;
	border-color: rgba(13, 94, 168, 0.3);
	box-shadow: 0 0 0 4px rgba(13, 94, 168, 0.08);
}

.login-toggle {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--text-muted);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.92rem;
	font-weight: 600;
}

.login-toggle input {
	width: 16px;
	height: 16px;
	accent-color: var(--primary);
}

.login-toggle input:disabled + span {
	opacity: 0.5;
}

.login-submit {
	padding: 14px 18px;
	border: 0;
	border-radius: 999px;
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: none;
	transform-origin: center;
}

.login-submit:hover,
.login-submit:focus-visible {
	background: rgba(170, 133, 120, 0.55);
	box-shadow: 0 10px 24px rgba(80, 62, 55, 0.16);
	outline: none;
	transform: scale(1.04);
}

.login-submit:disabled {
	opacity: 0.72;
	cursor: wait;
}

.login-access-request {
	display: flex;
	align-items: baseline;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
	margin: 4px 0 0;
	color: var(--primary);
	font-size: 0.88rem;
	line-height: 1.4;
	text-align: center;
}

.login-access-request[hidden] {
	display: none;
}

.login-access-request span {
	line-height: inherit;
}

.login-access-request__link {
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--primary);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: inherit;
	font-weight: 700;
	cursor: pointer;
	line-height: inherit;
	text-decoration: underline;
}

.login-access-request__link:hover,
.login-access-request__link:focus-visible {
	color: #0d5ea8;
	outline: none;
}

.login-caps-lock-warning {
	position: absolute;
	right: calc(100% + 12px);
	bottom: 23px;
	transform: translateY(50%);
	z-index: 2;
	margin: 0;
	padding: 7px 10px;
	border: 1px solid #e9ce92;
	border-radius: 8px;
	background: #fff7e5;
	color: #805000;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
	font-size: 0.75rem;
	font-weight: 500;
	white-space: nowrap;
	pointer-events: none;
}

@media (max-width: 700px) {
	.login-field:has(.login-caps-lock-warning:not([hidden])) {
		padding-left: 130px;
	}
	.login-caps-lock-warning {
		left: 0;
		right: auto;
		max-width: 118px;
		white-space: normal;
	}
}

.login-feedback {
	margin: 0;
	padding: 12px 14px;
	border-radius: 16px;
	font-size: 0.92rem;
	font-weight: 600;
	white-space: pre-wrap;
	word-break: break-word;
}

.login-feedback[data-state="info"] {
	background: rgba(13, 94, 168, 0.08);
	color: var(--primary-strong);
}

.login-feedback[data-state="success"] {
	background: rgba(44, 139, 75, 0.12);
	color: #20653a;
}

.login-feedback[data-state="error"] {
	background: rgba(207, 93, 32, 0.12);
	color: #9b451c;
}

.login-request {
	display: grid;
	gap: 6px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(15, 40, 66, 0.05);
	color: var(--text-muted);
}

.login-request[hidden] {
	display: none;
}

.login-request strong {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.8rem;
	color: var(--surface-strong);
}

.login-request code {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.76rem;
	line-height: 1.6;
	white-space: pre-wrap;
	word-break: break-all;
	color: var(--primary-strong);
}

.access-modal[hidden] {
	display: none;
}

.global-search[hidden] {
	display: none;
}

.global-search {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: grid;
	place-items: start center;
	padding: min(11vh, 100px) 24px 24px;
}

.global-search__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(7, 20, 43, 0.48);
	backdrop-filter: blur(5px);
}

.global-search__dialog {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(100%, 780px);
	max-height: min(76vh, 720px);
	overflow: hidden;
	padding: 26px;
	border: 1px solid rgba(7, 27, 59, 0.12);
	border-radius: 20px;
	background: var(--config-beige-solid);
	box-shadow: 0 34px 100px rgba(7, 20, 43, 0.32);
}

.global-search__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.global-search__eyebrow,
.global-search__header h2,
.global-search__hint,
.global-search__status {
	margin: 0;
}

.global-search__eyebrow {
	margin-bottom: 6px;
	color: #b77563;
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.global-search__header h2 {
	color: var(--primary);
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.1;
}

.global-search__close {
	display: grid;
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(7, 27, 59, 0.07);
	color: var(--primary);
	font-size: 1.55rem;
	line-height: 1;
	cursor: pointer;
}

.global-search__field {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	padding: 0 16px;
	border: 2px solid rgba(7, 27, 59, 0.12);
	border-radius: 14px;
	background: #fff;
}

.global-search__field:focus-within {
	border-color: rgba(183, 117, 99, 0.72);
	box-shadow: 0 0 0 4px rgba(183, 117, 99, 0.1);
}

.global-search__field svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: var(--primary);
	stroke-width: 1.8;
	stroke-linecap: round;
}

.global-search__field input {
	width: 100%;
	min-width: 0;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: var(--primary);
	font: inherit;
	font-size: 1rem;
	font-weight: 700;
}

.global-search__field input::placeholder {
	color: #7a7772;
	font-weight: 500;
}

.global-search__hint {
	padding: 9px 3px 0;
	color: #746e68;
	font-size: 0.72rem;
}

.global-search__status {
	padding: 18px 3px 10px;
	color: #4e4a46;
	font-size: 0.78rem;
	font-weight: 750;
}

.global-search__results {
	display: grid;
	gap: 7px;
	overflow-y: auto;
	padding: 0 3px 3px;
	overscroll-behavior: contain;
}

.global-search__result {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 13px;
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(7, 27, 59, 0.09);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.58);
	color: var(--primary);
	font: inherit;
	text-align: left;
	cursor: pointer;
}

.global-search__result:hover,
.global-search__result:focus-visible,
.global-search__result[aria-selected="true"] {
	border-color: rgba(183, 117, 99, 0.52);
	background: #fff;
	outline: none;
}

.global-search__result-type {
	min-width: 94px;
	padding: 5px 8px;
	border-radius: 999px;
	background: rgba(183, 117, 99, 0.14);
	color: #875343;
	font-size: 0.65rem;
	font-weight: 850;
	letter-spacing: 0.07em;
	text-align: center;
	text-transform: uppercase;
}

.global-search__result-copy {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.global-search__result-title {
	overflow: hidden;
	font-size: 0.9rem;
	font-weight: 850;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.global-search__result-context {
	overflow: hidden;
	color: #6c6761;
	font-size: 0.73rem;
	font-weight: 550;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.global-search__result-arrow {
	font-size: 1.1rem;
}

body.is-global-search-open {
	overflow: hidden;
}

@media (max-width: 1280px) {
	.global-search-trigger {
		width: 40px;
		justify-content: center;
		padding: 0;
	}

	.global-search-trigger span,
	.global-search-trigger kbd {
		display: none;
	}
}

@media (max-width: 640px) {
	.global-search {
		align-items: stretch;
		padding: 12px;
	}

	.global-search__dialog {
		width: 100%;
		max-height: calc(100dvh - 24px);
		padding: 20px 16px;
		border-radius: 16px;
	}

	.global-search__header {
		margin-bottom: 16px;
	}

	.global-search__field {
		min-height: 54px;
		padding: 0 13px;
	}

	.global-search__field kbd,
	.global-search__hint {
		display: none;
	}

	.global-search__result {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 9px;
		padding: 12px;
	}

	.global-search__result-type {
		grid-column: 1 / -1;
		width: fit-content;
		min-width: 0;
	}
}

.access-modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	padding: 24px;
}

.access-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 26, 44, 0.34);
	backdrop-filter: none;
}

.access-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 420px);
	background: var(--config-beige-solid);
	border: 1px solid rgba(13, 94, 168, 0.16);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(10, 26, 44, 0.3);
	padding: 30px;
	text-align: center;
}

.access-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: 0;
	background: transparent;
	color: #40566f;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
}

.access-modal__title {
	margin: 0 0 22px;
	color: #0a315a;
	font-size: 1.25rem;
	line-height: 1.35;
}

.access-modal__action {
	border: 0;
	border-radius: 6px;
	background: rgb(170, 133, 120);
	color: rgb(4, 30, 67);
	cursor: pointer;
	font-weight: 700;
	padding: 12px 18px;
}

.access-modal__action:hover,
.access-modal__action:focus-visible {
	background: rgb(184, 147, 134);
	outline: none;
}

.clarity-privacy-modal__dialog {
	width: min(100%, 720px);
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	text-align: left;
}

.clarity-privacy-modal__dialog .access-modal__title {
	padding-right: 30px;
}

.clarity-privacy-modal__content {
	color: var(--text-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.clarity-privacy-modal__content p {
	margin: 0;
}

.clarity-privacy-modal__content p + p {
	margin-top: 16px;
}

.clarity-privacy-modal__content a {
	color: #0a315a;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.login-note {
	padding: 22px 24px;
	color: var(--text-muted);
	font-size: 0.98rem;
	line-height: 1.75;
}

#assistenza {
	background: var(--config-beige);
}

.assistenza-frame {
	padding: 16px;
	background: var(--config-beige);
	border: 1px solid var(--line);
	border-radius: 24px;
	box-shadow: var(--shadow-md);
}

#assistenza iframe {
	display: block;
	width: 100%;
	min-height: 900px;
	border: 0;
	border-radius: 18px;
	background: var(--config-beige);
}

#aggiornamenti.tab-content {
	width: calc(100% - 48px);
	max-width: 1520px;
	margin: 28px auto 0;
	padding: 24px;
	background: var(--config-beige-solid);
	border: 1px solid rgba(16, 16, 16, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

#aggiornamenti > .updates-header,
#aggiornamenti > .updates-status-section,
#aggiornamenti > .updates-timeline,
#aggiornamenti > .updates-feedback {
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}

.updates-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.updates-status-section {
	margin-bottom: 56px;
}

.updates-status-section .home-status-grid {
	margin-bottom: 14px;
}

.updates-header h2 {
	margin: 0;
	color: #071b3b;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: 0;
}

.updates-header p {
	margin: 12px 0 0;
	color: #637083;
	font-size: 0.98rem;
	font-weight: 650;
	line-height: 1.5;
}

.updates-header__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 10px;
}

.updates-header__link {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(7, 27, 59, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.68);
	color: #071b3b;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.84rem;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 10px 22px rgba(14, 41, 68, 0.06);
}

.updates-header__link--secondary {
	cursor: pointer;
}

.updates-header__search {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	width: 44px;
	height: 44px;
	padding: 0 12px;
	overflow: hidden;
	border: 1px solid rgba(7, 27, 59, 0.12);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.68);
	color: #071b3b;
	box-shadow: 0 10px 22px rgba(14, 41, 68, 0.06);
	cursor: text;
	transition: width 220ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.updates-header__search:hover,
.updates-header__search:focus-within {
	width: min(250px, 28vw);
	border-color: rgba(7, 27, 59, 0.28);
	box-shadow: 0 12px 26px rgba(14, 41, 68, 0.1);
}

.updates-header__search-icon {
	display: inline-grid;
	flex: 0 0 18px;
	place-items: center;
	width: 18px;
	height: 18px;
}

.updates-header__search-icon svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.updates-header__search-input {
	min-width: 0;
	width: 100%;
	height: 100%;
	margin-left: 10px;
	padding: 0;
	border: 0;
	outline: 0;
	background: transparent;
	color: #071b3b;
	font: 750 0.84rem 'Arial Nova', Arial, sans-serif;
	opacity: 0;
	transition: opacity 140ms ease 40ms;
}

.updates-header__search:hover .updates-header__search-input,
.updates-header__search:focus-within .updates-header__search-input {
	opacity: 1;
}

.updates-header__search-input::placeholder {
	color: #778294;
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.updates-header__search,
	.updates-header__search-input {
		transition: none;
	}
}

.updates-search {
	max-width: 460px;
	margin-bottom: 30px;
}

.updates-search__empty {
	margin: -10px 0 24px;
}

.updates-timeline.is-searching [data-update-panel-load-more] {
	display: none;
}

[data-update-search-highlight] {
	padding: 0 2px;
	border-radius: 3px;
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
	font: inherit;
}

.updates-timeline {
	position: relative;
	display: grid;
	gap: 26px;
}

.updates-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 195px;
	width: 1px;
	background: rgba(7, 27, 59, 0.12);
}

.updates-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 160px 34px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.updates-timeline__item[hidden],
.updates-date-panel[hidden] {
	display: none;
}

.updates-timeline__meta {
	display: grid;
	gap: 8px;
	padding-top: 26px;
	color: #071b3b;
	cursor: pointer;
}

.updates-timeline__meta:focus-visible {
	outline: 3px solid rgba(7, 27, 59, 0.18);
	outline-offset: 6px;
	border-radius: 8px;
}

.updates-timeline__meta:hover strong {
	text-decoration: underline;
	text-underline-offset: 4px;
}

.updates-timeline__meta strong {
	font-size: 1.02rem;
	font-weight: 900;
	line-height: 1.1;
}

.updates-timeline__meta span {
	color: #657285;
	font-size: 0.84rem;
	font-weight: 700;
}

.updates-timeline__meta small {
	justify-self: start;
	padding: 5px 9px;
	border-radius: 999px;
	background: #071b3b;
	color: #ffffff;
	font-size: 0.65rem;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.updates-timeline__dot {
	position: relative;
	z-index: 1;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: 30px;
	justify-self: center;
	padding: 0;
	border-radius: 999px;
	background: #ffffff;
	border: 2px solid rgba(7, 27, 59, 0.22);
	box-shadow: 0 0 0 6px var(--config-beige-solid);
	cursor: pointer;
}

.updates-timeline__dot::before {
	content: "+";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #071b3b;
	font-size: 0.82rem;
	font-weight: 900;
	line-height: 1;
}

.updates-timeline__dot:focus-visible {
	outline: 3px solid rgba(7, 27, 59, 0.2);
	outline-offset: 5px;
}

.updates-timeline__item--current .updates-timeline__dot,
.updates-timeline__dot[aria-pressed="true"] {
	border-color: rgba(7, 27, 59, 0.28);
	background: #071b3b;
	box-shadow:
		0 0 0 6px var(--config-beige-solid),
		inset 0 0 0 4px #ffffff;
}

.updates-timeline__item--current .updates-timeline__dot::before,
.updates-timeline__dot[aria-pressed="true"]::before {
	content: "";
}

.updates-date-panel {
	display: grid;
	gap: 18px;
}

.updates-card {
	position: relative;
	display: block;
	padding: 24px 26px;
	border: 1px solid rgba(16, 16, 16, 0.05);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.88);
	box-shadow: 0 18px 42px rgba(14, 41, 68, 0.08);
}

.updates-card[hidden] {
	display: none;
}

.updates-panel-load-more {
	justify-self: start;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 2px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #071b3b;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.88rem;
	font-weight: 900;
	cursor: pointer;
}

.updates-card h3 {
	margin: 0 0 14px;
	color: #071b3b;
	font-size: 1.08rem;
	font-weight: 900;
	line-height: 1.2;
}

.updates-card ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.updates-card li {
	position: relative;
	padding-left: 22px;
	color: #4c5666;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1.45;
}

.updates-card li::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 0.67em;
	width: 5px;
	height: 5px;
	background: #2f3440;
	transform: translateY(-50%);
}

.updates-feedback {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 22px;
	margin-top: 42px;
	padding: 26px 34px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.58);
	box-shadow: 0 18px 42px rgba(14, 41, 68, 0.08);
	border: 1px solid rgba(16, 16, 16, 0.04);
}

.updates-feedback__icon {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: #071b3b;
	color: #ffffff;
	line-height: 1;
}

.updates-feedback__icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.faq-feedback .updates-feedback__icon {
	font-size: 2.15rem;
	font-weight: 900;
}

.updates-feedback h3 {
	margin: 0;
	color: #071b3b;
	font-size: 1.05rem;
	font-weight: 900;
}

.updates-feedback p {
	margin: 8px 0 0;
	color: #20242c;
	font-size: 0.95rem;
	font-weight: 650;
}

.updates-feedback a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 192px;
	min-height: 42px;
	padding: 0 18px;
	border: 1px solid rgba(7, 27, 59, 0.12);
	border-radius: 8px;
	background: #071b3b;
	color: #ffffff;
	box-shadow: 0 14px 28px rgba(7, 27, 59, 0.16);
	font-size: 0.84rem;
	font-weight: 900;
	text-decoration: none;
}

.faq-feedback {
	grid-column: 1 / -1;
	margin-top: 8px;
}

.chat-widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 80;
	display: grid;
	justify-items: end;
	gap: 10px;
}

body.is-configurator-menu-open .chat-widget {
	pointer-events: none;
}

.chat-widget[hidden],
.chat-widget__toggle[hidden] {
	display: none;
}

.chat-widget__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	padding: 16px;
	width: 70px;
	box-sizing: border-box;
	overflow: hidden;
	border: 0;
	border-radius: 999px;
	background: rgb(170, 133, 120);
	color: rgb(4, 30, 67);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	box-shadow: none;
	cursor: pointer;
	transition: width 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.chat-widget__toggle:hover,
.chat-widget__toggle:focus-visible {
	gap: 12px;
	width: 218px;
	background: rgb(170, 133, 120);
	box-shadow: none;
}

.chat-widget__toggle:focus-visible {
	outline: 3px solid rgba(13, 94, 168, 0.24);
	outline-offset: 4px;
}

.chat-widget__toggle-icon {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 999px;
	background: transparent;
	color: rgb(4, 30, 67);
	overflow: hidden;
}

.chat-widget__toggle:hover .chat-widget__toggle-icon,
.chat-widget__toggle:focus-visible .chat-widget__toggle-icon,
body.is-chat-open .chat-widget__toggle-icon {
	background: transparent;
	color: rgb(4, 30, 67);
}

.chat-widget__logo {
	grid-area: 1 / 1;
	width: 37px;
	height: 37px;
	object-fit: contain;
	display: block;
}

.chat-widget__logo--home {
	display: block;
}

.chat-widget__logo--ai,
.chat-widget__logo--default {
	display: none;
}

.chat-widget__toggle:hover .chat-widget__logo--home,
.chat-widget__toggle:focus-visible .chat-widget__logo--home {
	display: none;
}

.chat-widget__toggle:hover .chat-widget__logo--ai,
.chat-widget__toggle:focus-visible .chat-widget__logo--ai {
	display: block;
}

.chat-widget__toggle-text {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-6px);
	transition: max-width 180ms ease, opacity 140ms ease, transform 180ms ease;
}

.chat-widget__toggle:hover .chat-widget__toggle-text,
.chat-widget__toggle:focus-visible .chat-widget__toggle-text {
	max-width: 150px;
	opacity: 1;
	transform: translateX(0);
}

.chat-widget__panel {
	position: relative;
	width: var(--chat-panel-width, min(380px, calc(100vw - 32px)));
	height: var(--chat-panel-height, auto);
	min-height: 420px;
	max-width: min(760px, calc(100vw - 48px));
	max-height: min(820px, calc(100vh - 80px));
	display: grid;
	grid-template-rows: auto 1fr auto auto;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 28px;
	background: var(--config-beige-solid);
	box-shadow: 0 30px 60px rgba(14, 41, 68, 0.22);
	overflow: hidden;
}

.chat-widget__panel[hidden] {
	display: none;
}

.chat-widget__resize {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: rgba(7, 27, 59, 0.58);
	cursor: nwse-resize;
	touch-action: none;
}

.chat-widget__resize::before {
	content: '';
	position: absolute;
	inset: 5px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	border-radius: 3px 0 0 0;
}

.chat-widget__resize:hover,
.chat-widget__resize:focus-visible {
	background: rgba(170, 133, 120, 0.28);
	color: #071b3b;
	outline: none;
}

body.is-chat-resizing {
	cursor: nwse-resize;
	user-select: none;
}

.chat-widget__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 20px 20px 14px;
	border-bottom: 1px solid rgba(13, 94, 168, 0.1);
}

.chat-widget__eyebrow {
	margin: 0;
	color: var(--primary);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.chat-widget__header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
}

.chat-widget__clear {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--primary-strong);
	cursor: pointer;
}

.chat-widget__clear svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.chat-widget__close {
	width: 36px;
	height: 36px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--primary-strong);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
}

.chat-widget__clear:hover,
.chat-widget__clear:focus-visible,
.chat-widget__close:hover,
.chat-widget__close:focus-visible {
	background: rgba(170, 133, 120, 0.55);
	color: #171310;
	outline: none;
}

.chat-widget__messages {
	padding: 18px 54px 8px 46px;
	overflow: auto;
	display: grid;
	align-content: start;
	align-items: start;
	gap: 12px;
}

.chat-widget__message {
	position: relative;
	align-self: start;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 28px;
	align-items: start;
	gap: 8px;
	max-width: 88%;
	padding: 12px 12px 12px 14px;
	border-radius: 18px;
	font-size: 0.94rem;
	line-height: 1.42;
}

.chat-widget__message-content {
	min-width: 0;
	white-space: pre-line;
}

.chat-widget__speech {
	width: 28px;
	height: 28px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(13, 94, 168, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.62);
	color: var(--config-blue);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.chat-widget__speech svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.chat-widget__speech:hover,
.chat-widget__speech:focus-visible,
.chat-widget__speech.is-reading {
	background: var(--config-blue);
	color: #fff;
	outline: none;
}

.chat-widget__speech:focus-visible {
	box-shadow: 0 0 0 3px rgba(13, 94, 168, 0.2);
}

.chat-widget__speech.is-reading {
	transform: scale(1.04);
}

.chat-widget__speech:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}
.chat-widget__message--bot {
	justify-self: start;
	background: var(--config-beige);
	border: 1px solid rgba(13, 94, 168, 0.1);
	color: var(--surface-strong);
}

.chat-widget__message--bot::before {
	content: '';
	position: absolute;
	left: -42px;
	top: 82%;
	z-index: 3;
	width: 30px;
	height: 30px;
	background: url('../_files/chat-ai.svg') center / contain no-repeat;
	transform: translateY(-50%);
	pointer-events: none;
}
.chat-widget__message--user {
	justify-self: end;
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
}

.chat-widget__message--user::after {
	content: '';
	position: absolute;
	right: -40px;
	top: 82%;
	z-index: 3;
	width: 24px;
	height: 24px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(4,30,67)' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 12.2A4.1 4.1 0 1 0 12 4a4.1 4.1 0 0 0 0 8.2Z'/%3E%3Cpath d='M4.5 20a7.5 7.5 0 0 1 15 0'/%3E%3C/svg%3E") center / contain no-repeat;
	transform: translateY(-50%);
	pointer-events: none;
}

.chat-widget__message a {
	color: inherit;
	font-weight: 700;
}

.chat-widget__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 4px 20px 12px;
	border-top: 1px solid rgba(13, 94, 168, 0.08);
}

.chat-widget__quick-action {
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid rgba(13, 94, 168, 0.16);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.58);
	color: var(--primary-strong);
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.84rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.chat-widget__quick-action:hover,
.chat-widget__quick-action:focus-visible {
	background: rgba(13, 94, 168, 0.08);
	border-color: rgba(13, 94, 168, 0.28);
	outline: none;
	transform: translateY(-1px);
}

.chat-widget__composer[hidden] {
	display: none;
}

.chat-widget__composer {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px auto;
	gap: 10px;
	padding: 14px 20px 20px;
	border-top: 1px solid rgba(13, 94, 168, 0.1);
}

.chat-widget__input {
	width: 100%;
	padding: 13px 14px;
	border: 1px solid rgba(13, 94, 168, 0.12);
	border-radius: 16px;
	background: var(--config-beige);
	color: var(--surface-strong);
	font: inherit;
	outline: none;
}

.chat-widget__input:focus {
	border-color: rgba(13, 94, 168, 0.28);
	box-shadow: 0 0 0 4px rgba(13, 94, 168, 0.08);
}

.chat-widget__voice-input {
	width: 44px;
	min-height: 44px;
	display: inline-grid;
	place-items: center;
	border: 1px solid rgba(13, 94, 168, 0.14);
	border-radius: 16px;
	background: var(--config-beige);
	color: var(--config-blue);
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.chat-widget__voice-input svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.chat-widget__voice-input:hover,
.chat-widget__voice-input:focus-visible,
.chat-widget__voice-input.is-listening {
	background: var(--config-blue);
	color: #fff;
	box-shadow: 0 10px 24px rgba(13, 94, 168, 0.18);
	outline: none;
	transform: scale(1.04);
}

.chat-widget__voice-input.is-listening {
	animation: chatVoicePulse 1.1s ease-in-out infinite;
}

.chat-widget__voice-input:disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

@keyframes chatVoicePulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(13, 94, 168, 0.28); }
	50% { box-shadow: 0 0 0 6px rgba(13, 94, 168, 0); }
}

.chat-widget__send {
	padding: 0 16px;
	border: 0;
	border-radius: 16px;
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-weight: 700;
	cursor: pointer;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
	transform-origin: center;
}

.chat-widget__send:hover,
.chat-widget__send:focus-visible {
	background: rgba(170, 133, 120, 0.55);
	box-shadow: 0 10px 24px rgba(80, 62, 55, 0.16);
	outline: none;
	transform: scale(1.04);
}

@media (max-width: 1100px) {
	body.is-nav-open {
		overflow: hidden;
	}

	.header {
		z-index: 120;
		background: var(--config-beige-solid);
		backdrop-filter: none;
		overflow: visible;
	}

	.header-content {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.logo-container {
		grid-column: 1;
		grid-row: 1;
	}

	.lang-switcher {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		align-self: center;
	}

	.nav-toggle {
		display: grid;
	}

	.header .tabs {
		display: none;
		grid-column: 1 / -1;
		grid-row: 2;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 4px;
		min-width: 0;
		padding: 8px 0 16px;
		border-top: 1px solid rgba(16, 16, 16, 0.08);
	}

	body.is-nav-open .header .tabs {
		display: flex;
		max-height: min(70vh, calc(100dvh - 76px));
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.is-nav-open .chat-widget {
		visibility: hidden;
		pointer-events: none;
	}

	.header .tabs .tab[hidden],
	.header .tabs .tab-menu[hidden] {
		display: none !important;
	}

	.tab,
	.tab-menu__trigger {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 12px;
		width: 100%;
		min-width: 0;
		min-height: 48px;
		padding: 10px 12px;
		border-radius: 14px;
		box-sizing: border-box;
		font-size: 0.94rem;
		font-weight: 700;
		line-height: 1.2;
		text-align: left;
	}

	.tab-menu {
		--tab-menu-overhang: 0px;
		display: flex;
		flex-direction: column;
		width: 100%;
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.tab-menu::after {
		display: none;
	}

	.tab-menu__trigger {
		width: 100%;
	}

	.tab::after {
		display: none;
	}

	.tab-menu__trigger::after {
		content: '';
		position: absolute;
		top: 50%;
		right: 16px;
		left: auto;
		bottom: auto;
		width: 8px;
		height: 8px;
		border: 0;
		border-right: 2px solid currentColor;
		border-bottom: 2px solid currentColor;
		background: none;
		opacity: 0.55;
		transform: translateY(-70%) rotate(45deg);
		transition: transform 0.18s ease, opacity 0.18s ease;
	}

	.tab-menu.is-open .tab-menu__trigger::after {
		opacity: 1;
		transform: translateY(-20%) rotate(225deg);
	}

	.tab__icon {
		display: grid;
		place-items: center;
		flex: 0 0 26px;
		width: 26px;
		height: 26px;
	}

	.tab__label {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.tab--promo::before {
		display: none;
	}

	.tab--promo .tab__label::after {
		content: '';
		display: inline-block;
		width: 6px;
		height: 6px;
		margin: 0 0 2px 8px;
		border-radius: 50%;
		background: #bc8f7e;
		vertical-align: middle;
	}

	.tab.active,
	.tab-menu__trigger.active,
	.tab-menu.is-open .tab-menu__trigger {
		background: rgba(170, 133, 120, 0.2);
		color: #171310;
	}

	.tab-menu:hover .tab-menu__panel,
	.tab-menu:focus-within .tab-menu__panel,
	.tab-menu.is-locked-closed .tab-menu__panel,
	.tab-menu.is-locked-closed.is-open .tab-menu__panel,
	.tab-menu.is-locked-closed:hover .tab-menu__panel,
	.tab-menu.is-locked-closed:focus-within .tab-menu__panel {
		display: none;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: none;
	}

	.tab-menu.is-open .tab-menu__panel,
	.tab-menu.is-open:hover .tab-menu__panel,
	.tab-menu.is-open:focus-within .tab-menu__panel {
		position: static;
		display: grid;
		gap: 2px;
		width: 100%;
		min-width: 0;
		margin: 0;
		padding: 0 0 6px 38px;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: none;
	}

	.tab-menu__item {
		padding: 10px 12px;
		border-radius: 12px;
	}

	.tab-menu__item.active {
		position: relative;
		padding-left: 20px;
		background: rgba(170, 133, 120, 0.4);
		color: #171310;
		font-weight: 850;
		box-shadow: none;
	}

	.tab-menu__item.active::before {
		content: '';
		position: absolute;
		left: 8px;
		top: 50%;
		width: 4px;
		height: 18px;
		border-radius: 999px;
		background: #171310;
		transform: translateY(-50%);
	}
}

@media (max-width: 980px) {
	.header {
		padding: 0;
		background: var(--config-beige-solid);
		backdrop-filter: none;
	}

	.header-content {
		grid-template-columns: auto 1fr auto;
		min-height: 76px;
		padding: 0 22px;
		gap: 16px;
	}

	.lang-switcher {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		align-self: center;
	}

	.profile-menu {
		padding-bottom: 0;
		margin-bottom: 0;
	}

	.profile-menu__panel {
		top: calc(100% + 8px);
		z-index: 170;
	}

	.chat-widget__toggle {
		justify-content: center;
		gap: 0;
		padding: 14px;
		width: 62px;
	}

	.chat-widget__toggle:hover,
	.chat-widget__toggle:focus-visible {
		gap: 10px;
		width: 198px;
	}

	.chat-widget__toggle-icon {
		flex-basis: 34px;
		width: 34px;
		height: 34px;
	}

	.chat-widget__logo {
		width: 33px;
		height: 33px;
	}

	.container {
		padding: 0 0 24px;
	}

	.update-ticker {
		padding: 0 16px;
	}

	.update-ticker__inner {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.update-ticker__badge {
		justify-content: center;
		padding: 10px 14px;
		white-space: nowrap;
	}

	.site-footer {
		padding: 0;
	}

	.footer-design-banner {
		min-height: 145px;
		padding: 22px 18px;
		background-position: center, center top;
	}

	.footer-design-banner__content {
		width: min(58vw, 340px);
	}

	.site-footer__inner {
		grid-template-columns: minmax(220px, 1fr) minmax(420px, max-content);
		justify-content: space-between;
		gap: 28px;
		padding: 20px 18px 18px;
	}

	.site-footer__brand,
	.site-footer__details {
		max-width: none;
	}

	.site-footer__details {
		grid-column: auto;
		min-width: 420px;
		transform: none;
	}

	.site-footer__legal {
		padding: 6px 18px;
	}

	.tab-content {
		padding: 24px 18px;
		border-radius: 24px;
		margin-left: 16px;
		margin-right: 16px;
	}

	#home.tab-content {
		margin-left: 0;
		margin-right: 0;
		padding-left: 0;
		padding-right: 0;
	}

	.home-status-grid {
		grid-template-columns: 1fr;
	}

	.home-hero-stage {
		min-height: clamp(500px, 66vh, 680px);
		padding: 34px 28px 92px;
	}

	.home-hero-stage::before {
		background: linear-gradient(90deg, rgba(247, 244, 241, 0.94) 0%, rgba(247, 244, 241, 0.84) 48%, rgba(247, 244, 241, 0.36) 78%, rgba(247, 244, 241, 0.08) 100%);
	}

	.home-hero-stage__content {
		width: min(72vw, 680px);
	}

	.home-category-grid,
	.home-kpi-strip {
		grid-template-columns: 1fr 1fr;
	}

	.discover-configurator-access {
		grid-template-columns: auto minmax(0, 1fr);
		padding: 20px 22px;
	}

	.discover-configurator-access__actions {
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		min-width: 0;
	}

	.discover-configurator-kpis {
		grid-template-columns: 1fr;
	}

	.discover-configurator-kpis .hero-stat {
		padding: 22px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(7, 27, 59, 0.12);
	}

	.discover-configurator-kpis .hero-stat:first-child {
		padding-top: 0;
	}

	.discover-configurator-kpis .hero-stat:last-child {
		padding-bottom: 0;
		border-bottom: 0;
	}

	.home-category-grid {
		padding: 44px 18px 56px;
	}

	.home-configurator-panel {
		grid-template-columns: 1fr;
		width: calc(100% - 36px);
		margin-top: 18px;
		margin-bottom: 38px;
		padding: 24px 28px;
		gap: 28px;
	}

	.home-configurator-panel__content {
		padding-right: 0;
		padding-bottom: 22px;
		border-right: 0;
		border-bottom: 2px solid rgba(16, 16, 16, 0.14);
	}

	.home-configurator-panel__actions {
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	.home-featured-updates {
		grid-template-columns: 1fr;
		width: calc(100% - 36px);
		gap: 24px;
		margin-bottom: 56px;
	}

	.home-featured-updates__intro {
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
	}

	.home-featured-updates__intro > span {
		grid-column: 1 / -1;
	}

	.home-featured-updates__intro h3 {
		max-width: 420px;
	}

	.home-featured-updates__link {
		margin-top: 0;
	}

	.home-featured-updates__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		padding-right: 0;
	}

	.home-category-intro {
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: end;
	}

	.home-category-intro > span {
		grid-column: 1 / -1;
	}

	.home-category-intro h3 {
		max-width: 420px;
	}

	.home-category-intro__note {
		margin-top: 0;
	}

	.home-hero-features {
		width: min(100%, 620px);
		padding: 22px 20px;
	}

	.home-hero-feature {
		padding: 0 16px;
	}

	.media-gallery-layout {
		grid-template-columns: 1fr;
	}

	.documents-layout {
		grid-template-columns: 1fr;
	}

	#allegati.tab-content,
	#video.tab-content {
		padding: 28px 18px;
	}

	.documents-sidebar {
		padding: 0 0 22px;
		border-right: 0;
		border-bottom: 1px solid rgba(16, 16, 16, 0.08);
	}

	#allegati .attachments-group ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.documents-main__header {
		align-items: center;
	}

	.documents-main__header .attachments-search {
		width: 100%;
		margin-left: 0;
	}

	.faq-hero {
		padding: 0 0 28px;
		background: var(--config-beige-solid);
	}

	#faq.tab-content {
		width: calc(100% - 32px);
		margin-left: 16px;
		margin-right: 16px;
		padding: 24px 18px;
	}

	.faq-shell {
		grid-template-columns: 1fr;
		padding: 0 0 20px;
	}

	.faq-search,
	.faq-filters,
	.faq-content {
		grid-column: 1;
	}

	.faq-search {
		grid-row: 2;
	}

	.faq-filters {
		grid-row: 1;
	}

	.faq-content {
		grid-template-columns: 1fr;
	}

	#aggiornamenti.tab-content {
		width: calc(100% - 32px);
		padding: 20px 16px;
	}

	.updates-header {
		flex-direction: column;
		gap: 10px;
	}

	.updates-header__link {
		margin-top: 0;
	}

.updates-timeline::before {
		left: 9px;
	}

	.updates-timeline__item {
		grid-template-columns: 18px minmax(0, 1fr);
		gap: 18px;
	}

	.updates-timeline__meta {
		grid-column: 2;
		grid-row: 1;
		padding-top: 0;
	}

	.updates-timeline__dot {
		grid-column: 1;
		grid-row: 1 / span 2;
		margin-top: 4px;
	}

	.updates-card {
		grid-column: 2;
		grid-row: 2;
	}

	.updates-date-panel {
		grid-column: 2;
		grid-row: 2;
	}

	.social-hero,
	.social-layout {
		grid-template-columns: 1fr;
	}

	.social-card-grid {
		grid-template-columns: 1fr 1fr;
	}

	.media-gallery-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.training-shell {
		grid-template-columns: 1fr;
	}

	.registration-grid--two,
	.registration-grid--four {
		grid-template-columns: 1fr;
	}

	.registration-panel {
		padding: 22px 18px;
		border-radius: 24px;
	}

	.registration-actions {
		flex-direction: column;
	}

	.registration-submit {
		width: 100%;
	}

	.login-shell {
		grid-template-columns: 1fr;
	}

	.chat-widget {
		right: 16px;
		bottom: 16px;
	}
}

@media (max-width: 640px) {
	.header {
		background: var(--config-beige-solid);
		backdrop-filter: none;
	}

	.logo {
		height: 34px;
	}

	.logo-hub {
		padding-bottom: 4px;
		font-size: 0.68rem;
	}

	.header-content {
		padding: 0 16px;
	}

	.lang-switcher {
		gap: 10px;
	}

	h2 {
		font-size: 1.85rem;
	}

	.home-hero-stage {
		min-height: auto;
		padding: 34px 20px 92px;
	}

	.home-hero-stage::after {
		display: none;
	}

	.home-hero-stage__title {
		font-size: clamp(2.15rem, 9.2vw, 3rem);
	}

	.home-hero-stage__content {
		width: 100%;
	}

	.home-hero-features {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 22px;
		margin-top: 18px;
	}

	.home-hero-feature,
	.home-hero-feature:first-child,
	.home-hero-feature:last-child {
		padding: 0;
	}

	.home-hero-feature + .home-hero-feature {
		padding-top: 18px;
		border-left: 0;
		border-top: 1px solid rgba(16, 16, 16, 0.14);
	}

	.home-hero-feature span {
		max-width: none;
	}

	.home-hero-stage__actions {
		gap: 10px;
	}

	.home-hero-stage__primary,
	.home-hero-stage__secondary {
		width: 100%;
	}

	.home-hero-stage__scroll {
		left: 20px;
		bottom: 82px;
	}

	.home-category-grid,
	.home-kpi-strip,
	.social-card-grid,
	.video-grid,
	.media-gallery-grid,
	.attachments ul {
		grid-template-columns: 1fr;
	}

	.discover-configurator__header h2 {
		font-size: clamp(1.55rem, 8vw, 2rem);
	}

	.discover-configurator-access {
		grid-template-columns: 1fr;
		gap: 10px;
		padding: 20px 18px;
		border-radius: 10px;
	}

	.discover-configurator-access__icon {
		width: 50px;
		height: 50px;
	}

	.discover-configurator-access__icon svg {
		width: 26px;
		height: 26px;
	}

	.discover-configurator-access__actions {
		grid-template-columns: 1fr;
	}

	.discover-configurator-kpis {
		padding: 22px 20px;
	}

	#allegati.tab-content,
	#video.tab-content {
		margin-left: 12px;
		margin-right: 12px;
		padding: 24px 14px;
	}

	#allegati .attachments-group ul {
		grid-template-columns: 1fr;
	}

	.documents-main__header {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.faq-hero {
		min-height: 320px;
		align-items: start;
		padding: 0 0 24px;
		background: var(--config-beige-solid);
	}

	#faq.tab-content {
		width: calc(100% - 24px);
		margin-left: 12px;
		margin-right: 12px;
		padding: 24px 18px;
	}

	.faq-hero__copy h2 {
		font-size: clamp(2.05rem, 12vw, 3rem);
		white-space: normal;
	}

	.faq-shell {
		padding: 0 0 18px;
	}

	.faq-filter {
		min-height: 40px;
		padding: 0 13px;
		font-size: 0.78rem;
	}

	.faq-question {
		padding: 18px 48px 18px 18px;
	}

	.faq-question::after {
		right: 18px;
	}

	.faq-answer {
		padding: 0 18px 18px;
	}

	#aggiornamenti.tab-content {
		width: calc(100% - 24px);
		margin-left: 12px;
		margin-right: 12px;
		padding: 18px 14px;
	}

	.updates-card {
		padding: 22px 20px;
	}

	.updates-feedback {
		grid-template-columns: 1fr;
		padding: 22px 20px;
	}

	.updates-feedback a {
		justify-self: start;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		justify-content: stretch;
		gap: 20px;
		padding: 22px 20px;
	}

	.footer-design-banner {
		align-items: flex-start;
		min-height: 170px;
		padding: 22px 20px;
		background:
			linear-gradient(180deg, rgba(20, 16, 12, 0.78) 0%, rgba(20, 16, 12, 0.48) 42%, rgba(20, 16, 12, 0.16) 100%),
			url("../_files/footer-design-banner-test.jpg") center top / cover no-repeat;
	}

	.footer-design-banner__content {
		width: min(100%, 320px);
	}

	.footer-design-banner h2 {
		font-size: clamp(1.55rem, 7vw, 2.1rem);
	}

	.site-footer__brand p {
		white-space: normal;
	}

	.site-footer__details {
		grid-column: auto;
		min-width: 0;
		transform: none;
	}

	.site-footer__detail-row {
		white-space: normal;
	}

	.site-footer__legal {
		flex-direction: column;
		align-items: flex-start;
		padding: 6px 20px 8px;
	}

	.site-footer__legal-links {
		flex-wrap: wrap;
		row-gap: 8px;
	}

	.site-footer__legal-links a {
		padding: 0 12px;
	}

	.site-footer__legal-links a:first-child {
		padding-left: 0;
	}

	.home-configurator-panel {
		width: calc(100% - 32px);
		margin-top: 24px;
		padding: 20px 20px;
		border-radius: 6px;
	}

	.home-featured-updates {
		width: calc(100% - 32px);
		margin-bottom: 38px;
	}

	.home-featured-updates__intro {
		grid-template-columns: 1fr;
	}

	.home-featured-updates__link {
		margin-top: 8px;
	}

	.home-featured-updates__cards {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.home-configurator-panel__content {
		display: contents;
	}

	.home-configurator-panel__eyebrow {
		order: 1;
	}

	.home-configurator-panel h3 {
		order: 2;
	}

	.home-configurator-panel p {
		order: 3;
	}

	.home-configurator-panel__actions {
		order: 5;
		grid-template-columns: 1fr;
	}

	.home-configurator-panel__stats {
		order: 4;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.home-configurator-action,
	.home-configurator-action:first-child {
		grid-template-columns: minmax(0, max-content) 14px;
		min-height: 58px;
		padding: 0 8px 14px;
		border-right: 0;
		border-bottom: 2px solid rgba(16, 16, 16, 0.16);
	}

	.home-configurator-action:last-child {
		border-bottom: 0;
	}

	.home-configurator-stat {
		grid-template-rows: 34px minmax(30px, auto) minmax(34px, auto);
		row-gap: 8px;
		justify-items: center;
		min-height: auto;
		padding: 10px 8px 8px;
		border-right: 2px solid rgba(16, 16, 16, 0.14);
		border-bottom: 0;
		text-align: center;
		transform: none;
	}

	.home-configurator-stat::after {
		display: none;
	}

	.home-configurator-stat:last-child {
		border-right: 0;
	}

	.home-configurator-stat__icon {
		width: 34px;
		height: 34px;
		margin-bottom: 0;
	}

	.home-configurator-stat__icon svg {
		width: 18px;
		height: 18px;
	}

	.home-configurator-stat strong {
		font-size: clamp(1.15rem, 6vw, 1.5rem);
	}

	.home-configurator-stat > span:last-child {
		font-size: 0.72rem;
		line-height: 1.2;
	}

	.home-category-intro {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.home-category-intro__note {
		display: none;
	}

	#allegati .document-card__email {
		display: none;
	}

	.attachments a {
		flex-direction: column;
		align-items: flex-start;
	}

	#assistenza iframe {
		min-height: 760px;
	}

	.chat-widget {
		left: 16px;
		right: 16px;
		justify-items: stretch;
	}

	.chat-widget__panel {
		width: 100%;
		height: min(620px, calc(100vh - 110px));
	}

	.chat-widget__resize {
		display: none;
	}

	.chat-widget__toggle {
		justify-self: end;
	}
}

#scoprilo.tab-content,
#spiegazione.tab-content,
#aggiornamenti.tab-content,
#faq.tab-content,
#allegati.tab-content,
#video.tab-content,
#promo.tab-content {
	width: 100%;
	max-width: none;
	margin: 28px 0 0;
	padding: clamp(20px, 2.4vw, 34px) clamp(18px, 5vw, 72px);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

#promo.tab-content {
	margin-top: 0;
	padding-top: clamp(50px, 5vw, 72px);
	padding-left: clamp(36px, 10vw, 160px);
	padding-right: clamp(36px, 10vw, 160px);
	padding-bottom: 70px;
}

.promo-shell {
	width: 100%;
	max-width: none;
	margin: 0 auto;
}

.promo-header {
	margin-bottom: 40px;
}

.promo-header h2 {
	margin: 0 0 12px;
	color: var(--primary);
	font-size: clamp(2rem, 3vw, 2.55rem);
	font-weight: 850;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.promo-header p {
	margin: 0;
	color: #526077;
	font-size: 0.96rem;
	line-height: 1.55;
}

.promo-card {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	min-height: 134px;
	padding: 28px;
	background: #fff;
	border: 1px solid rgba(34, 41, 54, 0.12);
	border-radius: 19px;
	box-shadow: 0 12px 24px rgba(42, 34, 26, 0.09);
}

.promo-card__icon {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	color: #fff;
	background: #20385f;
	border-radius: 17px;
}

.promo-card__icon img {
	display: block;
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.promo-card__body {
	min-width: 0;
}

.promo-card__status {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 10px;
	color: #36a653;
	font-size: 0.73rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.promo-card__status > span:first-child {
	width: 7px;
	height: 7px;
	flex: 0 0 7px;
	border-radius: 50%;
	background: #3db45b;
}

.promo-card__body h3 {
	margin: 0 0 6px;
	color: #172b4d;
	font-size: 1.22rem;
	font-weight: 800;
	line-height: 1.15;
}

.promo-card__body > p:last-child {
	margin: 0;
	color: #758093;
	font-size: 0.9rem;
	line-height: 1.45;
}

.promo-card__body strong {
	color: #435067;
	font-weight: 800;
}

.promo-card__action {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	width: 141px;
	height: 42px;
	padding: 0 17px;
	color: var(--primary);
	background: #fff;
	border: 1px solid var(--primary);
	border-radius: 999px;
	font: inherit;
	font-size: 0.86rem;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	box-shadow: none;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.promo-card__action svg {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: 0.72;
}

.promo-card__action > span {
	display: inline-flex;
	align-items: center;
	line-height: 1.2;
}

.promo-card__action:hover,
.promo-card__action:focus-visible {
	color: #fff;
	background: var(--primary);
	transform: translateY(-1px);
}

.promo-card__action:focus-visible {
	outline: 2px solid rgba(7, 27, 59, 0.28);
	outline-offset: 3px;
}

.sinfonia-announcement {
	position: fixed;
	width: min(800px, calc(100% - 32px));
	max-height: calc(100dvh - 32px);
	box-sizing: border-box;
	margin: auto;
	padding: 0;
	border: 0;
	border-top: 6px solid var(--primary);
	border-radius: 22px;
	background: var(--config-beige-solid);
	color: var(--primary);
	box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.sinfonia-announcement::backdrop {
	background: rgba(7, 27, 59, 0.5);
	backdrop-filter: blur(5px);
}

.sinfonia-announcement__layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
}

.sinfonia-announcement__visual {
	display: flex;
	align-items: center;
	background: #ede8e2;
	overflow: hidden;
}

.sinfonia-announcement__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sinfonia-announcement__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 40px 32px;
	text-align: center;
}

.sinfonia-announcement__eyebrow {
	margin: 0 0 12px;
	color: var(--primary);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
}

.sinfonia-announcement h2 {
	margin: 0 0 20px;
	color: var(--primary);
	font-size: clamp(1.4rem, 4vw, 1.9rem);
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: -0.025em;
	white-space: nowrap;
}

#sinfoniaAnnouncementDescription {
	font-size: 0.95rem;
	color: var(--text-muted);
}

.sinfonia-announcement p {
	line-height: 1.6;
}

.sinfonia-announcement__hint {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	font-weight: 700;
	text-align: center;
}

.sinfonia-announcement:focus {
	outline: none;
}

.sinfonia-announcement .access-modal__close {
	z-index: 1;
	width: 32px;
	height: 32px;
	padding: 0;
	color: var(--primary);
	border: 0;
	box-shadow: none;
	border-radius: 4px;
}

.sinfonia-announcement .access-modal__close:focus:not(:focus-visible) {
	outline: none;
}

.sinfonia-announcement .access-modal__action {
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
	min-height: 46px;
	padding: 13px 24px;
	border-radius: 999px;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 700;
	background: var(--primary);
	color: #fff;
}

.sinfonia-announcement__dismiss {
	min-height: 40px;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: transparent;
	color: var(--primary);
	font: inherit;
	font-size: 0.8rem;
	cursor: pointer;
}

.sinfonia-announcement__dismiss:hover {
	background: var(--primary-soft);
}

@media (max-width: 600px) {
	.sinfonia-announcement {
		width: min(400px, calc(100% - 24px));
	}

	.sinfonia-announcement__layout {
		grid-template-columns: 1fr;
	}

	.sinfonia-announcement__visual {
		height: 170px;
	}

	.sinfonia-announcement__visual img {
		object-fit: contain;
	}

	.sinfonia-announcement__content {
		padding: 24px;
	}

	.sinfonia-announcement .access-modal__close {
		background: var(--config-beige-solid);
	}
}

.sinfonia-announcement .access-modal__action:hover {
	background: var(--primary-strong);
}

.sinfonia-announcement button:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 3px;
}

body:has(.sinfonia-announcement[open]) {
	overflow: hidden;
}

body.is-promo-modal-open {
	overflow: hidden;
}

.promo-modal[hidden] {
	display: none;
}

.promo-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	padding: 16px;
}

.promo-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(31, 39, 54, 0.58);
	backdrop-filter: blur(2px);
}

.promo-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	max-height: calc(100dvh - 32px);
	overflow-y: auto;
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 30px 80px rgba(11, 24, 46, 0.32);
	color: #17233d;
	animation: promo-modal-in 200ms ease-out both;
}

.promo-modal__header {
	position: relative;
	min-height: 210px;
	padding: 34px 34px 28px;
	background: linear-gradient(135deg, #172e53 0%, #294a7c 100%);
	border-radius: 24px 24px 0 0;
	color: #fff;
}

.promo-modal__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 0 0 19px;
	padding: 6px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.promo-modal__status span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4dd271;
}

.promo-modal__header h2 {
	margin: 0 0 9px;
	color: #fff;
	font-size: 1.72rem;
	font-weight: 850;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.promo-modal__header > p:last-child {
	max-width: 405px;
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.48;
}

.promo-modal__close {
	position: absolute;
	top: 19px;
	right: 20px;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 0 0 2px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.17);
	color: #fff;
	font: inherit;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.promo-modal__close:hover,
.promo-modal__close:focus-visible {
	background: rgba(255, 255, 255, 0.28);
	outline: none;
	transform: scale(1.05);
}

.promo-modal__content {
	padding: 28px 34px 33px;
}

.promo-modal__prices {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 18px;
	margin-bottom: 23px;
	padding: 24px 22px;
	border-radius: 17px;
	background: #f0ede8;
}

.promo-modal__prices > div {
	display: grid;
	gap: 8px;
}

.promo-modal__prices div > span {
	color: #9ba3b2;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
}

.promo-modal__prices del {
	color: #9ba3b2;
	font-size: 1.42rem;
	font-weight: 800;
	line-height: 1;
}

.promo-modal__prices strong {
	color: #14213d;
	font-size: 1.58rem;
	font-weight: 850;
	line-height: 1;
}

.promo-modal__price-arrow {
	color: #96a0af;
	font-size: 1.05rem;
}

.promo-modal__section h3 {
	margin: 0 0 10px;
	font-size: 0.9rem;
	font-weight: 850;
}

.promo-modal__section ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding-left: 16px;
	color: #485267;
	font-size: 0.87rem;
	line-height: 1.55;
	list-style-type: square;
}

.promo-modal__section li {
	padding-left: 1px;
}

.promo-modal__section li::marker {
	color: #17233d;
	font-size: 0.78em;
}

.promo-modal__section--request {
	margin-top: 23px;
}

.promo-modal__resources {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 22px;
}

.promo-modal__resources a {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 46px;
	padding: 10px 13px;
	border: 1px solid rgba(23, 41, 74, 0.2);
	border-radius: 12px;
	background: #f7f8fa;
	color: #17294a;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.25;
	text-decoration: none;
	transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.promo-modal__resources a:hover,
.promo-modal__resources a:focus-visible {
	border-color: #17294a;
	background: #fff;
	outline: none;
	transform: translateY(-1px);
}

.promo-modal__resources svg {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.promo-modal__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 26px;
}

.promo-modal__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 18px;
	border: 1px solid #17294a;
	border-radius: 999px;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.promo-modal__button--secondary {
	background: #fff;
	color: #17294a;
}

.promo-modal__button--primary {
	background: #17294a;
	color: #fff;
}

.promo-modal__button:hover,
.promo-modal__button:focus-visible {
	transform: translateY(-1px);
	outline: none;
}

.promo-modal__button--secondary:hover,
.promo-modal__button--secondary:focus-visible {
	background: #17294a;
	color: #fff;
}

.promo-modal__button--primary:hover,
.promo-modal__button--primary:focus-visible {
	background: #294a7c;
}

@keyframes promo-modal-in {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 600px) {
	.promo-modal {
		padding: 10px;
	}

	.promo-modal__dialog {
		max-height: calc(100dvh - 20px);
		border-radius: 18px;
	}

	.promo-modal__header {
		min-height: 0;
		padding: 28px 24px 24px;
		border-radius: 18px 18px 0 0;
	}

	.promo-modal__header > p:last-child {
		padding-right: 8px;
	}

	.promo-modal__close {
		top: 14px;
		right: 14px;
	}

	.promo-modal__content {
		padding: 22px 24px 26px;
	}

	.promo-modal__prices {
		gap: 11px;
		padding: 20px 16px;
	}

	.promo-modal__actions {
		grid-template-columns: 1fr;
	}

	.promo-modal__resources {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.promo-modal__dialog {
		animation: none;
	}
}

@media (max-width: 640px) {
	#promo.tab-content {
		padding: 34px 18px 48px;
	}

	.promo-header {
		margin-bottom: 26px;
	}

	.promo-card {
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 18px;
		padding: 22px;
	}

	.promo-card__icon {
		width: 54px;
		height: 54px;
		border-radius: 15px;
	}

	.promo-card__action {
		grid-column: 1 / -1;
		width: 100%;
	}
}

#scoprilo .discover-configurator__header,
#allegati .documents-layout,
#video .media-gallery-layout,
#spiegazione > h2,
#spiegazione > p,
#aggiornamenti > .updates-header,
#aggiornamenti > .updates-status-section,
#aggiornamenti > .updates-timeline,
#aggiornamenti > .updates-feedback,
#faq .faq-hero,
#faq .faq-shell {
	width: 100%;
	max-width: none;
}

#scoprilo.tab-content,
#spiegazione.tab-content,
#aggiornamenti.tab-content,
#faq.tab-content,
#allegati.tab-content {
	padding-left: clamp(36px, 10vw, 160px);
	padding-right: clamp(36px, 10vw, 160px);
}

#video.tab-content {
	padding-left: clamp(36px, 10vw, 160px);
	padding-right: clamp(36px, 10vw, 160px);
}

#scoprilo .discover-configurator__header {
	margin-bottom: clamp(18px, 2vw, 28px);
}

#scoprilo .discover-configurator__header h2,
#spiegazione > h2,
#faq .faq-hero__copy h2,
#aggiornamenti .updates-header h2 {
	font-size: clamp(1.85rem, 3vw, 3.3rem);
}

#scoprilo .discover-configurator__header p,
#spiegazione > p,
#faq .faq-hero__copy p,
#aggiornamenti .updates-header p {
	max-width: min(920px, 62vw);
	font-size: clamp(0.95rem, 0.95vw, 1.06rem);
	line-height: 1.42;
}

#scoprilo .discover-configurator__description p {
	max-width: min(960px, 72vw);
	font-size: clamp(0.94rem, 0.9vw, 1rem);
	font-weight: 500;
	line-height: 1.65;
}

#scoprilo .discover-configurator-kpis {
	margin-bottom: clamp(22px, 2.8vw, 38px);
	padding: clamp(18px, 2vw, 28px) clamp(22px, 3vw, 42px);
}

#scoprilo .discover-configurator-kpis .hero-stat {
	padding: 0 clamp(22px, 2.5vw, 42px);
	min-height: clamp(74px, 5.8vw, 98px);
}

#scoprilo .discover-configurator-kpis .home-configurator-stat__icon {
	width: clamp(52px, 4vw, 64px);
	height: clamp(52px, 4vw, 64px);
}

#scoprilo .discover-configurator-kpis .home-configurator-stat__icon svg {
	width: clamp(25px, 2vw, 31px);
	height: clamp(25px, 2vw, 31px);
}

#scoprilo .discover-configurator-kpis .hero-stat strong {
	font-size: clamp(1.55rem, 2vw, 2.05rem);
}

#scoprilo .discover-configurator-kpis .hero-stat > span:last-child {
	font-size: clamp(0.82rem, 0.9vw, 0.9rem);
}

#scoprilo .home-gif-section--homepage {
	margin-top: clamp(64px, 7vw, 104px);
}

#scoprilo .home-gif-section--homepage > h3 {
	margin: 0 0 16px;
	color: var(--discover-accent);
	font-size: 0.75rem;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

#scoprilo .home-gif-section--homepage > p {
	max-width: 1120px;
	margin: 0 0 clamp(28px, 3vw, 40px);
	color: var(--discover-navy);
	font-family: inherit;
	font-size: clamp(1.9rem, 3.15vw, 3rem);
	font-weight: 850;
	line-height: 1.04;
	letter-spacing: -0.04em;
}

#scoprilo .home-gif-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(18px, 2.2vw, 32px);
}

#scoprilo .home-gif-card figcaption,
#scoprilo .home-gif-card__caption {
	padding: clamp(16px, 1.6vw, 24px);
}

#scoprilo .home-gif-card img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

#scoprilo .discover-configurator-access {
	margin-top: clamp(64px, 7vw, 104px);
	padding: clamp(20px, 2.2vw, 32px) clamp(24px, 3vw, 46px);
	gap: clamp(16px, 2vw, 30px);
}

#scoprilo .discover-configurator-access__icon {
	width: clamp(46px, 4vw, 58px);
	height: clamp(46px, 4vw, 58px);
}

#scoprilo .discover-configurator-access__copy h3 {
	font-size: clamp(1rem, 1.15vw, 1.25rem);
}

#scoprilo .discover-configurator-access__copy p {
	font-size: clamp(0.82rem, 0.85vw, 0.92rem);
	line-height: 1.4;
}

#faq .faq-shell {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 28vw);
	gap: clamp(18px, 2.2vw, 34px);
}

#faq .faq-hero {
	min-height: auto;
	padding-bottom: clamp(20px, 2vw, 28px);
}

#faq .faq-list {
	width: 100%;
}

#aggiornamenti .updates-header {
	margin-bottom: clamp(18px, 2vw, 30px);
}

#aggiornamenti .updates-status-section {
	margin-bottom: clamp(30px, 3.5vw, 54px);
}

#aggiornamenti .updates-timeline {
	gap: clamp(20px, 2.2vw, 34px);
}

#aggiornamenti .updates-timeline::before {
	left: calc(clamp(150px, 13vw, 210px) + clamp(18px, 2vw, 34px) + 17px);
}

#aggiornamenti .updates-timeline__item {
	grid-template-columns: clamp(150px, 13vw, 210px) 34px minmax(0, 1fr);
	gap: clamp(18px, 2vw, 34px);
}

#aggiornamenti .updates-card {
	padding: clamp(20px, 2vw, 30px) clamp(22px, 2.5vw, 38px);
}

#aggiornamenti .updates-card h3 {
	margin-bottom: 10px;
	font-size: clamp(0.98rem, 1vw, 1.08rem);
}

#aggiornamenti .updates-card li {
	font-size: clamp(0.84rem, 0.9vw, 0.92rem);
	line-height: 1.36;
}

#aggiornamenti .updates-feedback {
	margin-top: clamp(28px, 3.5vw, 48px);
	padding: clamp(20px, 2.2vw, 32px) clamp(24px, 3vw, 44px);
}

@media (min-width: 961px) and (max-width: 1280px) {
	#aggiornamenti .updates-header--timeline {
		flex-direction: column;
		gap: 18px;
	}

	#aggiornamenti .updates-header--timeline h2,
	#aggiornamenti .updates-header--timeline .updates-header__link {
		white-space: nowrap;
	}

	#aggiornamenti .updates-header--timeline .updates-header__actions {
		flex-wrap: nowrap;
		width: 100%;
		margin-top: 0;
	}

	#aggiornamenti .updates-header--timeline .updates-header__search {
		margin-left: auto;
	}
}
#aggiornamenti .updates-feedback__icon,
#faq .updates-feedback__icon {
	width: clamp(52px, 4.5vw, 62px);
	height: clamp(52px, 4.5vw, 62px);
}

@media (max-width: 960px) {
	#scoprilo.tab-content,
	#spiegazione.tab-content,
	#aggiornamenti.tab-content,
	#faq.tab-content,
	#allegati.tab-content,
	#video.tab-content {
		padding: 28px 18px;
	}

	#scoprilo .discover-configurator__header p,
	#spiegazione > p,
	#faq .faq-hero__copy p,
	#aggiornamenti .updates-header p {
		max-width: 100%;
	}

	#scoprilo .home-gif-grid,
	#faq .faq-shell {
		grid-template-columns: 1fr;
	}

	#scoprilo .discover-configurator-kpis .hero-stat {
		padding: 22px 0;
		min-height: auto;
	}

	#aggiornamenti .updates-timeline::before {
		left: 9px;
	}

	#aggiornamenti .updates-timeline__item {
		grid-template-columns: 18px minmax(0, 1fr);
		gap: 18px;
	}

	#aggiornamenti .updates-timeline__meta {
		grid-column: 2;
		grid-row: 1;
		padding-top: 0;
	}

	#aggiornamenti .updates-timeline__dot {
		grid-column: 1;
		grid-row: 1 / span 2;
		margin-top: 4px;
	}

	#aggiornamenti .updates-card,
	#aggiornamenti .updates-date-panel {
		grid-column: 2;
		grid-row: 2;
	}
}

@media (max-width: 640px) {
	#scoprilo.tab-content,
	#spiegazione.tab-content,
	#aggiornamenti.tab-content,
	#faq.tab-content,
	#allegati.tab-content,
	#video.tab-content {
		padding: 24px 14px;
	}

	#scoprilo .discover-configurator-access,
	#aggiornamenti .updates-feedback {
		grid-template-columns: 1fr;
	}
	#aggiornamenti .updates-header {
		gap: 14px;
		margin-bottom: 18px;
	}

	#aggiornamenti .updates-header__actions {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		width: 100%;
		gap: 10px;
	}

	#aggiornamenti [data-update-expand-all] {
		grid-column: 1 / -1;
	}

	#aggiornamenti .updates-header__link {
		width: 100%;
		min-width: 0;
		min-height: 42px;
		padding: 0 12px;
		font-size: 0.72rem;
		white-space: normal;
		text-align: center;
	}

	#aggiornamenti .updates-header__search {
		width: 42px;
		height: 42px;
		padding: 0 11px;
	}

	#aggiornamenti .updates-header__search:hover {
		width: 42px;
	}

	#aggiornamenti .updates-header__search:focus-within {
		grid-column: 1 / -1;
		width: 100%;
	}

	#aggiornamenti .updates-status-section {
		margin-bottom: 24px;
	}

	#aggiornamenti .updates-timeline {
		gap: 22px;
		width: 100%;
	}

	#aggiornamenti .updates-timeline::before {
		left: 7px;
	}

	#aggiornamenti .updates-timeline__item {
		grid-template-columns: 16px minmax(0, 1fr);
		column-gap: 12px;
		row-gap: 10px;
		width: 100%;
	}

	#aggiornamenti .updates-timeline__meta {
		align-content: start;
		gap: 6px;
	}

	#aggiornamenti .updates-timeline__dot {
		width: 16px;
		height: 16px;
		margin-top: 2px;
	}

	#aggiornamenti .updates-date-panel {
		display: grid;
		width: 100%;
		min-width: 0;
		gap: 12px;
		overflow: visible;
	}

	#aggiornamenti .updates-date-panel[hidden] {
		display: none;
	}

	#aggiornamenti .updates-card {
		grid-column: auto;
		grid-row: auto;
		width: 100%;
		min-width: 0;
		padding: 18px 16px;
		background: rgba(255, 255, 255, 0.94);
		box-shadow: 0 12px 28px rgba(14, 41, 68, 0.08);
	}

	#aggiornamenti .updates-card[hidden] {
		display: none;
	}

	#aggiornamenti .updates-card h3 {
		font-size: 0.95rem;
	}

	#aggiornamenti .updates-card li {
		padding-left: 16px;
		font-size: 0.82rem;
		line-height: 1.35;
	}
}

#allegati .documents-tree__item.active,
#allegati .documents-tree__item[aria-current="true"],
#video .documents-tree__item.active,
#video .documents-tree__item[aria-current="true"] {
	position: relative;
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
	border-color: rgba(170, 133, 120, 0.4);
	box-shadow: none;
}

#allegati .documents-tree__item.active::before,
#allegati .documents-tree__item[aria-current="true"]::before,
#video .documents-tree__item.active::before,
#video .documents-tree__item[aria-current="true"]::before {
	content: '';
	position: absolute;
	top: 8px;
	bottom: 8px;
	left: 0;
	width: 4px;
	height: auto;
	border-radius: 0 999px 999px 0;
	background: #171310;
	opacity: 1;
	transform: none;
	-webkit-mask: none;
	mask: none;
}

#allegati .documents-tree__item.active .documents-tree__count,
#allegati .documents-tree__item[aria-current="true"] .documents-tree__count,
#video .documents-tree__item.active .documents-tree__count,
#video .documents-tree__item[aria-current="true"] .documents-tree__count {
	background: transparent;
	color: #6f665f;
}

#allegati .documents-tree__item.active:hover,
#allegati .documents-tree__item[aria-current="true"]:hover,
#allegati .documents-tree__item.active:focus-visible,
#allegati .documents-tree__item[aria-current="true"]:focus-visible,
#video .documents-tree__item.active:hover,
#video .documents-tree__item[aria-current="true"]:hover,
#video .documents-tree__item.active:focus-visible,
#video .documents-tree__item[aria-current="true"]:focus-visible {
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
}

#debugAccess h2 {
	text-align: center;
}

#debugAccess.tab-content.active {
	display: grid;
	gap: 24px;
}

.debug-access-card {
	width: min(100%, 900px);
	margin: 0 auto;
	padding: 16px 32px;
	border: 0;
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow-sm);
}

.debug-access-list {
	display: grid;
	gap: 12px;
	margin: 0;
}

.debug-access-row[hidden] {
	display: none !important;
}

.debug-access-row {
	display: grid;
	grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
	gap: 16px;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(16, 16, 16, 0.08);
}

.debug-access-row:last-child {
	border-bottom: 0;
}

.debug-access-row dt {
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	color: var(--text-muted);
	text-transform: uppercase;
}

.debug-access-row dd {
	margin: 0;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #171310;
	word-break: break-word;
	text-align: right;
}

.debug-access-customer-badge {
	justify-self: end;
	padding: 5px 14px;
	border-radius: 999px;
	background: #efe9e9;
	font-size: 0.82rem !important;
}

.debug-access-customer-badge[data-customer-variant="ambassador"] {
	background: rgba(161, 176, 215, 0.4);
}

.debug-access-customer-badge[data-customer-variant="partner"] {
	background: rgba(170, 133, 120, 0.4);
}

.debug-access-customer-badge[data-customer-variant="friend"] {
	background: rgba(225, 204, 117, 0.4);
}

.debug-access-customer-badge[data-customer-variant="architect"] {
	background: rgba(120, 109, 74, 0.4);
}

.debug-access-customer-badge[data-customer-variant="agent"] {
	background: rgba(161, 176, 215, 0.4);
}

.debug-access-customer-badge[data-customer-variant="internal"] {
	background: rgba(157, 131, 131, 0.28);
}

.reserved-support[hidden] {
	display: none;
}

.reserved-support {
	--reserved-accent: #9d8383;
	width: min(100%, 900px);
	margin: 0 auto;
	padding: 32px;
	border-top: 4px solid var(--reserved-accent);
	border-radius: 16px;
	background: #fff;
	box-shadow: var(--shadow-sm);
}

.reserved-support[data-customer-variant="ambassador"] {
	--reserved-accent: #a1b0d7;
}

.reserved-support[data-customer-variant="friend"] {
	--reserved-accent: #e1cc75;
}

.reserved-support[data-customer-variant="architect"] {
	--reserved-accent: #7d7452;
}

.reserved-support__header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.reserved-support__logo {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	object-fit: contain;
	object-position: center;
}

.reserved-support__architect-logo {
	display: none;
	width: 48px;
	height: 48px;
	flex: 0 0 48px;
	place-items: center;
	border-radius: 999px;
	background: var(--reserved-accent);
	color: #fff;
	font-family: 'Arial Nova', Arial, sans-serif;
	font-size: 1.25rem;
	font-weight: 800;
}

.reserved-support__architect-logo img {
	display: block;
	width: 25px;
	height: 25px;
	object-fit: contain;
	transform: translate(2px, 0);
}

.reserved-support[data-customer-variant="architect"] .reserved-support__logo {
	display: none;
}

.reserved-support[data-customer-variant="architect"] .reserved-support__architect-logo {
	display: grid;
}

.reserved-support__header h3,
.reserved-support__header p,
.reserved-support__intro,
.reserved-support__footer {
	margin: 0;
}

.reserved-support__header h3 {
	color: var(--primary);
	font-size: 1.05rem;
}

.reserved-support__header p {
	margin-top: 2px;
	color: #4f463f;
	font-size: 0.82rem;
}

.reserved-support__intro {
	padding: 18px 20px;
	border-radius: 12px;
	background: #f6f4f1;
	color: var(--primary);
	font-size: 0.88rem;
	line-height: 1.65;
}

.reserved-support__topics {
	display: grid;
	gap: 10px;
	margin-top: 20px;
}

.reserved-support__topics a[hidden] {
	display: none;
}

.reserved-support__topics a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 18px;
	border: 1px solid #ded7cf;
	border-radius: 10px;
	background: #fbfaf8;
	color: var(--primary);
	font-size: 0.88rem;
	font-weight: 800;
	text-decoration: none;
}

.reserved-support__topics a:hover,
.reserved-support__topics a:focus-visible {
	border-color: var(--reserved-accent);
	background: #fff;
	outline: none;
}

.reserved-support__footer {
	margin-top: 16px;
	color: #4f463f;
	font-size: 0.7rem;
	text-align: center;
}

@media (max-width: 640px) {
	.debug-access-card,
	.reserved-support {
		padding: 20px;
	}

	.debug-access-row {
		grid-template-columns: 1fr;
		gap: 7px;
	}

	.debug-access-row dd {
		text-align: left;
	}

	.debug-access-customer-badge {
		justify-self: start;
	}

}

/* Scoprilo editorial v2 */
#scoprilo.tab-content {
	margin-top: 0;
	padding-right: clamp(22px, 4vw, 64px);
	padding-left: clamp(22px, 4vw, 64px);
	padding-top: 0;
	padding-bottom: clamp(70px, 8vw, 120px);
}

.discover-editorial {
	--discover-navy: rgb(4, 33, 67);
	--discover-navy-soft: #2c3a55;
	--discover-accent: #b87f6d;
	--discover-line: #dcd6c9;
	--discover-muted: #6b6a63;
	width: min(1320px, 100%);
	margin: 0 auto;
	color: var(--discover-navy);
}

.discover-editorial__hero-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	align-items: center;
	gap: clamp(42px, 6vw, 88px);
	padding: clamp(42px, 5vw, 68px) 0 20px;
	margin-bottom: 28px;
}

.discover-editorial__hero {
	max-width: 620px;
	padding: 0;
}

.discover-editorial__eyebrow {
	margin: 0 0 16px;
	color: var(--discover-accent);
	font-size: 0.75rem;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.discover-editorial__hero h2 {
	margin: 0 0 30px;
	color: var(--discover-navy);
	font-size: clamp(1.65rem, 3vw, 2.85rem);
	font-weight: 850;
	line-height: 1.02;
	letter-spacing: -0.045em;
	white-space: nowrap;
}

.discover-editorial__intro {
	max-width: 540px;
	margin: 0;
	color: var(--discover-navy-soft);
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	font-weight: 500;
	line-height: 1.6;
}

.discover-editorial__hero-media,
.discover-editorial__visual {
	position: relative;
	overflow: hidden;
	margin: 0;
	background: #c9a79a;
}

.discover-editorial__hero-media {
	width: 90%;
	justify-self: end;
	aspect-ratio: 4 / 3;
	margin: 0;
	border-radius: 4px;
}

.discover-editorial__hero-media::after,
.discover-editorial__visual::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to top, rgba(22, 35, 60, 0.58), transparent 52%);
}

.discover-editorial__hero-media img,
.discover-editorial__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.discover-editorial__hero-media img {
	object-position: center 56%;
}

.discover-editorial__hero-media figcaption,
.discover-editorial__visual figcaption {
	position: absolute;
	z-index: 1;
	left: 24px;
	bottom: 18px;
	margin: 0;
	color: rgba(255, 255, 255, 0.94);
	font-size: 0.75rem;
	font-style: italic;
	line-height: 1.35;
}

.discover-editorial__sequence {
	display: flex;
	flex-direction: column;
}

.discover-editorial__step {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	align-items: center;
	gap: clamp(42px, 6vw, 88px);
	padding: clamp(48px, 5vw, 68px) 0;
	border-top: 1px solid var(--discover-line);
}

.discover-editorial__step:last-child {
	border-bottom: 1px solid var(--discover-line);
}

.discover-editorial__step--reverse {
	direction: ltr;
	grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}

.discover-editorial__step--reverse .discover-editorial__copy {
	grid-column: 2;
	grid-row: 1;
}

.discover-editorial__index {
	position: absolute;
	top: 34px;
	left: 0;
	color: var(--discover-navy);
	font-size: clamp(5.5rem, 9vw, 7.5rem);
	font-weight: 850;
	line-height: 1;
	letter-spacing: -0.06em;
	opacity: 0.055;
	pointer-events: none;
	user-select: none;
}

.discover-editorial__step--reverse .discover-editorial__index {
	right: 0;
	left: auto;
}

.discover-editorial__copy {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.discover-editorial__copy h3 {
	margin: 0 0 16px;
	color: var(--discover-navy);
	font-size: clamp(1.65rem, 2.4vw, 2.15rem);
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: -0.025em;
}

.discover-editorial__copy > p:last-child {
	max-width: 380px;
	margin: 0;
	color: var(--discover-navy-soft);
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.7;
}

.discover-editorial__visual {
	width: 90%;
	justify-self: end;
	aspect-ratio: 4 / 3;
	border-radius: 4px;
}

.discover-editorial__step--reverse .discover-editorial__visual {
	grid-column: 1;
	grid-row: 1;
	justify-self: start;
}

.discover-editorial__visual img {
	object-position: center;
}

.discover-editorial__visual--detail img {
	object-position: center 62%;
}

.discover-editorial__visual--workspace {
	aspect-ratio: 1600 / 1002;
}

.discover-editorial__visual--workspace img {
	object-position: center;
}

.discover-editorial__kpis {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-top: clamp(68px, 8vw, 96px);
	padding: 1px;
	border: 1px solid rgba(22, 35, 60, 0.1);
	border-radius: 14px;
	background: rgba(22, 35, 60, 0.1);
	overflow: hidden;
	box-shadow: 0 18px 45px rgba(22, 35, 60, 0.08);
}

.discover-editorial__kpi {
	position: relative;
	display: grid;
	gap: 12px;
	min-height: 154px;
	padding: 34px 38px 30px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 244, 241, 0.96));
	transition: background 180ms ease, transform 180ms ease;
}

.discover-editorial__kpi::before {
	content: "";
	position: absolute;
	top: 0;
	left: 38px;
	width: 44px;
	height: 3px;
	border-radius: 0 0 999px 999px;
	background: var(--discover-accent);
}

.discover-editorial__kpi:hover {
	z-index: 1;
	background: #ffffff;
	transform: translateY(-3px);
}

.discover-editorial__kpi strong {
	color: var(--discover-navy);
	font-size: clamp(2.5rem, 3.8vw, 3.35rem);
	font-weight: 850;
	line-height: 1;
	letter-spacing: -0.04em;
}

.discover-editorial__kpi span {
	color: var(--discover-muted);
	font-size: 0.82rem;
	font-weight: 750;
	line-height: 1.35;
	letter-spacing: 0.045em;
	text-transform: uppercase;
}

@media (max-width: 960px) {
	#scoprilo.tab-content {
		padding-right: 22px;
		padding-left: 22px;
		padding-top: 0;
	}

	.discover-editorial__hero-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: clamp(24px, 4vw, 32px);
	}

	.discover-editorial__step,
	.discover-editorial__step--reverse {
		gap: 32px;
	}

	.discover-editorial__copy {
		flex-basis: 42%;
	}
}

@media (max-width: 720px) {
	.discover-editorial__hero-layout {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-top: 40px;
		padding-bottom: 0;
		margin-bottom: 32px;
	}

	.discover-editorial__hero {
		max-width: 100%;
		padding: 0;
	}

	.discover-editorial__hero h2 {
		font-size: clamp(1.1rem, 6.4vw, 2.5rem);
	}

	.discover-editorial__hero-media {
		width: 100%;
		aspect-ratio: 4 / 3;
		margin: 0;
	}

	.discover-editorial__step,
	.discover-editorial__step--reverse {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		padding: 46px 0;
	}

	.discover-editorial__step--reverse .discover-editorial__index {
		right: auto;
		left: 0;
	}

	.discover-editorial__copy {
		flex-basis: auto;
		padding-top: 20px;
	}

	.discover-editorial__visual {
		flex-basis: auto;
		width: 100%;
		aspect-ratio: 4 / 3;
	}

	.discover-editorial__kpis {
		grid-template-columns: 1fr;
		gap: 1px;
		padding: 1px;
	}

	.discover-editorial__kpi {
		min-height: 0;
		padding: 30px 28px 26px;
		border-bottom: 0;
	}

	.discover-editorial__kpi::before {
		left: 28px;
	}
}
/* Scoprilo KPI strip */
.discover-editorial__numbers {
	margin-top: clamp(68px, 8vw, 96px);
}

.discover-editorial__numbers-heading {
	display: grid;
	gap: 14px;
	margin-bottom: clamp(28px, 3vw, 40px);
}

.discover-editorial__numbers-heading .discover-editorial__eyebrow {
	margin: 0;
}

.discover-editorial__numbers-heading h3 {
	max-width: none;
	margin: 0;
	color: var(--discover-navy);
	font-family: inherit;
	font-size: clamp(1.9rem, 3.15vw, 3rem);
	white-space: nowrap;
	font-weight: 850;
	line-height: 1.04;
	letter-spacing: -0.04em;
}

.discover-editorial__numbers .discover-editorial__kpis {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 26px 30px;
	border: 1px solid rgba(22, 35, 60, 0.08);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.48);
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(22, 35, 60, 0.08);
}

.discover-editorial__numbers .discover-editorial__kpi {
	position: relative;
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	grid-template-rows: auto auto;
	align-items: center;
	column-gap: 20px;
	row-gap: 8px;
	min-height: 98px;
	padding: 0 40px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transition: none;
}

.discover-editorial__numbers .discover-editorial__kpi:first-child {
	padding-left: 22px;
}

.discover-editorial__numbers .discover-editorial__kpi:last-child {
	padding-right: 22px;
}

.discover-editorial__numbers .discover-editorial__kpi + .discover-editorial__kpi {
	border-left: 1px solid rgba(22, 35, 60, 0.13);
}

.discover-editorial__numbers .discover-editorial__kpi::before,
.discover-editorial__numbers .discover-editorial__kpi:hover::before {
	display: none;
}

.discover-editorial__numbers .discover-editorial__kpi:hover {
	background: transparent;
	transform: none;
	box-shadow: none;
}

.discover-editorial__kpi-icon {
	grid-row: 1 / span 2;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(170, 133, 120, 0.5);
	border-radius: 50%;
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
	box-shadow: none;
}

.discover-editorial__kpi-icon svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.discover-editorial__numbers .discover-editorial__kpi strong {
	align-self: end;
	color: #171310;
	font-family: inherit;
	font-size: clamp(2rem, 2.4vw, 2.55rem);
	font-weight: 850;
	line-height: 1;
	letter-spacing: -0.035em;
}

.discover-editorial__numbers .discover-editorial__kpi > span:last-child {
	align-self: start;
	color: #171310;
	font-family: inherit;
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
}

@media (max-width: 960px) {
	.discover-editorial__numbers .discover-editorial__kpis {
		padding: 20px;
	}

	.discover-editorial__numbers .discover-editorial__kpi,
	.discover-editorial__numbers .discover-editorial__kpi:first-child,
	.discover-editorial__numbers .discover-editorial__kpi:last-child {
		grid-template-columns: 52px minmax(0, 1fr);
		column-gap: 14px;
		padding: 0 20px;
	}

	.discover-editorial__kpi-icon {
		width: 52px;
		height: 52px;
	}

	.discover-editorial__kpi-icon svg {
		width: 23px;
		height: 23px;
	}
}

@media (max-width: 720px) {
	.discover-editorial__numbers-heading {
		gap: 12px;
		margin-bottom: 24px;
	}

	.discover-editorial__numbers-heading h3 {
		font-size: clamp(1.75rem, 8vw, 2.5rem);
		line-height: 1.08;
		white-space: normal;
	}

	.discover-editorial__numbers .discover-editorial__kpis {
		grid-template-columns: 1fr;
		padding: 8px 24px;
	}

	.discover-editorial__numbers .discover-editorial__kpi,
	.discover-editorial__numbers .discover-editorial__kpi:first-child,
	.discover-editorial__numbers .discover-editorial__kpi:last-child {
		min-height: 112px;
		padding: 18px 4px;
	}

	.discover-editorial__numbers .discover-editorial__kpi + .discover-editorial__kpi {
		border-top: 1px solid rgba(22, 35, 60, 0.13);
		border-left: 0;
	}
}
/* Shared category-label icon color */
.home-configurator-stat__icon,
.home-kpi-strip .home-configurator-stat__icon,
.home-configurator-stat .home-configurator-stat__icon {
	background: rgba(170, 133, 120, 0.4);
	color: #171310;
	box-shadow: none;
}

/* Fine fase demo */
body.has-demo-ended-modal {
	overflow: hidden;
}

.demo-ended-modal[hidden] {
	display: none;
}

.demo-ended-modal {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: grid;
	place-items: center;
	padding: 24px;
}

.demo-ended-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 24, 50, 0.68);
	backdrop-filter: blur(5px);
}

.demo-ended-modal__dialog {
	position: relative;
	width: min(100%, 620px);
	padding: 56px 54px 48px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(8, 22, 48, 0.32);
	color: #16233c;
	text-align: center;
	animation: demo-ended-modal-in 220ms ease-out both;
}

.demo-ended-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #eef1f6;
	color: #16233c;
	font: inherit;
	font-size: 1.8rem;
	line-height: 1;
	cursor: pointer;
	transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.demo-ended-modal__close:hover,
.demo-ended-modal__close:focus-visible {
	background: #16233c;
	color: #fff;
	transform: scale(1.05);
	outline: none;
}

.demo-ended-modal__title {
	margin: 0 0 24px;
	color: #16233c;
	font-size: clamp(1.65rem, 4vw, 2.25rem);
	font-weight: 800;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

.demo-ended-modal__description {
	color: #4f5d73;
	font-size: 1.08rem;
	line-height: 1.65;
}

.demo-ended-modal__description p {
	margin: 0;
}

.demo-ended-modal__description p + p {
	margin-top: 14px;
}

.demo-ended-modal__description strong {
	color: #16233c;
	font-weight: 800;
}

@keyframes demo-ended-modal-in {
	from {
		opacity: 0;
		transform: translateY(14px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (max-width: 600px) {
	.demo-ended-modal {
		padding: 16px;
	}

	.demo-ended-modal__dialog {
		padding: 52px 25px 36px;
		border-radius: 16px;
	}

	.demo-ended-modal__close {
		top: 12px;
		right: 12px;
	}

	.demo-ended-modal__description {
		font-size: 1rem;
		line-height: 1.55;
	}
}

@media (prefers-reduced-motion: reduce) {
	.demo-ended-modal__dialog {
		animation: none;
	}
}

