@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&display=swap");

.mvl-landing-page {
	--mvl-deep-navy: #061a2f;
	--mvl-orange: #f97316;
	--mvl-orange-dark: #dc5f0b;
	--mvl-shadow-cta: 0 18px 42px rgba(249, 115, 22, 0.3);
	--mvl-shadow-strong: 0 28px 90px rgba(6, 26, 47, 0.22);

	box-sizing: border-box;
	min-height: 100vh;
	width: 100%;
	background: var(--mvl-deep-navy);
	color: #ffffff;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html:has(.mvl-landing-page) {
	margin-top: 0 !important;
}

.mvl-landing-page *,
.mvl-landing-page *::before,
.mvl-landing-page *::after {
	box-sizing: inherit;
}

.mvl-landing-page [hidden] {
	display: none !important;
}

.mvl-landing-page a {
	color: inherit;
	text-decoration: none;
}

.mvl-landing-page .site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	border-bottom: 1px solid transparent;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	transition:
		background 300ms ease,
		border-color 300ms ease,
		box-shadow 300ms ease,
		backdrop-filter 300ms ease;
}

.mvl-landing-page .site-header.site-header-scrolled,
.mvl-landing-page .site-header.is-mobile-menu-open {
	border-bottom-color: rgba(255, 255, 255, 0.1);
	background: rgba(6, 26, 47, 0.9);
	box-shadow: 0 12px 30px rgba(6, 26, 47, 0.16);
	backdrop-filter: blur(18px) saturate(126%);
}

.mvl-landing-page .nav-shell {
	display: flex;
	width: min(1180px, calc(100% - 28px));
	min-height: 64px;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-inline: auto;
}

.mvl-landing-page .brand {
	display: inline-flex;
	width: 150px;
	min-width: 0;
	align-items: center;
	gap: 0;
}

.mvl-landing-page .nav-logo {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 48px;
	object-fit: contain;
}

.mvl-landing-page .desktop-nav {
	display: none;
	align-items: center;
	gap: 2.15rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.88rem;
	font-weight: 750;
}

.mvl-landing-page .desktop-nav a {
	position: relative;
	padding-block: 0.5rem;
}

.mvl-landing-page .desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	content: "";
	background: var(--mvl-orange);
	opacity: 0;
	transform: translateY(4px);
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.mvl-landing-page .desktop-nav a:hover,
.mvl-landing-page .desktop-nav a:focus-visible {
	color: #ffffff;
}

.mvl-landing-page .desktop-nav a:hover::after,
.mvl-landing-page .desktop-nav a:focus-visible::after {
	opacity: 1;
	transform: translateY(0);
}

.mvl-landing-page .brand:focus-visible,
.mvl-landing-page .desktop-nav a:focus-visible,
.mvl-landing-page .mobile-menu-panel a:focus-visible,
.mvl-landing-page .mobile-menu-toggle:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.5);
	outline-offset: 4px;
}

.mvl-landing-page .nav-actions {
	display: flex;
	align-items: center;
	gap: 0.7rem;
}

.mvl-landing-page .button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0.9rem 1.35rem;
	font-weight: 800;
	letter-spacing: 0;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background 180ms ease,
		border-color 180ms ease;
}

.mvl-landing-page .booking-cta {
	gap: 0.55rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: linear-gradient(180deg, #f59b3d 0%, #f97316 54%, #e86611 100%);
	color: #ffffff;
	font-weight: 750;
	box-shadow:
		0 16px 34px rgba(249, 115, 22, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.mvl-landing-page .booking-cta:hover {
	background: linear-gradient(180deg, #ffaa4d 0%, #f97316 48%, #dc5f0b 100%);
	box-shadow:
		0 20px 42px rgba(249, 115, 22, 0.36),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
	transform: translateY(-1px);
}

.mvl-landing-page .booking-cta:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.36);
	outline-offset: 3px;
}

.mvl-landing-page .booking-cta:active {
	box-shadow:
		0 12px 26px rgba(249, 115, 22, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
	transform: translateY(0) scale(0.99);
}

.mvl-landing-page .booking-cta-icon {
	width: 1.1rem;
	height: 1.1rem;
	flex: 0 0 auto;
	color: currentColor;
}

.mvl-landing-page .booking-cta-nav {
	min-height: 42px;
	padding: 0.68rem 1rem;
	font-size: 0.88rem;
	white-space: nowrap;
}

.mvl-landing-page .floating-whatsapp-button {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 70;
	display: inline-flex;
	min-height: 58px;
	align-items: center;
	gap: 0.72rem;
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 999px;
	background: linear-gradient(180deg, #29d366 0%, #22c55e 48%, #128c45 100%);
	box-shadow:
		0 18px 42px rgba(18, 140, 69, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.24);
	color: #ffffff;
	padding: 0.72rem 1.12rem 0.72rem 1rem;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		filter 180ms ease;
}

.mvl-landing-page .floating-whatsapp-button:hover {
	box-shadow:
		0 23px 52px rgba(18, 140, 69, 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.3);
	filter: saturate(1.05);
	transform: translateY(-2px);
}

.mvl-landing-page .floating-whatsapp-button:focus-visible {
	outline: 3px solid rgba(37, 211, 102, 0.34);
	outline-offset: 4px;
}

.mvl-landing-page .floating-whatsapp-icon {
	width: 1.7rem;
	height: 1.7rem;
	flex: 0 0 auto;
	color: currentColor;
}

.mvl-landing-page .floating-whatsapp-copy {
	display: grid;
	gap: 0.08rem;
	line-height: 1.08;
	text-align: left;
	white-space: nowrap;
}

.mvl-landing-page .floating-whatsapp-copy span {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.72rem;
	font-weight: 750;
}

.mvl-landing-page .floating-whatsapp-copy strong {
	color: #ffffff;
	font-size: 0.98rem;
	font-weight: 900;
}

.mvl-landing-page .mobile-menu {
	position: relative;
}

.mvl-landing-page .mobile-menu-toggle {
	display: grid;
	width: 44px;
	height: 44px;
	place-content: center;
	gap: 4px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.075);
	cursor: pointer;
}

.mvl-landing-page .mobile-menu-toggle span {
	display: block;
	width: 17px;
	height: 2px;
	border-radius: 999px;
	background: #ffffff;
}

.mvl-landing-page .mobile-menu-panel {
	position: absolute;
	top: calc(100% + 0.75rem);
	right: 0;
	display: grid;
	width: min(300px, calc(100vw - 24px));
	gap: 0.3rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(6, 26, 47, 0.98), rgba(6, 26, 47, 0.92)),
		radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 14rem);
	padding: 0.8rem;
	box-shadow: var(--mvl-shadow-strong);
}

.mvl-landing-page .mobile-menu-panel[hidden] {
	display: none;
}

.mvl-landing-page .mobile-menu-panel a:not(.button) {
	border-radius: 14px;
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	padding: 0.9rem 1rem;
}

.mvl-landing-page .mobile-menu-panel a:not(.button):hover,
.mvl-landing-page .mobile-menu-panel a:not(.button):focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
}

.mvl-landing-page .mvl-landing-page__content {
	min-height: 100vh;
}

.mvl-landing-page .eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.mvl-landing-page .eyebrow-light {
	color: rgba(255, 255, 255, 0.72);
}

.mvl-landing-page .hero {
	position: relative;
	display: flex;
	min-height: 94svh;
	align-items: flex-end;
	overflow: hidden;
	background: var(--mvl-deep-navy);
	color: #ffffff;
}

.mvl-landing-page .hero video {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	object-fit: cover;
	object-position: center center;
	filter: none;
	mix-blend-mode: normal;
	transform: none;
	scale: 1;
}

.mvl-landing-page .hero-cinema-layer,
.mvl-landing-page .hero-film-grain {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.mvl-landing-page .hero-cinema-layer {
	z-index: 1;
	background:
		radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.18) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.2) 100%);
}

.mvl-landing-page .hero-film-grain {
	z-index: 1;
	opacity: 0.032;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0 1px, transparent 1px),
		radial-gradient(circle at 75% 20%, rgba(0, 0, 0, 0.7) 0 1px, transparent 1px),
		radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1px);
	background-size: 84px 84px, 112px 112px, 68px 68px;
	mix-blend-mode: overlay;
}

.mvl-landing-page .hero-content {
	position: relative;
	z-index: 2;
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: clamp(8rem, 14vw, 10rem) 0 clamp(3.75rem, 7vw, 5.75rem);
}

.mvl-landing-page .hero h1 {
	max-width: 820px;
	margin: 0.9rem 0 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3rem, 5.5vw, 5.55rem);
	font-weight: 600;
	line-height: 0.94;
	letter-spacing: 0.005em;
	text-wrap: balance;
	text-shadow: 0 3px 24px rgba(0, 0, 0, 0.58);
}

.mvl-landing-page .hero-subtitle {
	max-width: 600px;
	margin: 1.15rem 0 0;
	color: #f7f2ea;
	font-size: clamp(1rem, 1.35vw, 1.14rem);
	font-weight: 600;
	line-height: 1.62;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
}

.mvl-landing-page .hero-price {
	position: relative;
	display: inline-flex;
	width: fit-content;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.22rem 0.48rem;
	margin-top: 1.05rem;
	border-left: 2px solid rgba(249, 115, 22, 0.9);
	padding: 0.04rem 0 0.04rem 0.78rem;
	color: #ffffff;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.46);
}

.mvl-landing-page .hero-price strong {
	color: #fffdf8;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.15rem, 3.15vw, 2.62rem);
	font-weight: 700;
	letter-spacing: 0.005em;
	line-height: 0.95;
}

.mvl-landing-page .hero-price small {
	margin-left: 0.06em;
	font-size: 0.72em;
	font-weight: 650;
}

.mvl-landing-page .hero-price span {
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(0.94rem, 1.22vw, 1.06rem);
	font-weight: 650;
	line-height: 1.2;
}

.mvl-landing-page .hero-actions {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	margin-top: 1.55rem;
}

.mvl-landing-page .booking-cta-hero {
	min-height: 56px;
	padding-inline: 1.55rem;
}

.mvl-landing-page .hero .button {
	box-shadow: var(--mvl-shadow-cta);
	transition:
		transform 220ms ease,
		box-shadow 220ms ease,
		background 220ms ease;
}

.mvl-landing-page .hero .button:hover {
	box-shadow: 0 22px 48px rgba(249, 115, 22, 0.34);
	transform: translateY(-2px);
}

.mvl-landing-page .hero .button:active,
.mvl-landing-page .hero .button-ghost:active {
	transform: translateY(0);
}

.mvl-landing-page .button-ghost {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 999px;
	padding: 0.9rem 1.35rem;
	color: #ffffff;
	font-weight: 800;
	letter-spacing: 0;
	transition:
		transform 180ms ease,
		background 180ms ease,
		border-color 180ms ease;
}

.mvl-landing-page .hero .button-ghost {
	border-color: rgba(255, 253, 248, 0.36);
	background: transparent;
	color: rgba(255, 253, 248, 0.9);
	box-shadow: none;
	transition:
		transform 220ms ease,
		background 220ms ease,
		border-color 220ms ease;
}

.mvl-landing-page .hero .button-ghost:hover {
	border-color: rgba(255, 253, 248, 0.62);
	background: rgba(255, 253, 248, 0.08);
	transform: translateY(-1px);
}

.mvl-landing-page .button-ghost:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.32);
	outline-offset: 3px;
}

.mvl-landing-page .hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.25rem;
}

.mvl-landing-page .hero-badges span {
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.075);
	padding: 0.62rem 0.88rem;
	color: rgba(255, 255, 255, 0.84);
	font-size: 0.86rem;
	font-weight: 800;
	backdrop-filter: blur(12px);
}

.mvl-landing-page .hero .eyebrow,
.mvl-landing-page .hero h1,
.mvl-landing-page .hero-subtitle,
.mvl-landing-page .hero-price,
.mvl-landing-page .hero-actions .button,
.mvl-landing-page .hero-actions .button-ghost,
.mvl-landing-page .hero-badges {
	opacity: 0;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .hero .eyebrow {
	animation-name: mvl-hero-fade-down;
	animation-duration: 500ms;
	animation-delay: 100ms;
}

.mvl-landing-page .hero h1 {
	animation-name: mvl-hero-fade-up;
	animation-duration: 800ms;
	animation-delay: 220ms;
}

.mvl-landing-page .hero-subtitle {
	animation-name: mvl-hero-fade-up;
	animation-duration: 720ms;
	animation-delay: 400ms;
}

.mvl-landing-page .hero-price {
	animation-name: mvl-hero-price-in;
	animation-duration: 720ms;
	animation-delay: 540ms;
}

.mvl-landing-page .hero-actions .button {
	animation-name: mvl-hero-fade-up;
	animation-duration: 620ms;
	animation-delay: 700ms;
}

.mvl-landing-page .hero-actions .button-ghost {
	animation-name: mvl-hero-fade-up;
	animation-duration: 620ms;
	animation-delay: 820ms;
}

.mvl-landing-page .hero-badges {
	animation-name: mvl-hero-soft-fade;
	animation-duration: 700ms;
	animation-delay: 980ms;
}

.mvl-landing-page .container {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.mvl-landing-page .section-header {
	max-width: 720px;
}

.mvl-landing-page .section-header h2 {
	margin: 0.75rem 0 0;
	color: var(--mvl-deep-navy);
	font-size: clamp(2.1rem, 4.2vw, 4rem);
	font-weight: 650;
	line-height: 1.04;
}

.mvl-landing-page .section-header p:not(.eyebrow) {
	margin: 1.15rem 0 0;
	color: #64748b;
	font-size: clamp(1rem, 1.6vw, 1.12rem);
	line-height: 1.8;
}

.mvl-landing-page .why-section {
	position: relative;
	z-index: 10;
	overflow: hidden;
	margin-top: -36px;
	border-radius: 36px 36px 0 0;
	background: #ffffff;
	padding: 110px 0 90px;
	box-shadow: 0 -18px 42px rgba(6, 26, 47, 0.12);
	--why-title-x: -48px;
	--why-image-x: 50px;
	--why-image-y: 0;
	--why-feature-x: 0;
	--why-feature-y: 20px;
}

.mvl-landing-page .why-section::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	height: 34px;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fffdf8);
}

.mvl-landing-page .why-section .container {
	position: relative;
	z-index: 1;
	width: min(1220px, calc(100% - 32px));
}

.mvl-landing-page .why-shell {
	display: grid;
	align-items: center;
	gap: clamp(2.1rem, 5vw, 4.6rem);
}

