/* ============================================================
   NOLEGGIO LUNGO TERMINE — Landing Page
   Pattern Hero allineato a EX60 landing
   ============================================================ */

/* ---------- HERO (pattern EX60) ---------- */
.nlt-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 700px;
	background-color: #0a0a0a;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.nlt-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(26,26,46,0.5) 100%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	z-index: 2;
}

.nlt-hero-logo {
	width: 200px;
	margin-bottom: 40px;
	filter: brightness(0) invert(1);
}

.nlt-hero h1 {
	font-size: clamp(40px, 7vw, 80px);
	font-weight: 300;
	color: #fff;
	margin: 0 0 20px 0;
	letter-spacing: 8px;
	text-shadow: 2px 4px 20px rgba(0,0,0,0.5);
}

.nlt-hero-subtitle {
	font-size: clamp(18px, 3vw, 28px);
	color: #fff;
	margin: 0 0 50px 0;
	font-weight: 400;
	letter-spacing: 1px;
	line-height: 1.6;
	text-shadow: 2px 4px 15px rgba(0,0,0,0.6);
	background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
	padding: 20px 40px;
	border-radius: 12px;
	border-left: 5px solid #c9a84c;
	max-width: 700px;
}

.nlt-hero-cta-btn {
	background: linear-gradient(135deg, #c9a84c 0%, #a8893e 100%);
	color: #0a0a0a;
	border: none;
	padding: 20px 60px;
	border-radius: 50px;
	font-size: clamp(14px, 2vw, 18px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 30px rgba(201,168,76,0.4);
	display: inline-flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.nlt-hero-cta-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255,255,255,0.25);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.nlt-hero-cta-btn:hover::before {
	width: 400px;
	height: 400px;
}

.nlt-hero-cta-btn:hover {
	transform: translateY(-4px) scale(1.03);
	box-shadow: 0 15px 40px rgba(201,168,76,0.6);
}

.nlt-hero-cta-btn svg {
	margin-left: 12px;
	transition: transform 0.3s ease;
}

.nlt-hero-cta-btn:hover svg {
	transform: translateX(5px);
}

.nlt-scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	cursor: pointer;
	animation: nlt-bounce 2s infinite;
	z-index: 3;
}

@keyframes nlt-bounce {
	0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
	40% { transform: translateX(-50%) translateY(-10px); }
	60% { transform: translateX(-50%) translateY(-5px); }
}

/* ---------- BUTTONS ---------- */
.nlt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	padding: 14px 28px;
	transition: all .25s ease;
	cursor: pointer;
	border: none;
	line-height: 1;
}
.nlt-btn--primary {
	background: #c9a84c;
	color: #0a0a0a;
}
.nlt-btn--primary:hover {
	background: #dabb5e;
	color: #0a0a0a;
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(201,168,76,.3);
	text-decoration: none;
}
.nlt-btn--card {
	background: var(--card-accent);
	color: #fff;
	width: 100%;
	padding: 16px 24px;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}
.nlt-btn--card:hover {
	filter: brightness(1.15);
	transform: translateY(-1px);
	box-shadow: 0 4px 20px rgba(0,0,0,.2);
	color: #fff;
	text-decoration: none;
}
.nlt-btn--lg {
	padding: 18px 36px;
	font-size: 17px;
}

/* ---------- OFFERTE SECTION ---------- */
.nlt-offerte {
	background: #f5f5f7;
	padding: 80px 0 100px;
}
.nlt-offerte__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}
.nlt-offerte__title {
	font-size: clamp(1.6rem, 3.5vw, 2.4rem);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
}
.nlt-offerte__intro {
	font-size: 17px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}
.nlt-offerte__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

/* ---------- CARD ---------- */
.nlt-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 30px rgba(0,0,0,.04);
	transition: box-shadow .3s ease, transform .3s ease;
	display: flex;
	flex-direction: column;
}
.nlt-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,.08), 0 16px 48px rgba(0,0,0,.08);
	transform: translateY(-4px);
}
.nlt-card::before {
	content: '';
	display: block;
	height: 4px;
	background: var(--card-accent);
}

/* Badge */
.nlt-card__badge {
	position: absolute;
	top: 20px;
	right: 16px;
	background: var(--card-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 4px;
	z-index: 2;
}

/* Immagine */
.nlt-card__img {
	position: relative;
	aspect-ratio: 16/9;
	overflow: hidden;
	background: #f0f0f0;
}
.nlt-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}
.nlt-card:hover .nlt-card__img img {
	transform: scale(1.03);
}

/* Header */
.nlt-card__header {
	padding: 24px 24px 0;
}
.nlt-card__brand {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--card-accent);
	margin-bottom: 4px;
}
.nlt-card__model {
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 6px;
	line-height: 1.2;
}
.nlt-card__tipo {
	display: inline-block;
	font-size: 12px;
	font-weight: 500;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 3px 10px;
	background: #f5f5f7;
	border-radius: 3px;
}

