/* Banner pre-footer — CTA architetti */
.muza-architect-banner {
	padding: 2rem 1rem 0;
	background: #fff;
}

.muza-architect-banner__card {
	display: grid;
	grid-template-columns: 1fr;
	max-width: 80rem;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 1rem;
	background: #1a1a1a;
	box-shadow: 0 18px 45px rgba(26, 26, 26, 0.14);
}

.muza-architect-banner__media {
	position: relative;
	min-height: 12rem;
}

.muza-architect-banner__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 12rem;
	object-fit: cover;
	object-position: center;
}

.muza-architect-banner__media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.55) 100%);
}

.muza-architect-banner__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.875rem;
	padding: 1.5rem 1.25rem;
	color: #fff;
}

.muza-architect-banner__badge {
	display: inline-flex;
	align-self: flex-start;
	margin: 0;
	padding: 0.35rem 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(247, 94, 29, 0.18);
	border: 1px solid rgba(247, 94, 29, 0.45);
	border-radius: 999px;
}

.muza-architect-banner__title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.muza-architect-banner__desc {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

.muza-architect-banner__desc strong {
	color: #fff;
	font-weight: 600;
}

.muza-architect-banner__points {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.muza-architect-banner__points li {
	position: relative;
	padding-left: 1.35rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

.muza-architect-banner__points li::before {
	content: '';
	position: absolute;
	top: 0.45rem;
	left: 0;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: #F75E1D;
	box-shadow: 0 0 0 3px rgba(247, 94, 29, 0.2);
}

.muza-architect-banner__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	align-self: flex-start;
	margin-top: 0.25rem;
	padding: 0.8rem 1.35rem;
	background: #F75E1D;
	color: #fff !important;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 0.5rem;
	box-shadow: 0 10px 24px rgba(247, 94, 29, 0.28);
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.muza-architect-banner__cta:hover {
	background: #e04f10;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(247, 94, 29, 0.34);
}

.muza-architect-banner__cta svg {
	width: 1rem;
	height: 1rem;
}

@media (min-width: 768px) {
	.muza-architect-banner {
		padding: 2.5rem 1.5rem 0;
	}

	.muza-architect-banner__card {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
		min-height: 18rem;
	}

	.muza-architect-banner__media {
		min-height: 100%;
	}

	.muza-architect-banner__image {
		min-height: 18rem;
	}

	.muza-architect-banner__media-overlay {
		background: linear-gradient(90deg, rgba(26, 26, 26, 0.1) 0%, rgba(26, 26, 26, 0.75) 100%);
	}

	.muza-architect-banner__content {
		padding: 2rem 2.25rem;
	}

	.muza-architect-banner__title {
		font-size: 1.75rem;
	}
}

@media (min-width: 1024px) {
	.muza-architect-banner__content {
		padding: 2.25rem 2.75rem;
	}

	.muza-architect-banner__title {
		font-size: 2rem;
	}
}

/* Popup — basso a destra, una volta per sessione */
.muza-architect-popup {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 9990;
	width: calc(100% - 2rem);
	max-width: 18rem;
	padding: 1rem 1.125rem 1.125rem;
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
	border-top: 3px solid #F75E1D;
	opacity: 0;
	visibility: hidden;
	transform: translateY(1rem);
	transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}

.muza-architect-popup.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.muza-architect-popup__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;
	border: none;
	background: transparent;
	color: #9ca3af;
	cursor: pointer;
	border-radius: 0.25rem;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.muza-architect-popup__close:hover {
	color: #1a1a1a;
	background-color: #f3f4f6;
}

.muza-architect-popup__close svg {
	width: 1rem;
	height: 1rem;
}

.muza-architect-popup__label {
	margin: 0 0 0.25rem;
	padding-right: 1.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #F75E1D;
}

.muza-architect-popup__title {
	margin: 0 0 0.375rem;
	padding-right: 1rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
}

.muza-architect-popup__text {
	margin: 0 0 0.875rem;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #4b5563;
}

.muza-architect-popup__cta {
	display: block;
	width: 100%;
	padding: 0.5625rem 1rem;
	background-color: #F75E1D;
	color: #fff !important;
	font-size: 0.8125rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border-radius: 0.375rem;
	transition: background-color 0.2s ease;
}

.muza-architect-popup__cta:hover {
	background-color: #e04f10;
	color: #fff !important;
}

@media (max-width: 767px) {
	.muza-architect-popup {
		bottom: 5rem;
		max-width: 16.5rem;
	}
}

@media (min-width: 640px) {
	.muza-architect-popup {
		right: 1.25rem;
		bottom: 1.25rem;
		max-width: 19rem;
	}
}