.mvl-landing-page .why-copy {
	max-width: 560px;
}

.mvl-landing-page .why-mobile-animation-trigger {
	display: block;
	width: 100%;
	height: 1px;
	pointer-events: none;
}

.mvl-landing-page .why-section .section-header {
	max-width: 540px;
}

.mvl-landing-page .why-section .eyebrow {
	color: #f97316;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.mvl-landing-page .why-section .section-header h2 {
	color: #3b78a0;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4vw, 4.05rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.002em;
}

.mvl-landing-page .why-section .section-header p:not(.eyebrow) {
	max-width: 520px;
	color: #1f2937;
	font-size: clamp(1rem, 1.4vw, 1.08rem);
	line-height: 1.7;
}

.mvl-landing-page .story-points {
	display: grid;
	margin-top: clamp(1.55rem, 2.5vw, 2.05rem);
}

.mvl-landing-page .story-point {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 0.95rem;
	border-top: 1px solid rgba(59, 120, 160, 0.16);
	padding: 0.92rem 0;
}

.mvl-landing-page .story-point:first-child {
	border-top: 0;
	padding-top: 0;
}

.mvl-landing-page .story-point strong,
.mvl-landing-page .story-point span {
	display: block;
}

.mvl-landing-page .story-marker {
	position: relative;
	display: grid;
	width: 2.42rem;
	height: 2.42rem;
	place-items: center;
	border-radius: 999px;
	background: #eaf5fb;
	box-shadow: inset 0 0 0 1px rgba(59, 120, 160, 0.08);
	color: #285f83;
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.03em;
}

.mvl-landing-page .story-marker::after {
	position: absolute;
	top: 0.32rem;
	right: 0.28rem;
	width: 0.34rem;
	height: 0.34rem;
	border-radius: 999px;
	content: "";
	background: #f97316;
}

.mvl-landing-page .story-point strong {
	color: #285f83;
	font-size: 1.04rem;
	font-weight: 700;
	line-height: 1.25;
}

.mvl-landing-page .story-point span:not(.story-marker) {
	margin-top: 0.28rem;
	color: #1f2937;
	font-size: 0.94rem;
	line-height: 1.55;
}

.mvl-landing-page .story-visual-wrap {
	position: relative;
}

.mvl-landing-page .story-visual-wrap::before {
	position: absolute;
	top: -0.9rem;
	right: -0.9rem;
	width: 42%;
	height: 34%;
	border-radius: 24px;
	content: "";
	background: #eaf5fb;
}

.mvl-landing-page .story-visual {
	position: relative;
	z-index: 1;
	overflow: hidden;
	aspect-ratio: 1.02 / 1;
	min-height: 0;
	border-radius: 24px;
	box-shadow: 0 26px 62px rgba(15, 23, 42, 0.15);
}

.mvl-landing-page .story-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 45%;
	transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .story-card {
	position: absolute;
	bottom: 0.85rem;
	left: 0.85rem;
	z-index: 2;
	max-width: min(260px, calc(100% - 1.7rem));
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	background: rgba(6, 26, 47, 0.9);
	box-shadow: 0 12px 28px rgba(6, 26, 47, 0.18);
	color: #ffffff;
	padding: 0.64rem 0.78rem;
}

.mvl-landing-page .story-card span {
	display: block;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.62rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mvl-landing-page .story-card strong {
	display: block;
	margin-top: 0.26rem;
	font-size: 0.78rem;
	line-height: 1.32;
}

.mvl-landing-page .why-section.is-reveal-ready .section-header .eyebrow,
.mvl-landing-page .why-section.is-reveal-ready .section-header h2,
.mvl-landing-page .why-section.is-reveal-ready .section-header p:not(.eyebrow),
.mvl-landing-page .why-section.is-reveal-ready .story-point,
.mvl-landing-page .why-section.is-reveal-ready .story-card {
	opacity: 0;
	will-change: transform, opacity;
}

.mvl-landing-page .why-section.is-reveal-ready .section-header .eyebrow {
	transform: translateY(18px);
}

.mvl-landing-page .why-section.is-reveal-ready .section-header h2 {
	transform: translateY(28px);
}

.mvl-landing-page .why-section.is-reveal-ready .section-header p:not(.eyebrow) {
	transform: translateY(22px);
}

.mvl-landing-page .why-section.is-reveal-ready .story-point {
	transform: translate(var(--why-feature-x), var(--why-feature-y));
}

.mvl-landing-page .why-section.is-reveal-ready .story-card {
	transform: translateY(16px);
}

.mvl-landing-page .why-section.is-reveal-ready .story-visual {
	opacity: 0;
	transform: translate(var(--why-image-x), var(--why-image-y)) scale(var(--why-image-scale, 1.035));
	will-change: transform, opacity;
}

.mvl-landing-page .why-section.is-visible .section-header .eyebrow {
	animation: mvl-why-eyebrow-in 500ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mvl-landing-page .why-section.is-visible .section-header h2 {
	animation: mvl-why-title-in 750ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.mvl-landing-page .why-section.is-visible .section-header p:not(.eyebrow) {
	animation: mvl-why-body-in 650ms cubic-bezier(0.22, 1, 0.36, 1) 280ms forwards;
}

.mvl-landing-page .why-section.is-visible .story-point {
	animation: mvl-why-feature-in 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mvl-landing-page .why-section.is-visible .story-point:nth-child(1) {
	animation-delay: 450ms;
}

.mvl-landing-page .why-section.is-visible .story-point:nth-child(2) {
	animation-delay: 650ms;
}

.mvl-landing-page .why-section.is-visible .story-point:nth-child(3) {
	animation-delay: 850ms;
}

.mvl-landing-page .why-section.is-visible .story-visual {
	animation: mvl-why-image-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 520ms forwards;
}

.mvl-landing-page .why-section.is-visible .story-card {
	animation: mvl-why-badge-in 550ms cubic-bezier(0.22, 1, 0.36, 1) 900ms forwards;
}

.mvl-landing-page .gallery-section {
	position: relative;
	overflow: hidden;
	overflow-x: clip;
	scroll-margin-top: 84px;
	background:
		radial-gradient(circle at 84% 8%, rgba(249, 115, 22, 0.12), transparent 25rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0, rgba(255, 255, 255, 0) 4.2rem),
		#0b3d66;
	color: #f5f7fa;
	padding-block: 100px 115px;
}

body.mvl-admin-bar-visible .mvl-landing-page .gallery-section {
	scroll-margin-top: 116px;
}

.mvl-landing-page .gallery-section::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 4.5rem;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14));
}

.mvl-landing-page .gallery-header {
	max-width: 760px;
	margin-inline: auto;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.mvl-landing-page .gallery-reveal-trigger {
	display: block;
	width: 100%;
	height: 1px;
	pointer-events: none;
}

.mvl-landing-page .gallery-eyebrow {
	margin: 0;
	color: rgba(245, 247, 250, 0.82);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.mvl-landing-page .gallery-header h2 {
	margin: 0.72rem 0 0;
	color: #f97316;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2.4rem, 4.6vw, 4.65rem);
	font-weight: 600;
	line-height: 0.98;
}

.mvl-landing-page .gallery-header p:not(.gallery-eyebrow) {
	max-width: 620px;
	margin: 1rem auto 0;
	color: #f5f7fa;
	font-size: clamp(1rem, 1.4vw, 1.08rem);
	line-height: 1.7;
}

.mvl-landing-page .section-anchor {
	position: absolute;
	top: 0;
}

.mvl-landing-page .experience-sliders {
	display: grid;
	gap: clamp(1.25rem, 2vw, 1.75rem);
}

.mvl-landing-page .experience-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(245, 247, 250, 0.5);
	font-size: 0.76rem;
	letter-spacing: 0.16em;
}

.mvl-landing-page .experience-divider::before,
.mvl-landing-page .experience-divider::after {
	width: min(9rem, 26vw);
	height: 1px;
	content: "";
	background: linear-gradient(90deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.28));
}

.mvl-landing-page .experience-divider::after {
	background: linear-gradient(270deg, rgba(245, 247, 250, 0), rgba(245, 247, 250, 0.28));
}

.mvl-landing-page .experience-divider span {
	margin-inline: 0.9rem;
	color: #f97316;
}

.mvl-landing-page .gallery-slider-wrap,
.mvl-landing-page .reviews-slider-wrap {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
}

.mvl-landing-page .gallery-slider {
	overflow: hidden;
	padding-block: 0.5rem 1rem;
}

.mvl-landing-page .gallery-track {
	display: flex;
	width: max-content;
	gap: 1.9rem;
	animation: mvl-gallery-marquee 50s linear infinite;
	will-change: transform;
}

.mvl-landing-page .gallery-slider:hover .gallery-track,
.mvl-landing-page .gallery-slider.is-marquee-paused .gallery-track {
	animation-play-state: paused;
}

.mvl-landing-page .gallery-slide {
	position: relative;
	overflow: hidden;
	width: clamp(520px, 42vw, 620px);
	height: clamp(400px, 31vw, 460px);
	flex: 0 0 auto;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.04);
	box-shadow: 0 30px 78px rgba(0, 0, 0, 0.24);
	opacity: 0.86;
	transform: translate3d(0, 0, 0) scale(0.96);
	transition:
		transform 550ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 550ms ease,
		box-shadow 550ms ease;
}

.mvl-landing-page .gallery-slide::after {
	position: absolute;
	inset: auto 0 0;
	height: 34%;
	pointer-events: none;
	content: "";
	background: linear-gradient(180deg, rgba(6, 26, 47, 0), rgba(6, 26, 47, 0.34));
}

.mvl-landing-page .gallery-slide-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .gallery-slide:hover .gallery-slide-image {
	transform: scale(1.025);
}

.mvl-landing-page .gallery-slide.is-centered {
	z-index: 2;
	box-shadow: 0 34px 86px rgba(0, 0, 0, 0.3);
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1.04);
}

.mvl-landing-page .gallery-edge,
.mvl-landing-page .reviews-edge {
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: min(12vw, 8rem);
	pointer-events: none;
}

.mvl-landing-page .reviews-edge {
	z-index: 3;
}

.mvl-landing-page .gallery-edge-left,
.mvl-landing-page .reviews-edge-left {
	left: 0;
	background: linear-gradient(90deg, #0b3d66, rgba(11, 61, 102, 0));
}

.mvl-landing-page .gallery-edge-right,
.mvl-landing-page .reviews-edge-right {
	right: 0;
	background: linear-gradient(270deg, #0b3d66, rgba(11, 61, 102, 0));
}

.mvl-landing-page .reviews-marquee {
	overflow: hidden;
	padding-block: 0.7rem 1.3rem;
}

.mvl-landing-page .reviews-track {
	display: flex;
	width: max-content;
	gap: 1.85rem;
	animation: mvl-reviews-marquee-rtl 64s linear infinite;
	will-change: transform;
}

.mvl-landing-page .reviews-slider-wrap.is-reviews-paused .reviews-track,
.mvl-landing-page .reviews-marquee:hover .reviews-track {
	animation-play-state: paused;
}

.mvl-landing-page .review-marquee-card {
	appearance: none;
	position: relative;
	overflow: hidden;
	width: clamp(330px, 26vw, 380px);
	aspect-ratio: 3 / 4;
	flex: 0 0 auto;
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
	cursor: zoom-in;
	font: inherit;
	opacity: 0.78;
	padding: 6px;
	transform: translate3d(0, 0, 0) scale(0.94);
	transition:
		transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 500ms ease,
		box-shadow 500ms ease;
}

.mvl-landing-page .review-marquee-card.is-centered {
	z-index: 2;
	box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1.035);
}

.mvl-landing-page .review-marquee-card:hover {
	opacity: 1;
	transform: translate3d(0, -2px, 0) scale(1);
}

.mvl-landing-page .review-slide-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.mvl-landing-page .review-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: grid;
	place-items: center;
	padding: clamp(1rem, 3vw, 2rem);
}

.mvl-landing-page .review-lightbox[hidden] {
	display: none;
}

.mvl-landing-page .review-lightbox-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(4, 18, 31, 0.84);
	cursor: zoom-out;
}