/* Prezzo */
.nlt-card__price {
	padding: 24px 24px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.nlt-card__price-value {
	display: block;
	width: 100%;
	font-size: 32px;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.2;
	letter-spacing: 0.5px;
	text-align: center;
}
.nlt-card__price-value::before {
	display: none !important;
	content: none !important;
}
.nlt-card__price-iva {
	display: block;
	width: 100%;
	font-size: 12px;
	font-weight: 500;
	color: #999;
	letter-spacing: 1px;
	margin-top: 4px;
	text-align: center;
}

/* Dettagli */
.nlt-card__details {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: #eee;
	margin: 0 24px;
	border-radius: 8px;
	overflow: hidden;
}
.nlt-card__detail {
	background: #fafafa;
	padding: 14px 12px;
	text-align: center;
}
.nlt-card__detail-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: #999;
	margin-bottom: 4px;
}
.nlt-card__detail-value {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #333;
	line-height: 1.3;
}

/* Descrizione */
.nlt-card__desc {
	padding: 20px 24px 0;
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

/* Highlights */
.nlt-card__highlights {
	list-style: none;
	padding: 16px 24px;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-grow: 1;
}
.nlt-card__highlights li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #444;
	line-height: 1.4;
}
.nlt-card__highlights li svg {
	flex-shrink: 0;
}

/* CTA */
.nlt-card__cta {
	padding: 8px 24px 0;
}

/* Validità */
.nlt-card__validita {
	text-align: center;
	font-size: 12px;
	color: #999;
	padding: 12px 24px 0;
	margin: 0;
}

/* Disclaimer */
.nlt-card__disclaimer {
	padding: 16px 24px 24px;
	margin-top: auto;
}
.nlt-card__disclaimer-toggle {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	padding: 0;
	font-size: 12px;
	color: #aaa;
	cursor: pointer;
	transition: color .2s;
}
.nlt-card__disclaimer-toggle:hover {
	color: #666;
}
.nlt-card__disclaimer-toggle svg {
	transition: transform .25s ease;
}
.nlt-card__disclaimer-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}
.nlt-card__disclaimer-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease, padding .3s ease;
}
.nlt-card__disclaimer-body.is-open {
	max-height: 600px;
	padding-top: 10px;
}
.nlt-card__disclaimer-body p {
	font-size: 11px;
	line-height: 1.6;
	color: #999;
	margin: 0;
}

/* ---------- VANTAGGI ---------- */
.nlt-vantaggi {
	background: #fff;
	padding: 80px 0;
}
.nlt-vantaggi__title {
	text-align: center;
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 48px;
}
.nlt-vantaggi__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}
.nlt-vantaggi__item {
	text-align: center;
}
.nlt-vantaggi__icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f7;
	border-radius: 16px;
	color: #1a1a1a;
}
.nlt-vantaggi__item h3 {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 8px;
}
.nlt-vantaggi__item p {
	font-size: 14px;
	line-height: 1.6;
	color: #888;
	margin: 0;
}

/* ---------- CTA FINALE ---------- */
.nlt-cta-finale {
	background: linear-gradient(165deg, #0a0a0a 0%, #1a1a2e 100%);
	color: #fff;
	padding: 80px 0;
}
.nlt-cta-finale__content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
.nlt-cta-finale__content h2 {
	font-size: clamp(1.5rem, 3.5vw, 2.2rem);
	font-weight: 700;
	margin: 0 0 16px;
}
.nlt-cta-finale__content p {
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255,255,255,.65);
	margin: 0 0 32px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 1024px) {
	.nlt-offerte__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.nlt-vantaggi__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

@media (max-width: 768px) {
	.nlt-hero {
		height: 85vh;
		min-height: 600px;
	}
	.nlt-hero h1 {
		letter-spacing: 4px;
	}
	.nlt-hero-subtitle {
		padding: 15px 25px;
		margin-bottom: 35px;
	}
	.nlt-hero-cta-btn {
		padding: 16px 40px;
	}

	.nlt-offerte {
		padding: 60px 0 72px;
	}
	.nlt-offerte__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.nlt-card__details {
		grid-template-columns: 1fr;
	}

	.nlt-vantaggi {
		padding: 60px 0;
	}
	.nlt-vantaggi__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.nlt-cta-finale {
		padding: 60px 0;
	}
}

@media (max-width: 480px) {
	.nlt-card__price-value {
		font-size: 40px;
	}
	.nlt-card__model {
		font-size: 19px;
	}
	.nlt-card__header,
	.nlt-card__price,
	.nlt-card__desc,
	.nlt-card__highlights,
	.nlt-card__cta,
	.nlt-card__disclaimer {
		padding-left: 16px;
		padding-right: 16px;
	}
	.nlt-card__details {
		margin: 0 16px;
	}
	.nlt-hero-logo {
		width: 150px;
	}
}