.elementor-widget-naccional_scroll_story,
.elementor-widget-naccional_scroll_story > .elementor-widget-container {
	overflow: visible !important;
}

.naccional-scroll-story {
	--nss-default-bg: #110b26;
	--nss-section-height: 345vh;
	--nss-sticky-top: 0px;
	--nss-step-accent: #8ce464;
	position: relative;
	height: var(--nss-section-height);
	min-height: var(--nss-section-height);
	background: var(--nss-default-bg);
	color: #fff;
	isolation: isolate;
	transition: background-color 420ms ease;
}

.naccional-scroll-story * {
	box-sizing: border-box;
}

.nss__sticky {
	position: -webkit-sticky;
	position: sticky !important;
	top: var(--nss-sticky-top);
	min-height: calc(100vh - var(--nss-sticky-top));
	display: flex;
	align-items: center;
	overflow: hidden;
}

.nss__stage {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: clamp(48px, 6vw, 96px) clamp(20px, 5vw, 72px);
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
	gap: clamp(28px, 6vw, 88px);
	align-items: center;
}

.nss-layout-text-right .nss__stage {
	grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
}

.nss-layout-text-right .nss__visual {
	order: 1;
}

.nss-layout-text-right .nss__copy {
	order: 2;
}

.nss-layout-center .nss__stage {
	grid-template-columns: 1fr;
	max-width: 980px;
	text-align: center;
}

.nss__copy,
.nss__visual {
	position: relative;
	min-height: min(64vh, 620px);
}

.nss-layout-center .nss__copy {
	min-height: 300px;
}

.nss__panel,
.nss__media-panel {
	position: absolute !important;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	z-index: 1;
	transition: opacity 360ms ease, transform 520ms ease, filter 520ms ease;
}

.nss__media-panel {
	align-items: stretch;
}

.nss__panel.is-active,
.nss__media-panel.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 2;
}

.nss-animation-fade-slide .nss__panel,
.nss-animation-fade-slide .nss__media-panel {
	transform: translateY(28px);
}

.nss-animation-fade-slide .nss__panel.is-active,
.nss-animation-fade-slide .nss__media-panel.is-active {
	transform: translateY(0);
}

.nss-animation-zoom .nss__panel,
.nss-animation-zoom .nss__media-panel {
	transform: scale(0.96);
	filter: blur(3px);
}

.nss-animation-zoom .nss__panel.is-active,
.nss-animation-zoom .nss__media-panel.is-active {
	transform: scale(1);
	filter: blur(0);
}

.nss-animation-none .nss__panel,
.nss-animation-none .nss__media-panel {
	transition: none;
}

.nss__eyebrow {
	margin: 0 0 16px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
	color: var(--nss-step-accent, #8ce464);
}

.nss__title {
	margin: 0;
	max-width: 760px;
	font-size: clamp(2.6rem, 7vw, 7rem);
	font-weight: 850;
	letter-spacing: -0.065em;
	line-height: 0.92;
	color: #fff;
}

.nss-layout-center .nss__title {
	margin-left: auto;
	margin-right: auto;
}

.nss__description {
	max-width: 620px;
	margin-top: 24px;	
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}

.nss-layout-center .nss__description {
	margin-left: auto;
	margin-right: auto;
}

.nss__description p {
	margin: 0 0 1em;
}

.nss__description p:last-child {
	margin-bottom: 0;
}

.nss__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin-top: 32px;
	padding: 14px 22px;
	border-radius: 999px;
	background: #8ce464;
	color: #0b1020;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: transform 180ms ease, opacity 180ms ease;
}

.nss__button:hover,
.nss__button:focus {
	transform: translateY(-2px);
	opacity: 0.92;
	color: #0b1020;
	text-decoration: none;
}

.nss-layout-center .nss__button {
	margin-left: auto;
	margin-right: auto;
}

.nss__image {
	display: block;
	width: 100%;
	height: min(64vh, 620px);
	object-fit: cover;
	border-radius: 32px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.nss__progress {
	position: absolute;
	right: clamp(16px, 2vw, 32px);
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 5;
}

.nss__dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.32);
	transition: height 220ms ease, background 220ms ease, opacity 220ms ease;
}

.nss__dot.is-active {
	height: 28px;
	background: var(--nss-step-accent, #8ce464);
}

.nss__mobile-list {
	display: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.nss__panel,
	.nss__media-panel,
	.naccional-scroll-story,
	.nss__button,
	.nss__dot {
		transition: none !important;
	}
}

@media (max-width: 1024px) {
	.nss__stage {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.nss-layout-text-right .nss__stage {
		grid-template-columns: 1fr;
	}

	.nss-layout-text-right .nss__visual,
	.nss-layout-text-right .nss__copy {
		order: initial;
	}

	.nss__copy {
		min-height: 360px;
	}

	.nss__visual {
		min-height: 360px;
	}

	.nss__progress {
		right: 18px;
	}
}

@media (max-width: 767px) {
	.nss-mobile-stack {
		min-height: auto !important;
	}

	.nss-mobile-stack .nss__sticky {
		display: none !important;
	}

	.nss-mobile-stack .nss__mobile-list {
		display: grid !important;
		gap: 56px;
		padding: 52px 20px;
	}

	.nss__mobile-card {
		padding: 0;
	}

	.nss__mobile-card .nss__title {
		font-size: clamp(2.3rem, 15vw, 4.8rem);
	}

	.nss__mobile-card .nss__description {
		font-size: 1rem;
	}

	.nss__mobile-card .nss__image {
		margin-top: 28px;
		height: auto;
		max-height: 420px;
		aspect-ratio: 4 / 3;
	}

	.nss-mobile-sticky .nss__stage {
		grid-template-columns: 1fr;
		padding: 48px 20px;
	}

	.nss-mobile-sticky .nss__copy {
		min-height: 380px;
	}

	.nss-mobile-sticky .nss__visual {
		min-height: 280px;
	}

	.nss-mobile-sticky .nss__image {
		height: 280px;
	}

	.nss-mobile-sticky .nss__progress {
		display: none;
	}
}