.mvl-landing-page .review-lightbox-panel {
	position: relative;
	z-index: 1;
	overflow: auto;
	width: min(96vw, 1120px);
	max-height: min(90vh, 820px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	background: #ffffff;
	box-shadow: 0 34px 100px rgba(0, 0, 0, 0.45);
	padding: clamp(0.5rem, 1.5vw, 0.9rem);
}

.mvl-landing-page .review-lightbox-close {
	position: sticky;
	top: 0.5rem;
	left: 100%;
	z-index: 2;
	display: block;
	margin-bottom: 0.5rem;
	margin-left: auto;
	border: 1px solid rgba(6, 26, 47, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #061a2f;
	cursor: pointer;
	font-size: 0.82rem;
	font-weight: 800;
	padding: 0.48rem 0.74rem;
}

.mvl-landing-page .review-lightbox-image {
	display: block;
	width: 100%;
	height: auto;
}

.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header .gallery-eyebrow,
.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header h2,
.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header p,
.mvl-landing-page .gallery-section.is-gallery-ready .gallery-slider-wrap,
.mvl-landing-page .gallery-section.is-gallery-ready .reviews-slider-wrap {
	opacity: 0;
	transform: translateY(28px);
}

.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header .gallery-eyebrow,
.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header h2,
.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header p,
.mvl-landing-page .gallery-section.is-gallery-visible .gallery-slider-wrap,
.mvl-landing-page .gallery-section.is-gallery-visible .reviews-slider-wrap {
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .gallery-section.is-gallery-reveal-complete .gallery-header .gallery-eyebrow,
.mvl-landing-page .gallery-section.is-gallery-reveal-complete .gallery-header h2,
.mvl-landing-page .gallery-section.is-gallery-reveal-complete .gallery-header p,
.mvl-landing-page .gallery-section.is-gallery-reveal-complete .gallery-slider-wrap,
.mvl-landing-page .gallery-section.is-gallery-reveal-complete .reviews-slider-wrap {
	opacity: 1;
	transform: translateY(0);
}

.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header .gallery-eyebrow {
	animation-name: mvl-gallery-reveal-up;
	animation-duration: 500ms;
}

.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header h2 {
	animation-name: mvl-gallery-reveal-title;
	animation-duration: 750ms;
	animation-delay: 80ms;
}

.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header p {
	animation-name: mvl-gallery-reveal-up;
	animation-duration: 650ms;
	animation-delay: 170ms;
}

.mvl-landing-page .gallery-section.is-gallery-visible .gallery-slider-wrap {
	animation-name: mvl-gallery-reveal-slider;
	animation-duration: 750ms;
	animation-delay: 300ms;
}

.mvl-landing-page .gallery-section.is-gallery-visible .reviews-slider-wrap {
	animation-name: mvl-gallery-reveal-slider;
	animation-duration: 750ms;
	animation-delay: 480ms;
}

.mvl-landing-page .itinerary-section {
	overflow-x: clip;
	scroll-margin-top: 84px;
	background: #ffffff;
	padding-block: clamp(78px, 9vw, 126px);
}

body.mvl-admin-bar-visible .mvl-landing-page .itinerary-section {
	scroll-margin-top: 116px;
}

.mvl-landing-page .itinerary-intro {
	max-width: 760px;
}

.mvl-landing-page .itinerary-intro h2 {
	max-width: 720px;
	margin: 0.72rem 0 0;
	color: #3b78a0;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2.35rem, 4.2vw, 4.35rem);
	font-weight: 600;
	line-height: 0.98;
	letter-spacing: 0.002em;
}

.mvl-landing-page .itinerary-intro > p:not(.eyebrow) {
	max-width: 630px;
	margin: 1.15rem 0 0;
	color: #1f2937;
	font-size: clamp(1rem, 1.45vw, 1.08rem);
	line-height: 1.7;
}

.mvl-landing-page .itinerary-list {
	display: grid;
	gap: clamp(1.15rem, 2.8vw, 2rem);
	margin-top: clamp(2rem, 4.4vw, 3.7rem);
}

.mvl-landing-page .itinerary-mobile-trigger,
.mvl-landing-page .itinerary-reveal-trigger {
	display: block;
	width: 100%;
	height: 1px;
	pointer-events: none;
}

.mvl-landing-page .itinerary-panel {
	position: relative;
	display: flex;
	min-height: clamp(420px, 38vw, 480px);
	align-items: center;
	overflow: hidden;
	border-radius: 28px;
	background: var(--mvl-deep-navy);
	box-shadow: 0 30px 78px rgba(6, 26, 47, 0.16);
	isolation: isolate;
}

.mvl-landing-page .itinerary-panel-expandable {
	height: clamp(420px, 38vw, 480px);
	min-height: 0;
	transition:
		height 420ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-panel-expandable.is-itinerary-expanded {
	height: auto;
	min-height: clamp(420px, 38vw, 480px);
}

.mvl-landing-page .itinerary-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image: var(--itinerary-desktop-bg);
	background-position: var(--itinerary-desktop-position, center);
	background-repeat: no-repeat;
	background-size: cover;
	transition: transform 1050ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-panel::before,
.mvl-landing-page .itinerary-panel::after {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
}

.mvl-landing-page .itinerary-panel::before {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(6, 26, 47, 0.02) 0%, rgba(6, 26, 47, 0.1) 55%, rgba(6, 26, 47, 0.36) 100%),
		linear-gradient(90deg, rgba(6, 26, 47, 0.78) 0%, rgba(6, 26, 47, 0.44) 34%, rgba(6, 26, 47, 0.08) 68%, rgba(6, 26, 47, 0.02) 100%);
}

.mvl-landing-page .itinerary-panel-right::before {
	background:
		linear-gradient(180deg, rgba(6, 26, 47, 0.02) 0%, rgba(6, 26, 47, 0.1) 55%, rgba(6, 26, 47, 0.36) 100%),
		linear-gradient(270deg, rgba(6, 26, 47, 0.8) 0%, rgba(6, 26, 47, 0.44) 34%, rgba(6, 26, 47, 0.08) 68%, rgba(6, 26, 47, 0.02) 100%);
}

.mvl-landing-page .itinerary-panel::after {
	z-index: 2;
	background: radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.2), transparent 48%);
}

.mvl-landing-page .itinerary-panel-content {
	position: relative;
	z-index: 3;
	width: min(520px, calc(100% - 2rem));
	margin: clamp(1.2rem, 4vw, 3rem);
	color: #ffffff;
}

.mvl-landing-page .itinerary-panel-right {
	justify-content: flex-end;
}

.mvl-landing-page .day-badge {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(249, 115, 22, 0.38);
	border-radius: 999px;
	background: rgba(249, 115, 22, 0.16);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
	color: #ffb26b;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	padding: 0.48rem 0.78rem;
	text-transform: uppercase;
}

.mvl-landing-page .itinerary-panel-content h3 {
	max-width: 500px;
	margin: 0.85rem 0 0;
	color: #fffdf8;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3.8vw, 3.35rem);
	font-weight: 600;
	line-height: 0.98;
	text-shadow: 0 3px 22px rgba(0, 0, 0, 0.38);
}

.mvl-landing-page .itinerary-panel-expandable .itinerary-panel-content h3 {
	max-width: 460px;
	font-size: clamp(1.85rem, 3.35vw, 3rem);
	line-height: 1.04;
}

.mvl-landing-page .itinerary-panel-content p {
	max-width: 500px;
	margin: 0.95rem 0 0;
	color: rgba(255, 253, 248, 0.86);
	font-size: clamp(0.96rem, 1.35vw, 1.05rem);
	line-height: 1.65;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.32);
}

.mvl-landing-page .itinerary-extra-details {
	max-width: 500px;
}

.mvl-landing-page .itinerary-extra-details[data-open="true"] {
	margin-bottom: 0.1rem;
}

.mvl-landing-page .itinerary-read-more {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	gap: 0.38rem;
	margin-top: 0.68rem;
	border: 0;
	border-bottom: 1px solid rgba(249, 115, 22, 0.72);
	background: transparent;
	color: #f97316;
	cursor: pointer;
	font-size: 0.92rem;
	font-weight: 750;
	line-height: 1.35;
	list-style: none;
	padding: 0.14rem 0;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
	transition:
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.mvl-landing-page .itinerary-read-more::marker,
.mvl-landing-page .itinerary-read-more::-webkit-details-marker {
	display: none;
	content: "";
}

.mvl-landing-page .itinerary-read-more:hover,
.mvl-landing-page .itinerary-read-more:focus-visible {
	border-color: rgba(255, 253, 248, 0.88);
	color: #ffb26b;
	outline: none;
	transform: translateY(-1px);
}

.mvl-landing-page .itinerary-read-more:focus-visible {
	border-radius: 6px;
	box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.28);
}

.mvl-landing-page .itinerary-read-more-chevron {
	display: inline-block;
	width: 0.48rem;
	height: 0.48rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-1px) rotate(45deg);
	transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-extra-details[data-open="true"] .itinerary-read-more-chevron,
.mvl-landing-page:not(.is-mvl-js-enabled) .itinerary-extra-details[open] .itinerary-read-more-chevron {
	transform: translateY(2px) rotate(225deg);
}

.mvl-landing-page .itinerary-less-label,
.mvl-landing-page .itinerary-extra-details[data-open="true"] .itinerary-more-label,
.mvl-landing-page:not(.is-mvl-js-enabled) .itinerary-extra-details[open] .itinerary-more-label {
	display: none;
}

.mvl-landing-page .itinerary-extra-details[data-open="true"] .itinerary-less-label,
.mvl-landing-page:not(.is-mvl-js-enabled) .itinerary-extra-details[open] .itinerary-less-label {
	display: inline;
}

.mvl-landing-page .itinerary-extra {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition:
		max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 320ms ease;
}

.mvl-landing-page .itinerary-extra-details[data-open="true"] .itinerary-extra,
.mvl-landing-page:not(.is-mvl-js-enabled) .itinerary-extra-details[open] .itinerary-extra {
	max-height: 1600px;
	opacity: 1;
}

.mvl-landing-page .itinerary-panel-content .itinerary-accommodation {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-top: 1.05rem;
	color: #f97316;
	font-size: 0.9rem;
	font-weight: 750;
	line-height: 1.5;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.36);
}

.mvl-landing-page .itinerary-panel-content .itinerary-accommodation strong {
	color: #f97316;
	font-weight: 750;
}

.mvl-landing-page .itinerary-panel-content .itinerary-accommodation span {
	width: 0.48rem;
	height: 0.48rem;
	flex: 0 0 auto;
	margin-top: 0.45em;
	border-radius: 999px;
	background: currentColor;
	box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.16);
}

.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro .eyebrow,
.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro h2,
.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro > p:not(.eyebrow) {
	opacity: 0;
	transform: translateY(22px);
}

.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro .eyebrow {
	transform: translateY(14px);
}

.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro > p:not(.eyebrow) {
	transform: translateY(16px);
}

.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro .eyebrow,
.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro h2,
.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro > p:not(.eyebrow),
.mvl-landing-page .itinerary-intro.is-visible .eyebrow,
.mvl-landing-page .itinerary-intro.is-visible h2,
.mvl-landing-page .itinerary-intro.is-visible > p:not(.eyebrow) {
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro .eyebrow,
.mvl-landing-page .itinerary-intro.is-visible .eyebrow {
	animation-name: mvl-itinerary-header-eyebrow-in;
	animation-duration: 450ms;
}

.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro h2,
.mvl-landing-page .itinerary-intro.is-visible h2 {
	animation-name: mvl-itinerary-header-title-in;
	animation-duration: 680ms;
	animation-delay: 80ms;
}

.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro > p:not(.eyebrow),
.mvl-landing-page .itinerary-intro.is-visible > p:not(.eyebrow) {
	animation-name: mvl-itinerary-header-copy-in;
	animation-duration: 560ms;
	animation-delay: 170ms;
}

.mvl-landing-page .itinerary-section.is-itinerary-reveal-complete .itinerary-intro .eyebrow,
.mvl-landing-page .itinerary-section.is-itinerary-reveal-complete .itinerary-intro h2,
.mvl-landing-page .itinerary-section.is-itinerary-reveal-complete .itinerary-intro > p:not(.eyebrow) {
	opacity: 1;
	transform: translateY(0);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-ready {
	opacity: 0;
	transform: translate3d(var(--mvl-itinerary-enter-x, 0), 18px, 0) scale(0.99);
	will-change: opacity, transform;
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-ready .itinerary-bg {
	transform: scale(1.04);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-ready [data-itinerary-badge],
.mvl-landing-page .itinerary-panel.is-itinerary-panel-ready [data-itinerary-title],
.mvl-landing-page .itinerary-panel.is-itinerary-panel-ready [data-itinerary-description],
.mvl-landing-page .itinerary-panel.is-itinerary-panel-ready [data-itinerary-chips] {
	opacity: 0;
	transform: translate3d(0, 18px, 0);
	will-change: opacity, transform;
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible .itinerary-bg {
	transform: scale(1);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-badge],
.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-title],
.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-description],
.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-chips] {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-ready,
.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible {
	transition:
		height 420ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-badge] {
	transition: opacity 600ms 100ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms 100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-title] {
	transition: opacity 600ms 220ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-description] {
	transition: opacity 600ms 350ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .itinerary-panel.is-itinerary-panel-visible [data-itinerary-chips] {
	transition: opacity 600ms 480ms cubic-bezier(0.22, 1, 0.36, 1), transform 600ms 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .included-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 18%, rgba(249, 115, 22, 0.1), transparent 24rem),
		linear-gradient(180deg, #f3ede4 0%, #ede4d8 100%);
	color: #0f172a;
	padding-block: 100px 110px;
}

.mvl-landing-page .included-section::before {
	position: absolute;
	inset: 0;
	pointer-events: none;
	content: "";
	background-image:
		linear-gradient(rgba(11, 47, 74, 0.022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(11, 47, 74, 0.018) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, transparent, black 24%, black 76%, transparent);
}

.mvl-landing-page .included-shell {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(2.8rem, 5vw, 4.4rem);
}

.mvl-landing-page .included-heading {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.mvl-landing-page .included-heading .eyebrow {
    color: var(--mvl-orange);
}

.mvl-landing-page .included-heading h2 {
    max-width: 720px;
    margin: 0.75rem auto 0;
    color: #0b2f4a;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2.35rem, 4.5vw, 4.2rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0;
}

.mvl-landing-page .included-heading > p:last-child {
	max-width: 650px;
	margin: 1.15rem auto 0;
	color: #526273;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	line-height: 1.7;
}

.mvl-landing-page .included-comparison {
	display: grid;
	align-items: start;
	gap: 1.4rem;
}

.mvl-landing-page .included-card {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border-radius: 28px;
	padding: clamp(1.5rem, 3.5vw, 2.6rem);
	transition:
		transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 450ms ease,
		box-shadow 450ms ease;
}

.mvl-landing-page .included-card-primary {
	border: 1px solid rgba(255, 255, 255, 0.14);
	background:
		radial-gradient(circle at 96% 4%, rgba(249, 115, 22, 0.2), transparent 19rem),
		linear-gradient(145deg, #0b3555 0%, #082b47 100%);
	box-shadow: 0 30px 74px rgba(6, 26, 47, 0.25);
}

.mvl-landing-page .included-card-primary::after {
	position: absolute;
	right: -86px;
	bottom: -108px;
	width: 250px;
	height: 250px;
	border: 1px solid rgba(255, 255, 255, 0.055);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.mvl-landing-page .included-card-secondary {
	border: 1px solid rgba(157, 93, 63, 0.17);
	background: linear-gradient(155deg, #fffdfc 0%, #fbf6f0 100%);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.75),
		0 22px 55px rgba(75, 52, 37, 0.1);
}

.mvl-landing-page .included-card-header {
	position: relative;
	z-index: 1;
}

.mvl-landing-page .included-card-header p,
.mvl-landing-page .included-card-header h3 {
	margin: 0;
}

.mvl-landing-page .included-card-label {
	display: inline-flex;
	min-height: 30px;
	align-items: center;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	padding: 0.42rem 0.78rem;
	text-transform: uppercase;
}

.mvl-landing-page .included-card-label-primary {
	background: #f97316;
	box-shadow: 0 8px 22px rgba(249, 115, 22, 0.22);
	color: #fffaf5;
}

.mvl-landing-page .included-card-label-secondary {
	border: 1px solid rgba(190, 103, 67, 0.16);
	background: rgba(190, 103, 67, 0.11);
	color: #a55434;
}

.mvl-landing-page .included-card-header h3 {
	max-width: 570px;
	margin-top: 0.85rem;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(1.55rem, 2.3vw, 2rem);
	font-weight: 600;
	line-height: 1.12;
}

.mvl-landing-page .included-card-primary .included-card-header h3 {
	color: #f7f2ea;
}

.mvl-landing-page .included-card-secondary .included-card-header h3 {
	color: #0b2f4a;
}

.mvl-landing-page .included-list,
.mvl-landing-page .not-included-list {
	position: relative;
	z-index: 1;
	margin: clamp(1.5rem, 3vw, 2.1rem) 0 0;
	padding: 0;
	list-style: none;
}

.mvl-landing-page .included-list li,
.mvl-landing-page .not-included-list li {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 1rem;
	padding-block: 1.15rem;
	font-size: clamp(1rem, 1.35vw, 1.06rem);
	line-height: 1.5;
}

.mvl-landing-page .included-list li {
	color: #f7f2ea;
	font-weight: 650;
}

.mvl-landing-page .included-list li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.mvl-landing-page .included-row-icon,
.mvl-landing-page .not-included-row-icon {
	display: grid;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	place-items: center;
	border-radius: 50%;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1;
}

.mvl-landing-page .included-row-icon {
	border: 1px solid rgba(249, 115, 22, 0.48);
	background: rgba(249, 115, 22, 0.15);
	color: #f97316;
}

.mvl-landing-page .not-included-list {
	margin-top: 1.35rem;
}

.mvl-landing-page .not-included-list li + li {
	border-top: 1px solid rgba(157, 93, 63, 0.12);
}

.mvl-landing-page .not-included-row-icon {
	border: 1px solid rgba(190, 103, 67, 0.2);
	background: rgba(190, 103, 67, 0.08);
	color: #b55f3c;
}

.mvl-landing-page .not-included-list p {
	margin: 0;
	color: #435365;
	font-size: inherit;
	line-height: inherit;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-eyebrow],
.mvl-landing-page .included-section.is-included-animation-ready [data-included-title],
.mvl-landing-page .included-section.is-included-animation-ready .included-heading > p:last-child,
.mvl-landing-page .included-section.is-included-animation-ready [data-included-card],
.mvl-landing-page .included-section.is-included-animation-ready [data-included-row] {
	opacity: 0;
	will-change: opacity, transform;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-eyebrow] {
	transform: translate3d(0, 14px, 0);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-title] {
	transform: translate3d(0, 22px, 0);
}

.mvl-landing-page .included-section.is-included-animation-ready .included-heading > p:last-child {
	transform: translate3d(0, 18px, 0);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] {
	transform: translate3d(-38px, 18px, 0) scale(0.985);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] {
	transform: translate3d(38px, 18px, 0) scale(0.985);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-row] {
	transform: translate3d(0, 10px, 0);
}

.mvl-landing-page .included-section.is-included-visible [data-included-eyebrow],
.mvl-landing-page .included-section.is-included-visible [data-included-title],
.mvl-landing-page .included-section.is-included-visible .included-heading > p:last-child,
.mvl-landing-page .included-section.is-included-visible [data-included-card],
.mvl-landing-page .included-section.is-included-visible [data-included-row],
.mvl-landing-page .included-section.is-included-animation-complete [data-included-eyebrow],
.mvl-landing-page .included-section.is-included-animation-complete [data-included-title],
.mvl-landing-page .included-section.is-included-animation-complete .included-heading > p:last-child,
.mvl-landing-page .included-section.is-included-animation-complete [data-included-card],
.mvl-landing-page .included-section.is-included-animation-complete [data-included-row] {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-eyebrow] {
	transition: opacity 450ms cubic-bezier(0.22, 1, 0.36, 1), transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-title] {
	transition: opacity 650ms 80ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms 80ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .included-section.is-included-animation-ready .included-heading > p:last-child {
	transition: opacity 550ms 170ms cubic-bezier(0.22, 1, 0.36, 1), transform 550ms 170ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] {
	transition:
		opacity 780ms 280ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 780ms 280ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 450ms ease;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] {
	transition:
		opacity 780ms 410ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 780ms 410ms cubic-bezier(0.22, 1, 0.36, 1),
		border-color 450ms ease,
		box-shadow 450ms ease;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-row] {
	transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] [data-included-row]:nth-child(1) {
	transition-delay: 420ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] [data-included-row]:nth-child(2) {
	transition-delay: 495ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] [data-included-row]:nth-child(3) {
	transition-delay: 570ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] [data-included-row]:nth-child(4) {
	transition-delay: 645ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] [data-included-row]:nth-child(5) {
	transition-delay: 720ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"] [data-included-row]:nth-child(6) {
	transition-delay: 795ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] [data-included-row]:nth-child(1) {
	transition-delay: 550ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] [data-included-row]:nth-child(2) {
	transition-delay: 625ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] [data-included-row]:nth-child(3) {
	transition-delay: 700ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] [data-included-row]:nth-child(4) {
	transition-delay: 775ms;
}

.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] [data-included-row]:nth-child(5) {
	transition-delay: 850ms;
}

.mvl-landing-page .included-section.is-included-animation-complete [data-included-eyebrow],
.mvl-landing-page .included-section.is-included-animation-complete [data-included-title],
.mvl-landing-page .included-section.is-included-animation-complete .included-heading > p:last-child,
.mvl-landing-page .included-section.is-included-animation-complete [data-included-card],
.mvl-landing-page .included-section.is-included-animation-complete [data-included-row] {
	will-change: auto;
}

.mvl-landing-page .lead-section {
	position: relative;
	overflow: hidden;
	background: #fcfbf8;
	padding-block: clamp(78px, 8vw, 116px);
}

.mvl-landing-page .lead-section::before {
	position: absolute;
	top: -14rem;
	right: -10rem;
	width: 34rem;
	height: 34rem;
	border-radius: 50%;
	content: "";
	background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 68%);
	pointer-events: none;
}

.mvl-landing-page .lead-shell {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(1160px, calc(100% - 32px));
	gap: clamp(2.1rem, 4vw, 3rem);
}

.mvl-landing-page .lead-section-heading {
	max-width: 780px;
	margin-inline: auto;
	text-align: center;
}

.mvl-landing-page .lead-section-heading .eyebrow {
	color: var(--mvl-orange);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.mvl-landing-page .lead-section-heading h2 {
	margin: 0.78rem 0 0;
	color: #0b2f4a;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2.45rem, 4.35vw, 4.35rem);
	font-weight: 600;
	line-height: 0.98;
}

.mvl-landing-page .lead-section-heading > p:last-child {
	max-width: 690px;
	margin: 1.1rem auto 0;
	color: #5d6c7b;
	font-size: clamp(1rem, 1.5vw, 1.08rem);
	line-height: 1.72;
}

.mvl-landing-page .lead-investment-card {
	position: relative;
	display: grid;
	align-items: start;
	gap: clamp(1.8rem, 3.2vw, 2.4rem);
	overflow: hidden;
	border: 1px solid rgba(74, 101, 123, 0.14);
	border-radius: 34px;
	background:
		radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.12), transparent 16rem),
		linear-gradient(155deg, #ffffff 0%, #fffaf2 100%);
	box-shadow:
		inset 0 0 0 1px rgba(255, 255, 255, 0.78),
		0 34px 86px rgba(11, 47, 74, 0.13);
	padding: clamp(1.7rem, 4vw, 3rem);
}

.mvl-landing-page .lead-investment-card::after {
	position: absolute;
	right: -5.5rem;
	bottom: -7.5rem;
	width: 17rem;
	height: 17rem;
	border: 1px solid rgba(11, 47, 74, 0.055);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.mvl-landing-page .lead-card-price,
.mvl-landing-page .lead-card-values,
.mvl-landing-page .lead-card-action {
	position: relative;
	z-index: 1;
}

.mvl-landing-page .lead-price-label {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	background: var(--mvl-orange);
	box-shadow: 0 12px 26px rgba(249, 115, 22, 0.22);
	color: #fffaf5;
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.08em;
	line-height: 1;
	padding: 0.58rem 0.9rem;
	text-transform: uppercase;
}

.mvl-landing-page .lead-price-main {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.22rem 0.48rem;
	margin-top: 1.15rem;
}

.mvl-landing-page .lead-price-main strong {
	color: #0b2f4a;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.15rem, 3.15vw, 2.62rem);
	font-weight: 700;
	letter-spacing: 0.005em;
	line-height: 0.95;
}

.mvl-landing-page .lead-price-main small {
	margin-left: 0.06em;
	font-size: 0.72em;
	font-weight: 650;
}

.mvl-landing-page .lead-price-main span {
	color: #5d6c7b;
	font-size: clamp(0.94rem, 1.22vw, 1.06rem);
	font-weight: 650;
	line-height: 1.2;
}

.mvl-landing-page .lead-price-list {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.82rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mvl-landing-page .lead-price-list li {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	align-items: center;
	gap: 0.78rem;
	color: #142f45;
}

.mvl-landing-page .lead-price-list li > span {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border-radius: 50%;
	background: rgba(249, 115, 22, 0.1);
	color: var(--mvl-orange);
	font-size: 0.86rem;
	font-weight: 900;
}

.mvl-landing-page .lead-price-list p {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.45;
}

.mvl-landing-page .lead-card-action {
	display: grid;
	justify-items: center;
	gap: 0.78rem;
	border-top: 1px solid rgba(74, 101, 123, 0.12);
	padding-top: clamp(1.4rem, 2.6vw, 1.9rem);
}

.mvl-landing-page .lead-open-modal-button {
	width: min(100%, 360px);
	min-height: 60px;
	gap: 0.62rem;
	border: 0;
	border-radius: 16px;
	cursor: pointer;
	padding-inline: 1.65rem;
	box-shadow: 0 18px 42px rgba(249, 115, 22, 0.28);
}

.mvl-landing-page .lead-open-modal-button span {
	font-size: 1.05rem;
	line-height: 1;
	transition: transform 220ms ease;
}

.mvl-landing-page .lead-card-action p {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
	color: #657486;
	font-size: 0.92rem;
	font-weight: 750;
}

.mvl-landing-page .lead-card-action p span {
	color: var(--mvl-orange);
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-eyebrow],
.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-title],
.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-description],
.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-card],
.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-price],
.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight],
.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-cta] {
	opacity: 0;
	will-change: opacity, transform;
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-eyebrow] {
	transform: translate3d(0, 14px, 0);
	transition: opacity 450ms cubic-bezier(0.22, 1, 0.36, 1), transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-title] {
	transform: translate3d(0, 20px, 0);
	transition: opacity 650ms 80ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms 80ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-description] {
	transform: translate3d(0, 18px, 0);
	transition: opacity 550ms 160ms cubic-bezier(0.22, 1, 0.36, 1), transform 550ms 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-card] {
	transform: translate3d(0, 36px, 0) scale(0.975);
	transition:
		opacity 850ms 300ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 850ms 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-price] {
	transform: translate3d(-22px, 0, 0);
	transition: opacity 650ms 440ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms 440ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight] {
	transform: translate3d(0, 12px, 0);
	transition: opacity 460ms cubic-bezier(0.22, 1, 0.36, 1), transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight]:nth-child(1) {
	transition-delay: 540ms;
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight]:nth-child(2) {
	transition-delay: 620ms;
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight]:nth-child(3) {
	transition-delay: 700ms;
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight]:nth-child(4) {
	transition-delay: 780ms;
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight]:nth-child(5) {
	transition-delay: 860ms;
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-highlight]:nth-child(6) {
	transition-delay: 940ms;
}

.mvl-landing-page .lead-section.is-lead-animation-ready [data-lead-cta] {
	transform: translate3d(0, 16px, 0);
	transition: opacity 580ms 1020ms cubic-bezier(0.22, 1, 0.36, 1), transform 580ms 1020ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .lead-section.is-lead-visible [data-lead-eyebrow],
.mvl-landing-page .lead-section.is-lead-visible [data-lead-title],
.mvl-landing-page .lead-section.is-lead-visible [data-lead-description],
.mvl-landing-page .lead-section.is-lead-visible [data-lead-card],
.mvl-landing-page .lead-section.is-lead-visible [data-lead-price],
.mvl-landing-page .lead-section.is-lead-visible [data-lead-highlight],
.mvl-landing-page .lead-section.is-lead-visible [data-lead-cta],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-eyebrow],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-title],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-description],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-card],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-price],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-highlight],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-cta] {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
}

.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-eyebrow],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-title],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-description],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-card],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-price],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-highlight],
.mvl-landing-page .lead-section.is-lead-animation-complete [data-lead-cta] {
	will-change: auto;
}

.mvl-landing-page .faq-section {
	position: relative;
	overflow: hidden;
	scroll-margin-top: 84px;
	background:
		radial-gradient(circle at 50% 12%, rgba(59, 120, 160, 0.11), transparent 28rem),
		linear-gradient(180deg, #edf6fa 0%, #e4f0f6 100%);
	padding-block: clamp(76px, 8vw, 112px);
}

body.mvl-admin-bar-visible .mvl-landing-page .faq-section {
	scroll-margin-top: 116px;
}

.mvl-landing-page .faq-shell {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(980px, calc(100% - 32px));
	gap: clamp(2rem, 4vw, 3rem);
}

.mvl-landing-page .faq-heading {
	max-width: 760px;
	margin-inline: auto;
	text-align: center;
}

.mvl-landing-page .faq-heading .eyebrow {
	color: var(--mvl-orange);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.mvl-landing-page .faq-heading h2 {
	max-width: 720px;
	margin: 0.78rem auto 0;
	color: var(--mvl-orange);
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2.35rem, 4.4vw, 4.05rem);
	font-weight: 600;
	line-height: 1;
}

.mvl-landing-page .faq-heading > p:last-child {
	max-width: 620px;
	margin: 1.05rem auto 0;
	color: #4f6173;
	font-size: clamp(1rem, 1.45vw, 1.08rem);
	line-height: 1.72;
}

.mvl-landing-page .faq-list {
	display: grid;
	gap: clamp(0.85rem, 1.6vw, 1rem);
}

.mvl-landing-page .faq-item {
	overflow: hidden;
	border: 1px solid rgba(74, 101, 123, 0.14);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 16px 42px rgba(11, 47, 74, 0.08);
	transition:
		border-color 260ms ease,
		box-shadow 260ms ease,
		background 260ms ease;
}

.mvl-landing-page .faq-item.is-open {
	border-color: rgba(249, 115, 22, 0.22);
	background: #fffdf8;
	box-shadow: 0 22px 56px rgba(11, 47, 74, 0.12);
}

.mvl-landing-page .faq-item h3 {
	margin: 0;
}

.mvl-landing-page .faq-question {
	display: grid;
	width: 100%;
	min-height: 72px;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 1rem;
	border: 0;
	background: transparent;
	color: #0b2f4a;
	cursor: pointer;
	font-size: clamp(1rem, 1.55vw, 1.1rem);
	font-weight: 700;
	line-height: 1.35;
	padding: 1.15rem 1.25rem 1.15rem 1.45rem;
	text-align: left;
}

.mvl-landing-page .faq-question:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.28);
	outline-offset: -5px;
}

.mvl-landing-page .faq-arrow {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid rgba(249, 115, 22, 0.18);
	border-radius: 50%;
	background: rgba(249, 115, 22, 0.08);
	color: var(--mvl-orange);
	transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .faq-arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.2;
}

.mvl-landing-page .faq-item.is-open .faq-arrow {
	transform: rotate(180deg);
}

.mvl-landing-page .faq-answer {
	display: grid;
	grid-template-rows: 1fr;
	opacity: 1;
	transform: translateY(0);
	transition:
		grid-template-rows 400ms cubic-bezier(0.22, 1, 0.36, 1),
		opacity 320ms ease,
		transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page.is-mvl-js-enabled .faq-answer {
	grid-template-rows: 0fr;
	opacity: 0;
	transform: translateY(-6px);
}

.mvl-landing-page.is-mvl-js-enabled .faq-item.is-open .faq-answer {
	grid-template-rows: 1fr;
	opacity: 1;
	transform: translateY(0);
}

.mvl-landing-page .faq-answer > div {
	min-height: 0;
	overflow: hidden;
}

.mvl-landing-page .faq-answer p {
	margin: 0;
	border-top: 1px solid rgba(74, 101, 123, 0.12);
	color: #3e5265;
	font-size: clamp(0.97rem, 1.4vw, 1.04rem);
	line-height: 1.7;
	padding: 0.1rem 1.45rem 1.35rem;
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-eyebrow],
.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-title],
.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-description],
.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-item] {
	opacity: 0;
	will-change: opacity, transform;
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-eyebrow] {
	transform: translate3d(0, 14px, 0);
	transition: opacity 450ms cubic-bezier(0.22, 1, 0.36, 1), transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-title] {
	transform: translate3d(0, 22px, 0);
	transition: opacity 680ms 80ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms 80ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-description] {
	transform: translate3d(0, 16px, 0);
	transition: opacity 560ms 170ms cubic-bezier(0.22, 1, 0.36, 1), transform 560ms 170ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-item] {
	transform: translate3d(0, 20px, 0);
	transition: opacity 580ms cubic-bezier(0.22, 1, 0.36, 1), transform 580ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-item]:nth-child(1) {
	transition-delay: 290ms;
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-item]:nth-child(2) {
	transition-delay: 380ms;
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-item]:nth-child(3) {
	transition-delay: 470ms;
}

.mvl-landing-page .faq-section.is-faq-animation-ready [data-faq-item]:nth-child(4) {
	transition-delay: 560ms;
}

.mvl-landing-page .faq-section.is-faq-visible [data-faq-eyebrow],
.mvl-landing-page .faq-section.is-faq-visible [data-faq-title],
.mvl-landing-page .faq-section.is-faq-visible [data-faq-description],
.mvl-landing-page .faq-section.is-faq-visible [data-faq-item],
.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-eyebrow],
.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-title],
.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-description],
.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-item] {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-eyebrow],
.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-title],
.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-description],
.mvl-landing-page .faq-section.is-faq-animation-complete [data-faq-item] {
	will-change: auto;
}

.mvl-landing-page .footer {
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background:
		radial-gradient(circle at 84% 8%, rgba(249, 115, 22, 0.12), transparent 25rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0, rgba(255, 255, 255, 0) 4.2rem),
		#0b3d66;
	color: #fff9f1;
	padding-block: 76px 34px;
}

.mvl-landing-page .footer::before {
	content: none;
}

.mvl-landing-page .footer-shell {
	position: relative;
	z-index: 1;
	display: grid;
	width: min(1220px, calc(100% - 40px));
	gap: clamp(2rem, 4vw, 3rem);
}

.mvl-landing-page .footer-grid {
	display: grid;
	align-items: start;
	gap: clamp(2.25rem, 5vw, 4.5rem);
}

.mvl-landing-page .footer-brand-column,
.mvl-landing-page .footer-column {
	min-width: 0;
}

.mvl-landing-page .footer-brand-name {
	display: inline-flex;
	color: #fff9f1;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 3vw, 2.65rem);
	font-weight: 650;
	line-height: 1;
}

.mvl-landing-page .footer-brand-column p {
	max-width: 390px;
	margin: 1.25rem 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1.03rem;
	line-height: 1.7;
}

.mvl-landing-page .footer-cta {
	width: fit-content;
	min-height: 54px;
	gap: 0.58rem;
	margin-top: 1.65rem;
	border-radius: 14px;
	padding-inline: 1.25rem;
	box-shadow: 0 17px 36px rgba(249, 115, 22, 0.25);
}

.mvl-landing-page .footer-cta .booking-cta-icon {
	transition: transform 220ms ease;
}

.mvl-landing-page .footer-column h2 {
	margin: 0 0 1.35rem;
	color: #fff9f1;
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mvl-landing-page .footer-contact-list,
.mvl-landing-page .footer-links {
	display: grid;
	gap: 0.92rem;
}

.mvl-landing-page .footer-contact-row {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	align-items: center;
	gap: 0.9rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: 1rem;
	font-weight: 700;
	overflow-wrap: anywhere;
	transition: color 180ms ease;
}

.mvl-landing-page .footer-icon {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	transition:
		background 180ms ease,
		border-color 180ms ease;
}

.mvl-landing-page .footer-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.mvl-landing-page .footer-links {
	gap: 0.78rem;
}

.mvl-landing-page .footer-links a {
	position: relative;
	width: fit-content;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1rem;
	font-weight: 750;
	line-height: 1.45;
	padding-bottom: 0.12rem;
}

.mvl-landing-page .footer-links a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	content: "";
	background: var(--mvl-orange);
	opacity: 0;
	transform: scaleX(0);
	transform-origin: left;
	transition:
		opacity 180ms ease,
		transform 180ms ease;
}

.mvl-landing-page .footer-contact-row:focus-visible,
.mvl-landing-page .footer-links a:focus-visible,
.mvl-landing-page .footer-brand-name:focus-visible,
.mvl-landing-page .footer-cta:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.32);
	outline-offset: 4px;
}

.mvl-landing-page .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	padding-top: 1.6rem;
}

.mvl-landing-page .footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.94rem;
	font-weight: 650;
}

.mvl-landing-page .footer-legal {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.6rem;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.94rem;
	font-weight: 650;
}

.mvl-landing-page .footer.is-footer-animation-ready [data-footer-column],
.mvl-landing-page .footer.is-footer-animation-ready [data-footer-bottom] {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	will-change: opacity, transform;
}

.mvl-landing-page .footer.is-footer-animation-ready [data-footer-bottom] {
	transform: translate3d(0, 12px, 0);
}

.mvl-landing-page .footer.is-footer-visible [data-footer-column],
.mvl-landing-page .footer.is-footer-visible [data-footer-bottom],
.mvl-landing-page .footer.is-footer-animation-complete [data-footer-column],
.mvl-landing-page .footer.is-footer-animation-complete [data-footer-bottom] {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.mvl-landing-page .footer.is-footer-animation-ready [data-footer-column] {
	transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .footer.is-footer-animation-ready [data-footer-column]:nth-child(2) {
	transition-delay: 110ms;
}

.mvl-landing-page .footer.is-footer-animation-ready [data-footer-column]:nth-child(3) {
	transition-delay: 220ms;
}

.mvl-landing-page .footer.is-footer-animation-ready [data-footer-bottom] {
	transition: opacity 520ms 330ms cubic-bezier(0.22, 1, 0.36, 1), transform 520ms 330ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mvl-landing-page .footer.is-footer-animation-complete [data-footer-column],
.mvl-landing-page .footer.is-footer-animation-complete [data-footer-bottom] {
	will-change: auto;
}

.mvl-landing-page .lead-form {
	display: grid;
	gap: 1.05rem;
}

.mvl-landing-page .lead-form-heading h3 {
	margin: 0;
	color: #0b2f4a;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(1.8rem, 3vw, 2.45rem);
	font-weight: 600;
	line-height: 1.08;
}

.mvl-landing-page .lead-form-heading p:last-child {
	max-width: 620px;
	margin: 0.72rem 0 0;
	color: #627180;
	line-height: 1.68;
}

.mvl-landing-page .lead-field-row {
	display: grid;
	gap: 0.95rem;
}

.mvl-landing-page .lead-form .form-field {
	display: grid;
	min-width: 0;
	gap: 0.48rem;
	color: #17324d;
	font-size: 0.86rem;
	font-weight: 750;
}

.mvl-landing-page .lead-form .form-field input,
.mvl-landing-page .lead-form .form-field textarea,
.mvl-landing-page .lead-form .form-field select {
	width: 100%;
	border: 1px solid rgba(22, 62, 109, 0.16);
	border-radius: 14px;
	background: #fbfdff;
	color: #17324d;
	font-size: 0.98rem;
	font-weight: 500;
	outline: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		background 160ms ease;
}

.mvl-landing-page .lead-form .form-field input,
.mvl-landing-page .lead-form .form-field select {
	height: 52px;
	padding-inline: 0.95rem;
}

.mvl-landing-page .lead-form .form-field select {
	cursor: pointer;
}

.mvl-landing-page .lead-form .form-field textarea {
	min-height: 116px;
	resize: vertical;
	padding: 0.9rem 0.95rem;
}

.mvl-landing-page .lead-form .form-field input:focus,
.mvl-landing-page .lead-form .form-field textarea:focus,
.mvl-landing-page .lead-form .form-field select:focus {
	border-color: rgba(22, 62, 109, 0.7);
	background: #ffffff;
	box-shadow:
		0 0 0 3px rgba(234, 242, 248, 0.95),
		0 0 0 5px rgba(242, 140, 40, 0.1),
		0 10px 24px rgba(22, 62, 109, 0.07);
}

.mvl-landing-page .lead-form .form-field input[aria-invalid="true"],
.mvl-landing-page .lead-form .form-field textarea[aria-invalid="true"],
.mvl-landing-page .lead-form .form-field select[aria-invalid="true"] {
	border-color: rgba(220, 38, 38, 0.72);
}

.mvl-landing-page .lead-form .form-field span {
	color: #b42318;
	font-size: 0.86rem;
	font-weight: 750;
}

.mvl-landing-page .form-submit {
	width: 100%;
	min-height: 54px;
	gap: 0.55rem;
	border: 0;
	border-radius: 15px;
	cursor: pointer;
	background: linear-gradient(180deg, #f39a3a 0%, #f28c28 100%);
	color: #ffffff;
	box-shadow: 0 16px 34px rgba(242, 140, 40, 0.26);
	transition:
		transform 220ms ease,
		background 220ms ease,
		box-shadow 220ms ease;
}

.mvl-landing-page .form-submit:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.28);
	outline-offset: 3px;
}

.mvl-landing-page .form-submit:active {
	transform: translateY(0) scale(0.99);
}

.mvl-landing-page .form-submit:disabled {
	cursor: not-allowed;
	opacity: 0.72;
	transform: none;
	box-shadow: none;
}

.mvl-landing-page .lead-honeypot {
	position: absolute;
	left: -10000px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.mvl-landing-page .form-reassurance,
.mvl-landing-page .form-privacy {
	margin: 0;
	color: #6b7a8c;
	font-size: 0.84rem;
	font-weight: 650;
	line-height: 1.45;
	text-align: center;
}

.mvl-landing-page .form-reassurance {
	margin-top: -0.35rem;
	color: #17324d;
}

.mvl-landing-page .form-error-summary,
.mvl-landing-page .form-success {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 750;
	line-height: 1.55;
	padding: 0.95rem 1rem;
}

.mvl-landing-page .form-error-summary {
	border: 1px solid rgba(185, 28, 28, 0.22);
	border-radius: 16px;
	background: #fff1f1;
	color: #991b1b;
}

.mvl-landing-page .form-success {
	border: 1px solid rgba(22, 163, 74, 0.24);
	border-radius: 16px;
	background: #eefaf1;
	color: #166534;
}

.mvl-landing-page .lead-modal[hidden] {
	display: none;
}

.mvl-landing-page .lead-modal {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: grid;
	place-items: center;
	overflow: hidden;
	padding: 1.5rem;
}

body.mvl-admin-bar-visible .mvl-landing-page .lead-modal {
	top: 32px;
}

.mvl-landing-page .lead-modal-backdrop {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(6, 26, 47, 0.58);
	backdrop-filter: blur(10px);
	cursor: pointer;
	animation: mvl-lead-backdrop-in 220ms ease forwards;
}

.mvl-landing-page .lead-modal-panel {
	position: relative;
	z-index: 1;
	width: min(780px, calc(100vw - 40px));
	max-height: min(860px, calc(100dvh - 48px));
	overflow: auto;
	overscroll-behavior: contain;
	border: 1px solid rgba(22, 62, 109, 0.12);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(234, 242, 248, 0.42) 0, rgba(255, 255, 255, 0) 148px),
		#ffffff;
	box-shadow:
		0 30px 90px rgba(6, 26, 47, 0.24),
		0 1px 0 rgba(255, 255, 255, 0.9) inset;
	padding: clamp(1.15rem, 2.6vw, 1.85rem);
	animation: mvl-lead-modal-in 380ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mvl-landing-page .lead-modal-panel::before {
	position: sticky;
	top: 0;
	z-index: 3;
	display: block;
	height: 4px;
	margin: calc(clamp(1.15rem, 2.6vw, 1.85rem) * -1) calc(clamp(1.15rem, 2.6vw, 1.85rem) * -1) 0;
	border-radius: 22px 22px 0 0;
	content: "";
	background: linear-gradient(90deg, #f28c28, rgba(242, 140, 40, 0.25), rgba(234, 242, 248, 0));
}

.mvl-landing-page .lead-modal-header {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 0.9rem;
	margin: 1.05rem 0 1.2rem;
	border-bottom: 1px solid rgba(22, 62, 109, 0.1);
	color: #17324d;
	padding: 0 0 1.05rem;
}

.mvl-landing-page .lead-modal-header::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	border-radius: 999px 999px 0 0;
	content: "";
	background: linear-gradient(90deg, rgba(242, 140, 40, 0.75), rgba(22, 62, 109, 0.12), rgba(22, 62, 109, 0));
}

.mvl-landing-page .lead-modal-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 0 0 0.56rem;
	border: 1px solid rgba(22, 62, 109, 0.12);
	border-radius: 999px;
	background: #eaf2f8;
	color: #163e6d;
	padding: 0.36rem 0.62rem;
	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.mvl-landing-page .lead-modal-header h3 {
	margin: 0;
	color: #17324d;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(1.58rem, 2.4vw, 2.02rem);
	font-weight: 600;
	line-height: 1.1;
}

.mvl-landing-page .lead-modal-header p {
	max-width: 560px;
	margin: 0.45rem 0 0;
	color: #6b7a8c;
	font-size: 0.98rem;
	line-height: 1.55;
}

.mvl-landing-page .lead-modal-close {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(22, 62, 109, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 20px rgba(22, 62, 109, 0.08);
	color: #163e6d;
	cursor: pointer;
	font-size: 1.18rem;
	line-height: 1;
	transition:
		background 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

.mvl-landing-page .lead-modal-close:focus-visible,
.mvl-landing-page .lead-open-modal-button:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.32);
	outline-offset: 3px;
}

.mvl-landing-page .lead-modal-close:hover {
	border-color: rgba(242, 140, 40, 0.28);
	background: #ffffff;
	color: #f28c28;
	transform: translateY(-1px);
}

.mvl-landing-page .lead-modal-body .lead-form-heading {
	display: none;
}

.mvl-landing-page .lead-modal-panel-success {
	width: min(640px, calc(100vw - 40px));
	background:
		linear-gradient(180deg, rgba(242, 140, 40, 0.08) 0, rgba(255, 255, 255, 0) 130px),
		#fffdf8;
}

.mvl-landing-page .lead-success-state[hidden] {
	display: none;
}

.mvl-landing-page .lead-success-state {
	padding: 0 0 0.15rem;
}

.mvl-landing-page .lead-modal-panel-success .lead-modal-header {
	margin: 0 0 0.7rem;
	border-bottom: 0;
	padding-bottom: 0;
}

.mvl-landing-page .lead-modal-panel-success .lead-modal-header::after {
	display: none;
}

.mvl-landing-page .lead-success-card {
	position: relative;
	display: grid;
	justify-items: center;
	overflow: hidden;
	border: 1px solid rgba(22, 62, 109, 0.1);
	border-radius: 22px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 248, 0.98)),
		#ffffff;
	box-shadow:
		0 18px 44px rgba(6, 26, 47, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	padding: clamp(1.35rem, 3vw, 2rem);
	text-align: center;
}

.mvl-landing-page .lead-success-card::before {
	position: absolute;
	top: 0;
	right: 14%;
	left: 14%;
	height: 3px;
	border-radius: 0 0 999px 999px;
	content: "";
	background: linear-gradient(90deg, rgba(242, 140, 40, 0), #f28c28, rgba(242, 140, 40, 0));
}

.mvl-landing-page .lead-success-state p,
.mvl-landing-page .lead-success-card h3,
.mvl-landing-page .lead-success-card h4 {
	margin: 0;
}

.mvl-landing-page .lead-success-icon {
	display: grid;
	width: 62px;
	height: 62px;
	place-items: center;
	margin-bottom: 0.8rem;
	border: 1px solid rgba(242, 140, 40, 0.2);
	border-radius: 999px;
	background:
		radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.18) 58%, transparent 59%),
		linear-gradient(180deg, rgba(242, 140, 40, 0.18), rgba(242, 140, 40, 0.08));
	color: var(--mvl-orange);
	box-shadow:
		0 14px 30px rgba(242, 140, 40, 0.18),
		0 0 0 8px rgba(242, 140, 40, 0.06);
}

.mvl-landing-page .lead-success-icon svg {
	width: 31px;
	height: 31px;
}

.mvl-landing-page .lead-success-eyebrow {
	color: #f28c28;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.mvl-landing-page .lead-success-card h3 {
	max-width: 500px;
	margin-top: 0.48rem;
	color: #17324d;
	font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	font-size: clamp(1.62rem, 3vw, 2.16rem);
	font-weight: 650;
	line-height: 1.08;
}

.mvl-landing-page .lead-success-message {
	max-width: 520px;
	margin-top: 0.78rem;
	color: #526174;
	font-size: 0.98rem;
	line-height: 1.66;
}

.mvl-landing-page .lead-success-steps {
	display: grid;
	width: 100%;
	gap: 0.78rem;
	margin-top: 1.18rem;
	border: 1px solid rgba(22, 62, 109, 0.1);
	border-radius: 18px;
	background: #f6f8fb;
	padding: 1rem;
	text-align: left;
}

.mvl-landing-page .lead-success-steps h4 {
	color: #17324d;
	font-size: 0.96rem;
	font-weight: 900;
}

.mvl-landing-page .lead-success-steps ol {
	display: grid;
	gap: 0.64rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mvl-landing-page .lead-success-steps li {
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	align-items: center;
	gap: 0.66rem;
}

.mvl-landing-page .lead-success-steps li span {
	display: grid;
	width: 28px;
	height: 28px;
	place-items: center;
	border-radius: 999px;
	background: rgba(242, 140, 40, 0.12);
	color: #d86f12;
	font-size: 0.78rem;
	font-weight: 900;
}

.mvl-landing-page .lead-success-steps li p {
	color: #314258;
	font-size: 0.93rem;
	font-weight: 700;
	line-height: 1.45;
}

.mvl-landing-page .lead-success-reassurance {
	max-width: 520px;
	margin-top: 0.95rem;
	color: #6b7a8c;
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.55;
}

.mvl-landing-page .lead-success-actions {
	display: grid;
	width: 100%;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
	gap: 0.72rem;
	margin-top: 1.15rem;
}

.mvl-landing-page .lead-success-whatsapp,
.mvl-landing-page .lead-success-secondary {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	border-radius: 14px;
	cursor: pointer;
	font-weight: 850;
	letter-spacing: 0;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		border-color 180ms ease,
		background 180ms ease;
}

.mvl-landing-page .lead-success-whatsapp {
	border: 1px solid rgba(255, 255, 255, 0.24);
	background: linear-gradient(180deg, #25d366 0%, #18a957 100%);
	color: #ffffff;
	box-shadow: 0 14px 30px rgba(18, 140, 69, 0.24);
}

.mvl-landing-page .lead-success-whatsapp svg {
	width: 1.22rem;
	height: 1.22rem;
}

.mvl-landing-page .lead-success-secondary {
	border: 1px solid rgba(22, 62, 109, 0.16);
	background: rgba(255, 255, 255, 0.74);
	color: #17324d;
	box-shadow: 0 10px 22px rgba(22, 62, 109, 0.06);
}

.mvl-landing-page .lead-success-whatsapp:focus-visible,
.mvl-landing-page .lead-success-secondary:focus-visible {
	outline: 3px solid rgba(249, 115, 22, 0.28);
	outline-offset: 3px;
}

.mvl-landing-page .lead-success-whatsapp:hover {
	background: linear-gradient(180deg, #2ade72 0%, #159f50 100%);
	box-shadow: 0 18px 36px rgba(18, 140, 69, 0.3);
	transform: translateY(-1px);
}

.mvl-landing-page .lead-success-secondary:hover {
	border-color: rgba(22, 62, 109, 0.26);
	background: #ffffff;
	transform: translateY(-1px);
}

@keyframes mvl-lead-backdrop-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes mvl-lead-modal-in {
	from {
		opacity: 0;
		transform: translateY(20px) scale(0.975);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.mvl-landing-page .mvl-next-placeholder {
	display: grid;
	min-height: 220px;
	place-items: center;
	background: #ffffff;
	padding: 56px 24px;
}

.mvl-landing-page .mvl-next-placeholder p {
	margin: 0;
	color: #061a2f;
	font-size: clamp(1.05rem, 2vw, 1.4rem);
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

@keyframes mvl-hero-fade-down {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-hero-fade-up {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-hero-price-in {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.97);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes mvl-hero-soft-fade {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes mvl-why-eyebrow-in {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-why-title-in {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-why-body-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-why-feature-in {
	from {
		opacity: 0;
		transform: translate(var(--why-feature-x), var(--why-feature-y));
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-why-image-in {
	from {
		opacity: 0;
		transform: translate(var(--why-image-x), var(--why-image-y)) scale(var(--why-image-scale, 1.035));
	}

	to {
		opacity: 1;
		transform: translate(0, 0) scale(1);
	}
}

@keyframes mvl-why-badge-in {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-gallery-marquee {
	from {
		transform: translate3d(-50%, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes mvl-reviews-marquee-rtl {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@keyframes mvl-gallery-reveal-up {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-gallery-reveal-title {
	from {
		opacity: 0;
		transform: translateY(26px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-gallery-reveal-slider {
	from {
		opacity: 0;
		transform: translateY(32px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-gallery-mobile-reveal-eyebrow {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-gallery-mobile-reveal-title {
	from {
		opacity: 0;
		transform: translateY(32px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-gallery-mobile-reveal-copy {
	from {
		opacity: 0;
		transform: translateY(26px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-gallery-mobile-reveal-slider {
	from {
		opacity: 0;
		transform: translateY(42px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-itinerary-header-eyebrow-in {
	from {
		opacity: 0;
		transform: translateY(14px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-itinerary-header-title-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-itinerary-header-copy-in {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-itinerary-mobile-header-eyebrow-in {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-itinerary-mobile-header-title-in {
	from {
		opacity: 0;
		transform: translateY(32px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes mvl-itinerary-mobile-header-copy-in {
	from {
		opacity: 0;
		transform: translateY(26px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 640px) {
	.mvl-landing-page .hero-actions {
		flex-direction: row;
		align-items: center;
	}
}

@media (min-width: 768px) {
	.mvl-landing-page .included-comparison {
		grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.95fr);
		gap: clamp(1.75rem, 2.4vw, 2.1rem);
	}
}

@media (hover: hover) and (pointer: fine) {
	.mvl-landing-page .included-card-primary:hover,
	.mvl-landing-page .included-section.is-included-visible .included-card-primary:hover,
	.mvl-landing-page .included-section.is-included-animation-complete .included-card-primary:hover {
		box-shadow: 0 36px 84px rgba(6, 26, 47, 0.3);
		transform: translate3d(0, -5px, 0) scale(1);
	}

	.mvl-landing-page .included-card-secondary:hover,
	.mvl-landing-page .included-section.is-included-visible .included-card-secondary:hover,
	.mvl-landing-page .included-section.is-included-animation-complete .included-card-secondary:hover {
		border-color: rgba(157, 93, 63, 0.25);
		box-shadow:
			inset 0 0 0 1px rgba(255, 255, 255, 0.82),
			0 28px 62px rgba(75, 52, 37, 0.14);
		transform: translate3d(0, -3px, 0) scale(1);
	}

	.mvl-landing-page .lead-open-modal-button:hover {
		background: var(--mvl-orange-dark);
		box-shadow: 0 24px 50px rgba(249, 115, 22, 0.34);
		transform: translateY(-2px);
	}

	.mvl-landing-page .lead-open-modal-button:hover .booking-cta-icon {
		transform: translateX(3px);
	}

	.mvl-landing-page .footer-cta:hover {
		background: var(--mvl-orange-dark);
		box-shadow: 0 22px 44px rgba(249, 115, 22, 0.3);
		transform: translateY(-2px);
	}

	.mvl-landing-page .footer-cta:hover .booking-cta-icon {
		transform: translateX(3px);
	}

	.mvl-landing-page .footer-contact-row:hover {
		color: #ffffff;
	}

	.mvl-landing-page .footer-contact-row:hover .footer-icon {
		border-color: rgba(255, 255, 255, 0.32);
		background: rgba(255, 255, 255, 0.18);
	}

	.mvl-landing-page .footer-links a:hover {
		color: #ffffff;
	}

	.mvl-landing-page .footer-links a:hover::after {
		opacity: 1;
		transform: scaleX(1);
	}

	.mvl-landing-page .form-submit:hover {
		background: linear-gradient(180deg, #f59f43 0%, #e87516 100%);
		box-shadow: 0 20px 40px rgba(249, 115, 22, 0.32);
		transform: translateY(-2px);
	}
}

@media (max-width: 767px) {
	.mvl-landing-page .floating-whatsapp-button {
		right: 16px;
		bottom: calc(16px + env(safe-area-inset-bottom));
		width: 56px;
		height: 56px;
		min-height: 56px;
		justify-content: center;
		gap: 0;
		border-radius: 999px;
		padding: 0;
	}

	.mvl-landing-page .floating-whatsapp-icon {
		width: 1.65rem;
		height: 1.65rem;
	}

	.mvl-landing-page .floating-whatsapp-copy {
		display: none;
	}

	.mvl-landing-page .site-header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		border-bottom: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}

	.mvl-landing-page .site-header.site-header-scrolled,
	.mvl-landing-page .site-header.is-mobile-menu-open {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		background: rgba(6, 26, 47, 0.9);
		box-shadow: 0 12px 30px rgba(6, 26, 47, 0.16);
		backdrop-filter: blur(18px) saturate(126%);
	}

	.mvl-landing-page .nav-shell {
		width: calc(100% - 32px);
		min-height: 64px;
		background: transparent;
		box-shadow: none;
	}

	.mvl-landing-page .brand,
	.mvl-landing-page .brand img {
		background: transparent;
		box-shadow: none;
		filter: none;
	}

	.mvl-landing-page .brand {
		width: 124px;
	}

	.mvl-landing-page .nav-logo {
		height: 40px;
	}

	.mvl-landing-page .nav-actions > .button {
		display: none;
	}

	.mvl-landing-page .button,
	.mvl-landing-page .button-ghost {
		width: 100%;
	}

	.mvl-landing-page .hero {
		width: 100%;
		height: 78svh;
		min-height: 700px;
		max-height: 740px;
		overflow: hidden;
	}

	.mvl-landing-page .hero::after {
		position: absolute;
		inset: 0;
		z-index: 1;
		pointer-events: none;
		content: "";
		background: linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.18) 0%,
			rgba(0, 0, 0, 0.02) 38%,
			rgba(0, 0, 0, 0.12) 58%,
			rgba(0, 0, 0, 0.72) 100%
		);
	}

	.mvl-landing-page .hero video {
		width: 100%;
		height: 100%;
		opacity: 1;
		object-fit: cover;
		object-position: 50% 0%;
		filter: none;
		mix-blend-mode: normal;
		transform: none;
		scale: 1;
	}

	.mvl-landing-page .hero-content {
		position: absolute;
		top: clamp(104px, 14svh, 118px);
		right: 20px;
		left: 20px;
		width: auto;
		padding: 0;
		transform: none;
	}

	body.mvl-admin-bar-visible .mvl-landing-page .hero-content {
		top: clamp(116px, calc(14svh + 10px), 128px);
	}

	.mvl-landing-page .hero h1 {
		max-width: 350px;
		margin-top: 0.38rem;
		font-size: clamp(2.05rem, 8.8vw, 2.34rem);
		font-weight: 600;
		line-height: 0.92;
		text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58);
	}

	.mvl-landing-page .hero-subtitle {
		max-width: 350px;
		margin-top: 0.48rem;
		color: #f7f2ea;
		font-size: 0.95rem;
		line-height: 1.48;
		text-shadow: 0 2px 14px rgba(0, 0, 0, 0.56);
	}

	.mvl-landing-page .hero-price {
		gap: 0.18rem 0.42rem;
		margin-top: 0.48rem;
		padding: 0.03rem 0 0.03rem 0.65rem;
	}

	.mvl-landing-page .hero-price strong {
		font-size: clamp(2rem, 9vw, 2.35rem);
	}

	.mvl-landing-page .hero-price span {
		font-size: clamp(0.94rem, 4vw, 1rem);
	}

	.mvl-landing-page .hero-actions {
		gap: 0.48rem;
		margin-top: 0.58rem;
	}

	.mvl-landing-page .hero-badges {
		gap: 0.45rem;
		margin-top: 0.58rem;
	}

	.mvl-landing-page .hero-badges span {
		padding: 0.48rem 0.56rem;
		font-size: 0.73rem;
		backdrop-filter: none;
	}

	.mvl-landing-page .why-section {
		margin-top: -22px;
		border-radius: 28px 28px 0 0;
		padding: 72px 0 64px;
		box-shadow: 0 -14px 30px rgba(6, 26, 47, 0.1);
		--why-title-x: -28px;
		--why-image-x: 0;
		--why-image-y: 42px;
		--why-image-scale: 1.035;
		--why-feature-x: 0;
		--why-feature-y: 16px;
	}

	.mvl-landing-page .why-section::after {
		height: 24px;
	}

	.mvl-landing-page .why-section .container {
		width: calc(100% - 32px);
	}

	.mvl-landing-page .why-shell {
		gap: 1.85rem;
	}

	.mvl-landing-page .why-copy {
		max-width: none;
	}

	.mvl-landing-page .why-section .section-header h2 {
		max-width: 350px;
		font-size: clamp(2.2rem, 10vw, 2.7rem);
		line-height: 1.02;
	}

	.mvl-landing-page .why-section .section-header p:not(.eyebrow) {
		margin-top: 0.92rem;
		font-size: 0.98rem;
		line-height: 1.68;
	}

	.mvl-landing-page .story-points {
		margin-top: 1.32rem;
	}

	.mvl-landing-page .story-point {
		gap: 0.85rem;
		padding: 0.82rem 0;
	}

	.mvl-landing-page .story-marker {
		width: 2.35rem;
		height: 2.35rem;
		font-size: 0.72rem;
	}

	.mvl-landing-page .story-point strong {
		font-size: 1rem;
	}

	.mvl-landing-page .story-point span:not(.story-marker) {
		font-size: 0.92rem;
		line-height: 1.58;
	}

	.mvl-landing-page .story-visual-wrap {
		display: grid;
		gap: 0;
		border-radius: 22px;
		box-shadow: 0 20px 44px rgba(15, 23, 42, 0.14);
	}

	.mvl-landing-page .story-visual-wrap::before {
		top: -0.6rem;
		right: -0.55rem;
		width: 46%;
		height: 26%;
		border-radius: 20px;
	}

	.mvl-landing-page .story-visual {
		aspect-ratio: 4 / 5;
		min-height: 0;
		border-radius: 22px 22px 0 0;
		box-shadow: none;
	}

	.mvl-landing-page .story-image {
		object-position: 50% 45%;
	}

	.mvl-landing-page .story-card {
		position: relative;
		bottom: auto;
		left: auto;
		z-index: 1;
		max-width: 100%;
		border-radius: 0 0 18px 18px;
		padding: 0.66rem 0.78rem;
		box-shadow: none;
	}

	.mvl-landing-page .story-card strong {
		font-size: 0.82rem;
	}

	.mvl-landing-page .gallery-section {
		padding-block: 72px 80px;
	}

	.mvl-landing-page .gallery-header {
		margin-bottom: 1.55rem;
	}

	.mvl-landing-page .experience-sliders {
		gap: 1.35rem;
	}

	.mvl-landing-page .gallery-header h2 {
		font-size: clamp(2.1rem, 10vw, 2.85rem);
		line-height: 1.02;
	}

	.mvl-landing-page .gallery-header p:not(.gallery-eyebrow) {
		margin-top: 0.86rem;
		font-size: 0.96rem;
		line-height: 1.62;
	}

	.mvl-landing-page .gallery-track {
		gap: 1.25rem;
		animation-duration: 44s;
	}

	.mvl-landing-page .gallery-slide {
		width: min(86vw, 370px);
		height: clamp(430px, 115vw, 480px);
		border-radius: 24px;
		box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
	}

	.mvl-landing-page .gallery-edge,
	.mvl-landing-page .reviews-edge {
		width: 2.2rem;
	}

	.mvl-landing-page .reviews-marquee {
		padding-block: 0.45rem 1rem;
	}

	.mvl-landing-page .reviews-track {
		gap: 1.1rem;
		animation-duration: 52s;
	}

	.mvl-landing-page .review-marquee-card {
		width: min(82vw, 340px);
		border-radius: 20px;
		padding: 6px;
	}

	.mvl-landing-page .review-marquee-card:not(.is-centered) {
		opacity: 0.78;
		transform: translate3d(0, 0, 0) scale(0.94);
	}

	.mvl-landing-page .review-marquee-card.is-centered {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1.035);
	}

	.mvl-landing-page .why-section:not(.is-mobile-animation-ready) .section-header .eyebrow,
	.mvl-landing-page .why-section:not(.is-mobile-animation-ready) .section-header h2,
	.mvl-landing-page .why-section:not(.is-mobile-animation-ready) .section-header p:not(.eyebrow),
	.mvl-landing-page .why-section:not(.is-mobile-animation-ready) .story-point,
	.mvl-landing-page .why-section:not(.is-mobile-animation-ready) .story-visual,
	.mvl-landing-page .why-section:not(.is-mobile-animation-ready) .story-card {
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .section-header .eyebrow,
	.mvl-landing-page .why-section.is-mobile-animation-ready .section-header h2,
	.mvl-landing-page .why-section.is-mobile-animation-ready .section-header p:not(.eyebrow),
	.mvl-landing-page .why-section.is-mobile-animation-ready .story-point,
	.mvl-landing-page .why-section.is-mobile-animation-ready .story-visual,
	.mvl-landing-page .why-section.is-mobile-animation-ready .story-card {
		opacity: 0;
		visibility: visible;
		will-change: opacity, transform;
		transition-property: opacity, transform;
		transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .section-header .eyebrow {
		transform: translate3d(0, 22px, 0);
		transition-duration: 750ms;
		transition-delay: 0ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .section-header h2 {
		transform: translate3d(-38px, 20px, 0);
		transition-duration: 1050ms;
		transition-delay: 130ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .section-header p:not(.eyebrow) {
		transform: translate3d(0, 28px, 0);
		transition-duration: 950ms;
		transition-delay: 320ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .story-point {
		transform: translate3d(0, 26px, 0);
		transition-duration: 900ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .story-point:nth-child(1) {
		transition-delay: 500ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .story-point:nth-child(2) {
		transition-delay: 680ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .story-point:nth-child(3) {
		transition-delay: 860ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .story-visual {
		transform: translate3d(0, 46px, 0) scale(1.04);
		transition-duration: 1200ms;
		transition-delay: 980ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready .story-card {
		transform: translate3d(0, 22px, 0);
		transition-duration: 750ms;
		transition-delay: 1120ms;
	}

	.mvl-landing-page .why-section.is-mobile-animation-ready.is-mobile-visible .section-header .eyebrow,
	.mvl-landing-page .why-section.is-mobile-animation-ready.is-mobile-visible .section-header h2,
	.mvl-landing-page .why-section.is-mobile-animation-ready.is-mobile-visible .section-header p:not(.eyebrow),
	.mvl-landing-page .why-section.is-mobile-animation-ready.is-mobile-visible .story-point,
	.mvl-landing-page .why-section.is-mobile-animation-ready.is-mobile-visible .story-visual,
	.mvl-landing-page .why-section.is-mobile-animation-ready.is-mobile-visible .story-card,
	.mvl-landing-page .why-section.is-mobile-reveal-complete .section-header .eyebrow,
	.mvl-landing-page .why-section.is-mobile-reveal-complete .section-header h2,
	.mvl-landing-page .why-section.is-mobile-reveal-complete .section-header p:not(.eyebrow),
	.mvl-landing-page .why-section.is-mobile-reveal-complete .story-point,
	.mvl-landing-page .why-section.is-mobile-reveal-complete .story-visual,
	.mvl-landing-page .why-section.is-mobile-reveal-complete .story-card {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}

	.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header .gallery-eyebrow,
	.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header h2,
	.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header p {
		transform: translateY(22px);
	}

	.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header h2 {
		transform: translateY(32px);
	}

	.mvl-landing-page .gallery-section.is-gallery-ready .gallery-header p {
		transform: translateY(26px);
	}

	.mvl-landing-page .gallery-section.is-gallery-ready .gallery-slider-wrap,
	.mvl-landing-page .gallery-section.is-gallery-ready .reviews-slider-wrap {
		transform: translateY(42px);
	}

	.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header .gallery-eyebrow {
		animation-name: mvl-gallery-mobile-reveal-eyebrow;
		animation-duration: 750ms;
		animation-delay: 0ms;
	}

	.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header h2 {
		animation-name: mvl-gallery-mobile-reveal-title;
		animation-duration: 1050ms;
		animation-delay: 140ms;
	}

	.mvl-landing-page .gallery-section.is-gallery-visible .gallery-header p {
		animation-name: mvl-gallery-mobile-reveal-copy;
		animation-duration: 950ms;
		animation-delay: 340ms;
	}

	.mvl-landing-page .gallery-section.is-gallery-visible .gallery-slider-wrap {
		animation-name: mvl-gallery-mobile-reveal-slider;
		animation-duration: 1150ms;
		animation-delay: 580ms;
	}

	.mvl-landing-page .gallery-section.is-gallery-visible .reviews-slider-wrap {
		animation-name: mvl-gallery-mobile-reveal-slider;
		animation-duration: 1150ms;
		animation-delay: 850ms;
	}

	.mvl-landing-page .itinerary-section {
		padding-block: 72px 76px;
	}

	.mvl-landing-page .itinerary-intro h2 {
		font-size: clamp(2.05rem, 9.2vw, 2.65rem);
		line-height: 1.02;
	}

	.mvl-landing-page .itinerary-intro > p:not(.eyebrow) {
		margin-top: 0.92rem;
		font-size: 0.96rem;
		line-height: 1.65;
	}

	.mvl-landing-page .itinerary-list {
		gap: 1rem;
		margin-top: 1.65rem;
	}

	.mvl-landing-page .itinerary-panel {
		min-height: clamp(390px, 106vw, 430px);
		align-items: flex-end;
		border-radius: 24px;
	}

	.mvl-landing-page .itinerary-panel-expandable {
		height: clamp(390px, 106vw, 430px);
		min-height: 0;
	}

	.mvl-landing-page .itinerary-panel-expandable.is-itinerary-expanded {
		height: auto;
		min-height: clamp(390px, 106vw, 430px);
	}

	.mvl-landing-page .itinerary-bg {
		background-image: var(--itinerary-mobile-bg);
		background-position: var(--itinerary-mobile-position, center);
	}

	.mvl-landing-page .itinerary-panel::before,
	.mvl-landing-page .itinerary-panel-right::before {
		background:
			linear-gradient(180deg, rgba(6, 26, 47, 0.02) 0%, rgba(6, 26, 47, 0.14) 38%, rgba(6, 26, 47, 0.78) 100%),
			linear-gradient(90deg, rgba(6, 26, 47, 0.24), rgba(6, 26, 47, 0.04));
	}

	.mvl-landing-page .itinerary-panel-content {
		width: calc(100% - 2rem);
		margin: 1rem;
	}

	.mvl-landing-page .itinerary-panel-content h3 {
		margin-top: 0.72rem;
		font-size: clamp(2rem, 9vw, 2.55rem);
		line-height: 1.02;
	}

	.mvl-landing-page .itinerary-panel-expandable .itinerary-panel-content h3 {
		max-width: 20rem;
		font-size: clamp(1.72rem, 7.4vw, 2.18rem);
		line-height: 1.08;
	}

	.mvl-landing-page .itinerary-panel-content p {
		margin-top: 0.72rem;
		font-size: clamp(0.94rem, 4vw, 1rem);
		line-height: 1.55;
	}

	.mvl-landing-page .day-badge {
		font-size: 0.68rem;
		padding: 0.42rem 0.68rem;
	}

	.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro .eyebrow {
		transform: translateY(22px);
	}

	.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro h2 {
		transform: translateY(32px);
	}

	.mvl-landing-page .itinerary-section.is-itinerary-animation-ready .itinerary-intro > p:not(.eyebrow) {
		transform: translateY(26px);
	}

	.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro .eyebrow,
	.mvl-landing-page .itinerary-intro.is-visible .eyebrow {
		animation-name: mvl-itinerary-mobile-header-eyebrow-in;
		animation-duration: 750ms;
		animation-delay: 0ms;
	}

	.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro h2,
	.mvl-landing-page .itinerary-intro.is-visible h2 {
		animation-name: mvl-itinerary-mobile-header-title-in;
		animation-duration: 1050ms;
		animation-delay: 140ms;
	}

	.mvl-landing-page .itinerary-section.is-itinerary-visible .itinerary-intro > p:not(.eyebrow),
	.mvl-landing-page .itinerary-intro.is-visible > p:not(.eyebrow) {
		animation-name: mvl-itinerary-mobile-header-copy-in;
		animation-duration: 950ms;
		animation-delay: 340ms;
	}

	.mvl-landing-page .included-section {
		padding-block: 72px 78px;
	}

	.mvl-landing-page .included-shell {
		width: min(100% - 38px, 1180px);
		gap: 2.3rem;
	}

	.mvl-landing-page .included-heading h2 {
		font-size: clamp(2.2rem, 10vw, 2.7rem);
		line-height: 1.02;
	}

	.mvl-landing-page .included-comparison {
		gap: 1.375rem;
	}

	.mvl-landing-page .included-card {
		width: 100%;
		border-radius: 24px;
		padding: 1.5rem;
	}

	.mvl-landing-page .included-card-header h3 {
		font-size: 1.55rem;
	}

	.mvl-landing-page .included-list li,
	.mvl-landing-page .not-included-list li {
		gap: 0.85rem;
		padding-block: 1rem;
		font-size: 1rem;
	}

	.mvl-landing-page .included-row-icon,
	.mvl-landing-page .not-included-row-icon {
		width: 40px;
		height: 40px;
		flex-basis: 40px;
	}

	.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="primary"],
	.mvl-landing-page .included-section.is-included-animation-ready [data-included-card="secondary"] {
		transform: translate3d(0, 22px, 0) scale(0.985);
	}

	.mvl-landing-page .lead-section {
		padding-block: 72px 78px;
	}

	.mvl-landing-page .lead-shell {
		width: min(100% - 38px, 1160px);
		gap: 2rem;
	}

	.mvl-landing-page .lead-section-heading h2 {
		font-size: clamp(2.12rem, 9.2vw, 2.72rem);
		line-height: 1.02;
	}

	.mvl-landing-page .lead-investment-card {
		border-radius: 24px;
		padding: 1.45rem;
	}

	.mvl-landing-page .lead-price-main strong {
		font-size: clamp(2rem, 9vw, 2.35rem);
	}

	.mvl-landing-page .lead-price-main span {
		font-size: clamp(0.94rem, 4vw, 1rem);
	}

	.mvl-landing-page .lead-price-list {
		gap: 0.72rem;
	}

	.mvl-landing-page .lead-price-list p {
		font-size: 0.94rem;
	}

	.mvl-landing-page .lead-open-modal-button {
		width: 100%;
	}

	.mvl-landing-page .faq-section {
		padding-block: 72px 76px;
	}

	body.mvl-admin-bar-visible .mvl-landing-page .faq-section {
		scroll-margin-top: 130px;
	}

	.mvl-landing-page .faq-shell {
		width: min(100% - 38px, 980px);
		gap: 1.85rem;
	}

	.mvl-landing-page .faq-heading h2 {
		font-size: clamp(2.05rem, 9.2vw, 2.68rem);
		line-height: 1.02;
	}

	.mvl-landing-page .faq-heading > p:last-child {
		font-size: 0.97rem;
		line-height: 1.65;
	}

	.mvl-landing-page .faq-item {
		border-radius: 17px;
	}

	.mvl-landing-page .faq-question {
		min-height: 66px;
		gap: 0.82rem;
		padding: 1rem 0.9rem 1rem 1rem;
		font-size: 1rem;
	}

	.mvl-landing-page .faq-arrow {
		width: 36px;
		height: 36px;
	}

	.mvl-landing-page .faq-answer p {
		font-size: 0.98rem;
		line-height: 1.68;
		padding: 0.05rem 1rem 1.1rem;
	}

	.mvl-landing-page .footer {
		padding-block: 64px 28px;
	}

	.mvl-landing-page .footer-shell {
		width: min(100% - 40px, 1220px);
		gap: 2.15rem;
	}

	.mvl-landing-page .footer-grid {
		gap: 2.45rem;
	}

	.mvl-landing-page .footer-brand-column p {
		font-size: 1rem;
	}

	.mvl-landing-page .footer-cta {
		width: 100%;
	}

	.mvl-landing-page .footer-contact-row {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 0.82rem;
	}

	.mvl-landing-page .footer-icon {
		width: 46px;
		height: 46px;
		flex-shrink: 0;
	}

	.mvl-landing-page .footer-bottom {
		display: grid;
		align-items: start;
		justify-content: stretch;
		gap: 1rem;
		padding-top: 1.35rem;
	}

	.mvl-landing-page .footer-legal {
		display: grid;
		gap: 0.55rem;
	}

	.mvl-landing-page .lead-form {
		gap: 1.1rem;
	}

	.mvl-landing-page .lead-field-row {
		gap: 1.1rem;
	}

	.mvl-landing-page .lead-form .form-field input,
	.mvl-landing-page .lead-form .form-field select {
		height: 54px;
	}

	.mvl-landing-page .lead-form .form-field textarea {
		min-height: 128px;
	}

	.mvl-landing-page .lead-modal {
		align-items: center;
		padding: 0.75rem;
	}

	body.mvl-admin-bar-visible .mvl-landing-page .lead-modal {
		top: 46px;
	}

	.mvl-landing-page .lead-modal-panel {
		width: min(100%, calc(100vw - 1.5rem));
		max-height: calc(100dvh - 1.5rem);
		border-radius: 22px;
		padding: 1.25rem;
	}

	.mvl-landing-page .lead-modal-panel::before {
		margin: -1.25rem -1.25rem 0;
	}

	.mvl-landing-page .lead-modal-header {
		margin: 1rem 0 1rem;
		padding: 0 0 0.95rem;
	}

	.mvl-landing-page .lead-modal-header h3 {
		font-size: clamp(1.42rem, 7vw, 1.72rem);
	}

	.mvl-landing-page .lead-modal-header p {
		font-size: 0.92rem;
	}

	.mvl-landing-page .lead-modal-body .lead-form .form-field input,
	.mvl-landing-page .lead-modal-body .lead-form .form-field select {
		height: 52px;
	}

	.mvl-landing-page .lead-modal-body .lead-form .form-field textarea {
		min-height: 122px;
	}

	.mvl-landing-page .lead-modal-panel-success {
		width: min(100%, calc(100vw - 1.5rem));
	}

	.mvl-landing-page .lead-modal-panel-success .lead-modal-header {
		margin-bottom: 0.55rem;
	}

	.mvl-landing-page .lead-success-card {
		border-radius: 20px;
		padding: 1.2rem;
	}

	.mvl-landing-page .lead-success-icon {
		width: 56px;
		height: 56px;
		margin-bottom: 0.68rem;
	}

	.mvl-landing-page .lead-success-icon svg {
		width: 28px;
		height: 28px;
	}

	.mvl-landing-page .lead-success-card h3 {
		font-size: clamp(1.42rem, 6.4vw, 1.72rem);
		line-height: 1.1;
	}

	.mvl-landing-page .lead-success-message {
		margin-top: 0.68rem;
		font-size: 0.92rem;
		line-height: 1.58;
	}

	.mvl-landing-page .lead-success-steps {
		margin-top: 0.92rem;
		border-radius: 16px;
		padding: 0.86rem;
	}

	.mvl-landing-page .lead-success-steps li {
		grid-template-columns: 26px minmax(0, 1fr);
		gap: 0.58rem;
	}

	.mvl-landing-page .lead-success-steps li span {
		width: 26px;
		height: 26px;
	}

	.mvl-landing-page .lead-success-steps li p {
		font-size: 0.88rem;
	}

	.mvl-landing-page .lead-success-reassurance {
		margin-top: 0.8rem;
		font-size: 0.84rem;
	}

	.mvl-landing-page .lead-success-actions {
		grid-template-columns: 1fr;
		gap: 0.58rem;
		margin-top: 0.92rem;
	}

	.mvl-landing-page .lead-success-whatsapp,
	.mvl-landing-page .lead-success-secondary {
		width: 100%;
		min-height: 50px;
	}
}

@media (min-width: 768px) {
	.mvl-landing-page .lead-field-row-two {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.mvl-landing-page .lead-field-row-three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 768px) {
	.mvl-landing-page .footer-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr) minmax(230px, 0.75fr);
	}
}

@media (min-width: 1024px) {
	.mvl-landing-page .desktop-nav {
		display: flex;
	}

	.mvl-landing-page .mobile-menu {
		display: none;
	}

	.mvl-landing-page .why-shell {
		grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
	}

	.mvl-landing-page .story-visual:hover .story-image {
		transform: scale(1.015);
	}

	.mvl-landing-page .included-card {
		padding: 2.5rem;
	}

	.mvl-landing-page .lead-investment-card {
		grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
		gap: clamp(2rem, 4vw, 3rem);
	}

	.mvl-landing-page .lead-card-action {
		grid-column: 1 / -1;
	}
}

@media (min-width: 1024px) and (max-height: 850px) {
	.mvl-landing-page .hero {
		min-height: 100svh;
	}

	.mvl-landing-page .hero-content {
		padding-top: clamp(5.4rem, 10vh, 6.5rem);
		padding-bottom: clamp(2rem, 5vh, 2.8rem);
	}

	.mvl-landing-page .hero h1 {
		max-width: 900px;
		margin-top: 0.62rem;
		font-size: clamp(2.75rem, 4.7vw, 4.65rem);
		line-height: 0.92;
	}

	.mvl-landing-page .hero-subtitle {
		margin-top: 0.8rem;
		line-height: 1.48;
	}

	.mvl-landing-page .hero-price {
		margin-top: 0.72rem;
	}

	.mvl-landing-page .hero-actions {
		gap: 0.72rem;
		margin-top: 0.95rem;
	}

	.mvl-landing-page .hero-badges {
		gap: 0.55rem;
		margin-top: 0.82rem;
	}

	.mvl-landing-page .hero-badges span {
		padding: 0.5rem 0.72rem;
	}
}

@media (max-width: 782px) {
	body.mvl-admin-bar-visible .mvl-landing-page .site-header {
		top: 46px;
	}
}

@media (min-width: 783px) {
	body.mvl-admin-bar-visible .mvl-landing-page .site-header {
		top: 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mvl-landing-page .site-header,
	.mvl-landing-page .button,
	.mvl-landing-page .button-ghost,
	.mvl-landing-page .desktop-nav a::after {
		transition: none;
	}

	.mvl-landing-page .hero .eyebrow,
	.mvl-landing-page .hero h1,
	.mvl-landing-page .hero-subtitle,
	.mvl-landing-page .hero-price,
	.mvl-landing-page .hero-actions .button,
	.mvl-landing-page .hero-actions .button-ghost,
	.mvl-landing-page .hero-badges {
		opacity: 1 !important;
		animation: none !important;
		transform: none !important;
	}

	.mvl-landing-page .why-section .section-header .eyebrow,
	.mvl-landing-page .why-section .section-header h2,
	.mvl-landing-page .why-section .section-header p:not(.eyebrow),
	.mvl-landing-page .story-point,
	.mvl-landing-page .story-visual,
	.mvl-landing-page .story-card {
		opacity: 1 !important;
		animation: none !important;
		transform: none !important;
		transition: none !important;
	}

	.mvl-landing-page .gallery-header .gallery-eyebrow,
	.mvl-landing-page .gallery-header h2,
	.mvl-landing-page .gallery-header p,
	.mvl-landing-page .gallery-slider-wrap,
	.mvl-landing-page .reviews-slider-wrap {
		opacity: 1 !important;
		animation: none !important;
		transform: none !important;
	}

	.mvl-landing-page .gallery-slider,
	.mvl-landing-page .reviews-marquee {
		overflow-x: auto;
		overscroll-behavior-inline: contain;
	}

	.mvl-landing-page .gallery-track,
	.mvl-landing-page .reviews-track {
		animation: none !important;
		padding-inline: 1rem;
	}

	.mvl-landing-page .review-marquee-card,
	.mvl-landing-page .review-marquee-card.is-centered {
		opacity: 1 !important;
		transform: none !important;
	}

	.mvl-landing-page .itinerary-intro .eyebrow,
	.mvl-landing-page .itinerary-intro h2,
	.mvl-landing-page .itinerary-intro > p,
	.mvl-landing-page .itinerary-panel,
	.mvl-landing-page .itinerary-panel .day-badge,
	.mvl-landing-page .itinerary-panel h3,
	.mvl-landing-page .itinerary-panel p,
	.mvl-landing-page .itinerary-panel [data-itinerary-description],
	.mvl-landing-page .itinerary-panel [data-itinerary-chips],
	.mvl-landing-page .itinerary-bg {
		opacity: 1 !important;
		animation: none !important;
		transform: none !important;
	}

	.mvl-landing-page .itinerary-panel-expandable,
	.mvl-landing-page .itinerary-extra,
	.mvl-landing-page .itinerary-read-more,
	.mvl-landing-page .itinerary-read-more-chevron {
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
	}

	.mvl-landing-page .included-section *,
	.mvl-landing-page .included-section *::before,
	.mvl-landing-page .included-section *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
		animation-duration: 0.01ms !important;
		animation-delay: 0ms !important;
	}

	.mvl-landing-page .included-section [data-included-eyebrow],
	.mvl-landing-page .included-section [data-included-title],
	.mvl-landing-page .included-section .included-heading > p:last-child,
	.mvl-landing-page .included-section [data-included-card],
	.mvl-landing-page .included-section [data-included-row] {
		opacity: 1 !important;
		transform: none !important;
	}

	.mvl-landing-page .lead-section *,
	.mvl-landing-page .lead-section *::before,
	.mvl-landing-page .lead-section *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
		animation-duration: 0.01ms !important;
		animation-delay: 0ms !important;
	}

	.mvl-landing-page .lead-section [data-lead-eyebrow],
	.mvl-landing-page .lead-section [data-lead-title],
	.mvl-landing-page .lead-section [data-lead-description],
	.mvl-landing-page .lead-section [data-lead-card],
	.mvl-landing-page .lead-section [data-lead-price],
	.mvl-landing-page .lead-section [data-lead-highlight],
	.mvl-landing-page .lead-section [data-lead-cta] {
		opacity: 1 !important;
		transform: none !important;
	}

	.mvl-landing-page .faq-section *,
	.mvl-landing-page .faq-section *::before,
	.mvl-landing-page .faq-section *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		transition-delay: 0ms !important;
		animation-duration: 0.01ms !important;
		animation-delay: 0ms !important;
	}

	.mvl-landing-page .faq-section [data-faq-eyebrow],
	.mvl-landing-page .faq-section [data-faq-title],
	.mvl-landing-page .faq-section [data-faq-description],
	.mvl-landing-page .faq-section [data-faq-item] {
		opacity: 1 !important;
		transform: none !important;
	}

	.mvl-landing-page .faq-answer,
	.mvl-landing-page .faq-arrow,
	.mvl-landing-page .floating-whatsapp-button {
		transition: none !important;
	}

	.mvl-landing-page .footer [data-footer-column],
	.mvl-landing-page .footer [data-footer-bottom] {
		opacity: 1 !important;
		transform: none !important;
	}

	.mvl-landing-page .lead-modal,
	.mvl-landing-page .lead-modal-backdrop,
	.mvl-landing-page .lead-modal-panel,
	.mvl-landing-page .lead-form *,
	.mvl-landing-page .lead-form *::before,
	.mvl-landing-page .lead-form *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
