/**
 * Copyright (c) 2026 PageLyft LLC. All rights reserved.
 *
 * This file is part of PageLyft Elementor Widgets.
 * Unauthorized copying, modification, distribution, or use of this file,
 * via any medium, is strictly prohibited. This software is proprietary
 * and confidential.
 */

.pagelyft-button {
	display: flex;
	align-items: center;
	min-width: 0;
	text-decoration: none;
	transition-property: color, background-color, border-color, box-shadow;
	transition-duration: 300ms;
	transition-timing-function: ease;
	box-sizing: border-box;
	cursor: pointer;
	overflow: hidden;
}

.pagelyft-button__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}

.pagelyft-button__icon {
	display: inline-flex;
}

.pagelyft-button__icon svg {
	transition-property: fill, stroke;
	transition-duration: 300ms;
	transition-timing-function: ease;
}

.pagelyft-button__icon i {
	transition-property: color;
	transition-duration: 300ms;
	transition-timing-function: ease;
}


/* ── Dropdown Button ── */

.pagelyft-dropdown-button {
	display: block;
	position: relative;
}

.pagelyft-dropdown-button__trigger {
	display: flex;
	width: 100%;
	min-width: 0;
	align-items: center;
	text-decoration: none;
	transition-property: color, background-color, border-color, box-shadow;
	transition-duration: 300ms;
	transition-timing-function: ease;
	box-sizing: border-box;
	cursor: pointer;
	border: none;
	font-family: inherit;
	touch-action: manipulation;
}

.pagelyft-dropdown-button__text {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	min-width: 0;
}

.pagelyft-dropdown-button__icon {
	display: inline-flex;
}

.pagelyft-dropdown-button__icon svg {
	transition-property: fill, stroke;
	transition-duration: 300ms;
	transition-timing-function: ease;
}

.pagelyft-dropdown-button__icon i {
	transition-property: color;
	transition-duration: 300ms;
	transition-timing-function: ease;
}

.pagelyft-dropdown-button__arrow {
	display: inline-flex;
	align-items: center;
	transition: transform 300ms ease;
}

.pagelyft-dropdown-button__arrow svg {
	transition-property: fill, stroke;
	transition-duration: 300ms;
	transition-timing-function: ease;
}

.pagelyft-dropdown-button--open .pagelyft-dropdown-button__arrow {
	transform: rotate( 180deg );
}

/* Dropdown panel */
.pagelyft-dropdown-button__dropdown {
	position: absolute;
	z-index: 100;
	top: 100%;
	visibility: hidden;
	opacity: 0;
	transform: translateY( -4px );
	transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
	min-width: 100%;
	box-sizing: border-box;
}

.pagelyft-dropdown-button--open .pagelyft-dropdown-button__dropdown {
	visibility: visible;
	opacity: 1;
	transform: translateY( 0 );
}

/* Dropdown position */
.pagelyft-dropdown--position-left .pagelyft-dropdown-button__dropdown {
	left: 0;
}

.pagelyft-dropdown--position-center .pagelyft-dropdown-button__dropdown {
	left: 50%;
	transform: translateX( -50% ) translateY( -4px );
}

.pagelyft-dropdown--position-center .pagelyft-dropdown-button--open .pagelyft-dropdown-button__dropdown {
	transform: translateX( -50% ) translateY( 0 );
}

.pagelyft-dropdown--position-right .pagelyft-dropdown-button__dropdown {
	right: 0;
}

/* Items container */
.pagelyft-dropdown-button__items {
	display: flex;
	flex-direction: column;
}

/* Item */
.pagelyft-dropdown-button__item {
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: color 200ms ease, background-color 200ms ease, opacity 200ms ease;
	box-sizing: border-box;
	cursor: pointer;
}

.pagelyft-dropdown-button__item--icon-after {
	justify-content: space-between;
}

.pagelyft-dropdown-button__item-icon {
	/* inline-block (not inline-flex) so position:absolute children work in all Safari versions */
	display: inline-block;
	position: relative;
	vertical-align: middle;
}

.pagelyft-dropdown-button__item-icon svg {
	-webkit-transition-property: fill, stroke;
	transition-property: fill, stroke;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.pagelyft-dropdown-button__item-icon i {
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.pagelyft-dropdown-button__item-icon-normal,
.pagelyft-dropdown-button__item-icon-hover {
	display: -webkit-inline-flex;
	display: inline-flex;
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-duration: 200ms;
	transition-duration: 200ms;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.pagelyft-dropdown-button__item-icon-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.pagelyft-dropdown-button__item:hover .pagelyft-dropdown-button__item-icon-normal {
	opacity: 0;
}

.pagelyft-dropdown-button__item:hover .pagelyft-dropdown-button__item-icon-hover {
	opacity: 1;
}


/* ── Menu ── */

.pagelyft-menu {
	position: relative;
}

.pagelyft-menu__nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pagelyft-menu--layout-vertical .pagelyft-menu__nav {
	flex-direction: column;
}

.pagelyft-menu__li {
	position: relative;
	list-style: none;
}

.pagelyft-menu__item {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: color var(--pagelyft-menu-main-animation-duration, 300ms) ease;
}

.pagelyft-menu__item-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
	isolation: isolate;
}

.pagelyft-menu--main-divider-yes .pagelyft-menu > .pagelyft-menu__nav > .pagelyft-menu__li:not(:last-child)::after {
	content: '';
	position: absolute;
	pointer-events: none;
	background-color: currentColor;
	opacity: 0.2;
}

.pagelyft-menu--main-divider-yes .pagelyft-menu.pagelyft-menu--layout-horizontal > .pagelyft-menu__nav > .pagelyft-menu__li:not(:last-child)::after {
	top: 50%;
	right: 0;
	width: 1px;
	height: 1em;
	transform: translateY( -50% );
}

.pagelyft-menu--main-divider-yes .pagelyft-menu.pagelyft-menu--layout-vertical > .pagelyft-menu__nav > .pagelyft-menu__li:not(:last-child)::after {
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
}

.pagelyft-menu__pointer {
	position: absolute;
	pointer-events: none;
	opacity: 0;
	transition-property: opacity, transform;
	transition-duration: var(--pagelyft-menu-main-animation-duration, 300ms);
	transition-timing-function: ease;
	z-index: 0;
}

.pagelyft-menu__pointer::before,
.pagelyft-menu__pointer::after {
	content: '';
	position: absolute;
	pointer-events: none;
}

.pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu__item-wrap > .pagelyft-menu__submenu-indicator {
	position: relative;
	z-index: 1;
}

.pagelyft-menu > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	opacity: 1;
}

.pagelyft-menu.pagelyft-menu--pointer-underline > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	left: 0;
	right: 0;
	bottom: 0;
	height: var(--pagelyft-pointer-width, 3px);
	background-color: var(--pagelyft-pointer-color, currentColor);
}

.pagelyft-menu.pagelyft-menu--pointer-overline > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	left: 0;
	right: 0;
	top: 0;
	height: var(--pagelyft-pointer-width, 3px);
	background-color: var(--pagelyft-pointer-color, currentColor);
}


/* ── Accordion ── */

.pagelyft-accordion {
	display: block;
}

.pagelyft-accordion__item {
	display: block;
	cursor: pointer;
}

button.pagelyft-accordion__header,
button.pagelyft-accordion__header:hover,
button.pagelyft-accordion__header:focus,
button.pagelyft-accordion__header:active {
	all: unset;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	width: 100%;
	box-sizing: border-box;
	text-align: inherit;
}

.pagelyft-accordion__title {
	flex: 1 1 auto;
	min-width: 0;
}

.pagelyft-accordion--icon-left .pagelyft-accordion__header {
	justify-content: flex-start;
}

.pagelyft-accordion--icon-right .pagelyft-accordion__header {
	justify-content: flex-start;
}

.pagelyft-accordion--icon-right .pagelyft-accordion__icon {
	margin-left: auto;
}

.pagelyft-accordion__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pagelyft-accordion__icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.pagelyft-accordion__body {
	overflow: hidden;
	cursor: default;
}

.pagelyft-accordion__body-inner > :first-child {
	margin-top: 0;
}

.pagelyft-accordion__body-inner > :last-child {
	margin-bottom: 0;
}


.pagelyft-menu.pagelyft-menu--pointer-double-line > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	inset: 0;
}

.pagelyft-menu.pagelyft-menu--pointer-double-line > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer::before,
.pagelyft-menu.pagelyft-menu--pointer-double-line > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer::after {
	left: 0;
	right: 0;
	height: var(--pagelyft-pointer-width, 3px);
	background-color: var(--pagelyft-pointer-color, currentColor);
}

.pagelyft-menu.pagelyft-menu--pointer-double-line > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer::before {
	top: 0;
}

.pagelyft-menu.pagelyft-menu--pointer-double-line > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer::after {
	bottom: 0;
}

.pagelyft-menu.pagelyft-menu--pointer-framed > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	inset: 0;
	border: var(--pagelyft-pointer-width, 2px) solid var(--pagelyft-pointer-color, currentColor);
}

.pagelyft-menu.pagelyft-menu--pointer-background > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	inset: 0;
	background-color: var(--pagelyft-pointer-color, rgba(255, 255, 255, 0.1));
}

.pagelyft-menu.pagelyft-menu--animation-none > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transition: none;
}

.pagelyft-menu.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleX(0);
	transform-origin: left center;
	opacity: 1;
}

.pagelyft-menu.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleX(1);
}

.pagelyft-menu.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleX(0);
	transform-origin: center center;
	opacity: 1;
}

.pagelyft-menu.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleX(1);
}

.pagelyft-menu.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleY(0);
	transform-origin: center top;
	opacity: 1;
}

.pagelyft-menu.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleY(1);
}

.pagelyft-menu.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleY(0);
	transform-origin: center bottom;
	opacity: 1;
}

.pagelyft-menu.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer,
.pagelyft-menu.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__pointer {
	transform: scaleY(1);
}

.pagelyft-menu__submenu-indicator {
	display: inline-flex;
	cursor: pointer;
}

/* Desktop submenus */
.pagelyft-menu__li > .pagelyft-menu__dropdown {
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	display: flex;
	flex-direction: column;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY( 8px );
	transition-property: opacity, transform, visibility;
	transition-duration: var(--pagelyft-menu-dropdown-animation-duration, 300ms), var(--pagelyft-menu-dropdown-animation-duration, 300ms), 0s;
	transition-timing-function: ease, ease, linear;
	transition-delay: 0s, 0s, var(--pagelyft-menu-dropdown-animation-duration, 300ms);
}

.pagelyft-menu__li:hover > .pagelyft-menu__dropdown,
.pagelyft-menu__li:focus-within > .pagelyft-menu__dropdown,
.pagelyft-menu__li--hover > .pagelyft-menu__dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY( 0 );
	transition-delay: 0s, 0s, 0s;
}

/* Invisible bridge to keep hover when there's distance from menu */
.pagelyft-menu__li > .pagelyft-menu__dropdown::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
	width: 100%;
	height: 0;
}

.pagelyft-menu__dropdown li {
	list-style: none;
}

.pagelyft-menu__dropdown a {
	display: block;
	text-decoration: none;
	color: inherit;
	transition-property: color, background-color;
	transition-duration: var(--pagelyft-menu-dropdown-animation-duration, 300ms);
	transition-timing-function: ease;
}

.pagelyft-menu--pointer-text > .pagelyft-menu__nav > .pagelyft-menu__li > .pagelyft-menu__item-wrap > .pagelyft-menu__item {
	transition: color var(--pagelyft-menu-main-animation-duration, 300ms) ease, opacity var(--pagelyft-menu-main-animation-duration, 300ms) ease, transform var(--pagelyft-menu-main-animation-duration, 300ms) ease;
}

.pagelyft-menu--pointer-text.pagelyft-menu--animation-fade > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-fade > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-fade > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-fade > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__item {
	opacity: 0.75;
}

.pagelyft-menu--pointer-text.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-slide > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__item {
	transform: translateX( 4px );
}

.pagelyft-menu--pointer-text.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-grow > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__item {
	transform: scale( 1.08 );
}

.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-in > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__item {
	transform: translateY( -4px );
}

.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .pagelyft-menu__li:hover > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .current-menu-item > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .current-menu-parent > .pagelyft-menu__item-wrap > .pagelyft-menu__item,
.pagelyft-menu--pointer-text.pagelyft-menu--animation-drop-out > .pagelyft-menu__nav > .current-menu-ancestor > .pagelyft-menu__item-wrap > .pagelyft-menu__item {
	transform: translateY( 4px );
}

/* Toggle button */
.pagelyft-menu__toggle-wrap {
	display: none;
}

.pagelyft-menu__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0 !important;
	font-size: inherit;
	color: inherit;
	line-height: 1;
	box-sizing: border-box;
}

.pagelyft-menu__toggle-icon--active {
	display: none;
}

.pagelyft-menu__toggle-icon--hover {
	display: none;
}

.pagelyft-menu__toggle:hover .pagelyft-menu__toggle-icon--hover {
	display: inline-flex;
}

.pagelyft-menu__toggle:hover .pagelyft-menu__toggle-icon--normal {
	display: none;
}

.pagelyft-menu.pagelyft-menu--open .pagelyft-menu__toggle:hover .pagelyft-menu__toggle-icon--hover {
	display: none;
}

.pagelyft-menu--open .pagelyft-menu__toggle-icon--normal {
	display: none;
}

.pagelyft-menu--open .pagelyft-menu__toggle-icon--active {
	display: inline-flex;
}

.pagelyft-menu--toggle-hamburger .pagelyft-menu .pagelyft-menu__toggle-icon--active,
.pagelyft-menu--toggle-hamburger .pagelyft-menu.pagelyft-menu--open .pagelyft-menu__toggle-icon--active {
	display: none;
}

.pagelyft-menu--toggle-hamburger .pagelyft-menu.pagelyft-menu--open .pagelyft-menu__toggle-icon--normal {
	display: inline-flex;
}

/* Mobile dropdown (default, no template) */
.pagelyft-menu > .pagelyft-menu__dropdown {
	display: block;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY( -8px );
	transition-property: max-height, opacity, transform, visibility;
	transition-duration: var(--pagelyft-menu-dropdown-animation-duration, 300ms), var(--pagelyft-menu-dropdown-animation-duration, 300ms), var(--pagelyft-menu-dropdown-animation-duration, 300ms), 0s;
	transition-timing-function: ease, ease, ease, linear;
	transition-delay: 0s, 0s, 0s, var(--pagelyft-menu-dropdown-animation-duration, 300ms);
}

.pagelyft-menu--full-width-yes .pagelyft-menu > .pagelyft-menu__dropdown {
	width: 100%;
}

.pagelyft-menu--text-align-center .pagelyft-menu > .pagelyft-menu__dropdown,
.pagelyft-menu--text-align-center .pagelyft-menu > .pagelyft-menu__dropdown a {
	text-align: center;
}

/* Mobile overlay + slide panel */
.pagelyft-menu__overlay {
	position: fixed;
	inset: 0;
	z-index: 999;
	opacity: 0;
	pointer-events: none;
	transition: opacity var(--pagelyft-menu-dropdown-animation-duration, 300ms) ease;
}

.pagelyft-menu__mobile-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 1000;
	overflow-y: auto;
	transform: translateX( -100% );
	transition: transform var(--pagelyft-menu-dropdown-animation-duration, 300ms) ease;
	box-sizing: border-box;
}

.pagelyft-menu--slide-right .pagelyft-menu__mobile-panel {
	right: 0;
	left: auto;
	transform: translateX( 100% );
}

.pagelyft-menu--slide-left .pagelyft-menu__mobile-panel {
	left: 0;
}

.pagelyft-menu--panel-full-height-yes .pagelyft-menu__mobile-panel {
	height: 100dvh;
}

.pagelyft-menu--panel-full-height-yes .pagelyft-menu__mobile-panel-content {
	min-height: 100%;
}

/* ── Mobile breakpoint states ── */

/* Tablet breakpoint: hide nav & show toggle at <= 1024px */
@media ( max-width: 1024px ) {
	.pagelyft-menu--breakpoint-tablet .pagelyft-menu__nav {
		display: none;
	}

	.pagelyft-menu--breakpoint-tablet .pagelyft-menu__toggle-wrap {
		display: flex;
	}

	.pagelyft-menu--breakpoint-tablet .pagelyft-menu__overlay {
		display: block;
	}

	.pagelyft-menu--breakpoint-tablet.pagelyft-menu--open > .pagelyft-menu__dropdown {
		max-height: 9999px;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY( 0 );
		transition-delay: 0s, 0s, 0s, 0s;
	}

	.pagelyft-menu--breakpoint-tablet.pagelyft-menu--open .pagelyft-menu__overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.pagelyft-menu--breakpoint-tablet.pagelyft-menu--open .pagelyft-menu__mobile-panel {
		transform: translateX( 0 );
	}
}

/* Mobile breakpoint: hide nav & show toggle at <= 767px */
@media ( max-width: 767px ) {
	.pagelyft-menu--breakpoint-mobile .pagelyft-menu__nav {
		display: none;
	}

	.pagelyft-menu--breakpoint-mobile .pagelyft-menu__toggle-wrap {
		display: flex;
	}

	.pagelyft-menu--breakpoint-mobile .pagelyft-menu__overlay {
		display: block;
	}

	.pagelyft-menu--breakpoint-mobile.pagelyft-menu--open > .pagelyft-menu__dropdown {
		max-height: 9999px;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY( 0 );
		transition-delay: 0s, 0s, 0s, 0s;
	}

	.pagelyft-menu--breakpoint-mobile.pagelyft-menu--open .pagelyft-menu__overlay {
		opacity: 1;
		pointer-events: auto;
	}

	.pagelyft-menu--breakpoint-mobile.pagelyft-menu--open .pagelyft-menu__mobile-panel {
		transform: translateX( 0 );
	}
}

/* Full-width dropdown */
.pagelyft-menu__dropdown-list {
	list-style: none;
	margin: 0;
	padding: 0;
}


/* ── Simple Menu ── */

.pagelyft-smenu__nav {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pagelyft-smenu--vertical .pagelyft-smenu__nav {
	flex-direction: column;
}

.pagelyft-smenu__li {
	position: relative;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.pagelyft-smenu__li > .pagelyft-smenu__link {
	flex: 0 1 auto;
}

.pagelyft-smenu__li > .pagelyft-smenu__dropdown {
	flex-basis: 100%;
}

.pagelyft-smenu__link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition-property: color, background-color;
	transition-duration: 300ms;
	transition-timing-function: ease;
	box-sizing: border-box;
	white-space: nowrap;
}

.pagelyft-smenu__caret {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	transition: transform 300ms ease;
}

.pagelyft-smenu__caret svg {
	transition: fill 300ms ease;
}

.pagelyft-smenu__caret i {
	transition: color 300ms ease;
}

/* Submenu dropdowns */
.pagelyft-smenu__li > .pagelyft-smenu__dropdown {
	position: absolute;
	z-index: 100;
	top: 100%;
	left: 0;
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	min-width: 200px;
	box-sizing: border-box;
	transition-property: opacity, transform;
	transition-timing-function: ease;
}

.pagelyft-smenu__li--open > .pagelyft-smenu__dropdown {
	display: flex;
	flex-direction: column;
}

/* Vertical layout: submenus push content down */
.pagelyft-smenu--vertical .pagelyft-smenu__li > .pagelyft-smenu__dropdown {
	position: relative;
	top: auto;
	left: auto;
	width: 100%;
}

/* Nested submenus open to the right (horizontal only) */
.pagelyft-smenu__dropdown .pagelyft-smenu__li > .pagelyft-smenu__dropdown {
	top: 0;
	left: 100%;
}

.pagelyft-smenu--vertical .pagelyft-smenu__dropdown .pagelyft-smenu__li > .pagelyft-smenu__dropdown {
	top: auto;
	left: auto;
}

.pagelyft-smenu__dropdown li {
	list-style: none;
}

.pagelyft-smenu__dropdown a {
	display: block;
	text-decoration: none;
	color: inherit;
	transition-property: color, background-color;
	transition-timing-function: ease;
	box-sizing: border-box;
}


/* ── Lyve Carousel ── */

.lyve-carousel {
	--slide-spacing: 0;
	--slide-size: 70%;
	width: 100%;
}

@media (min-width: 768px) {
	.lyve-carousel {
		--slide-size: calc(100% / 3.5);
	}
}

.lyve-carousel__viewport {
	overflow: hidden;
}

.lyve-carousel__container {
	display: flex;
	touch-action: pan-y pinch-zoom;
	margin-left: calc(var(--slide-spacing) * -1);
}

.lyve-carousel__slide {
	flex: 0 0 var(--slide-size);
	min-width: 0;
	padding-left: var(--slide-spacing);
}

/* Card */

.lyve-carousel__card {
	width: 100%;
	aspect-ratio: 426 / 558;
	border-radius: 30px;
	overflow: hidden;
	position: relative;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	backface-visibility: hidden;
}

.lyve-carousel__card:active {
	cursor: grabbing;
}

.lyve-carousel__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

.lyve-carousel__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.2) 0%,
		rgba(0, 0, 0, 0) 23.21%,
		rgba(0, 0, 0, 0.3) 54.67%,
		rgb(0, 0, 0) 100%
	);
	pointer-events: none;
}

/* Info bar */

.lyve-carousel__info {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	height: 88px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0;
	pointer-events: none;
	overflow: hidden;
}

.lyve-carousel__icon-wrap {
	position: relative;
	aspect-ratio: 1 / 1;
	align-self: stretch;
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	flex-shrink: 0;
}

.lyve-carousel__title {
	font-family: "Halyard Display", "DM Sans", system-ui, sans-serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 1;
	color: #ffffff;
	letter-spacing: 0;
	padding: 20px;
}

.lyve-carousel__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	border-top-left-radius: 0 !important;
	border-top-right-radius: 0 !important;
	border-bottom-left-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

/* ── Logo Carousel ── */

.pagelyft-logo-carousel {
	--pagelyft-logo-carousel-gap: 48px;
	--pagelyft-logo-carousel-fade-width: 10%;
	--pagelyft-logo-carousel-fade-color: #ffffff;
	position: relative;
	width: 100%;
}

.pagelyft-logo-carousel::before,
.pagelyft-logo-carousel::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: var(--pagelyft-logo-carousel-fade-width);
	pointer-events: none;
	opacity: 0;
	transition: opacity 200ms ease;
}

.pagelyft-logo-carousel::before {
	left: 0;
	background: linear-gradient(90deg, var(--pagelyft-logo-carousel-fade-color) 0%, rgba(255, 255, 255, 0) 100%);
}

.pagelyft-logo-carousel::after {
	right: 0;
	background: linear-gradient(270deg, var(--pagelyft-logo-carousel-fade-color) 0%, rgba(255, 255, 255, 0) 100%);
}

.pagelyft-logo-carousel--fade-yes::before,
.pagelyft-logo-carousel--fade-yes::after {
	opacity: 1;
}

.pagelyft-logo-carousel__viewport {
	overflow: hidden;
}

.pagelyft-logo-carousel__container {
	display: flex;
	align-items: center;
	touch-action: pan-y pinch-zoom;
	gap: var(--pagelyft-logo-carousel-gap);
}

.pagelyft-logo-carousel__slide {
	flex: 0 0 auto;
	min-width: 0;
}

.pagelyft-logo-carousel__logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pagelyft-logo-carousel__image {
	display: block;
	height: 48px;
	width: auto;
	max-width: 100%;
	border-radius: 0 !important;
	object-fit: contain;
	user-select: none;
	-webkit-user-drag: none;
}

/* ─── Scroll Navigation Widget ──────────────────────────────────────────── */

.pagelyft-scroll-nav {
	display: block;
}

.pagelyft-scroll-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

.pagelyft-scroll-nav__item {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.pagelyft-scroll-nav__indicator {
	height: 1px;
	background-color: #E69E95;
	flex-shrink: 0;
	width: 0;
	margin-right: 0;
	transition: width 300ms ease, margin-right 300ms ease;
}

.pagelyft-scroll-nav__link {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	touch-action: manipulation;
	transition: color 200ms ease;
}

/* ─── How It Works Widget ──────────────────────────────────────────────── */

.pagelyft-how-it-works {
	--hiw-surface: #fbf3e4;
	--hiw-ink: #262626;
	--hiw-copy: #434749;
	--hiw-rail-active: #024144;
	--hiw-rail-muted: #cfc7ba;
	--hiw-tag-bg: #ded7ca;
	--hiw-rail-thickness: 4px;
	--hiw-marker-size: 13px;
	--hiw-rail-column-width: 136px;
	--hiw-rail-height: min(76vh, 720px);
	--hiw-step-gap: clamp(108px, 11vw, 168px);
	--hiw-copy-width: 315px;
	--hiw-title-width: 426px;
	--hiw-media-width: 538px;
	--hiw-media-height: 412px;
	--hiw-track-top: 0px;
	--hiw-track-height: 100%;
	position: relative;
	width: 100%;
	padding: clamp(8px, 2vw, 24px) 0;
	color: var(--hiw-ink);
}

.pagelyft-how-it-works__inner {
	position: relative;
	max-width: 1360px;
	margin: 0 auto;
	padding: 0;
}

.pagelyft-how-it-works__timeline-shell {
	position: relative;
}

.pagelyft-how-it-works__timeline-track {
	position: absolute;
	top: var(--hiw-track-top);
	height: var(--hiw-track-height);
	left: 50%;
	width: var(--hiw-rail-column-width);
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 3;
}

.pagelyft-how-it-works__timeline-sticky {
	position: relative;
	width: 100%;
	height: 100%;
}

.pagelyft-how-it-works__pill,
.pagelyft-how-it-works__rail-pill,
.pagelyft-how-it-works__step-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	font-family: "Basic Sans", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 14px;
	white-space: nowrap;
}

.pagelyft-how-it-works__pill,
.pagelyft-how-it-works__rail-pill {
	padding: 12px 20px;
	border: 1px solid var(--hiw-rail-muted);
	border-radius: 999px;
	background: var(--hiw-surface);
	color: var(--hiw-rail-active);
}

.pagelyft-how-it-works__pill--start {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 4;
}

.pagelyft-how-it-works__rail {
	position: relative;
	width: 100%;
	height: 100%;
}

.pagelyft-how-it-works__rail-base,
.pagelyft-how-it-works__rail-progress {
	position: absolute;
	top: 0;
	left: 50%;
	width: var(--hiw-rail-thickness);
	height: 100%;
	border-radius: 999px;
	transform: translateX(-50%);
}

.pagelyft-how-it-works__rail-base {
	background-image: repeating-linear-gradient(
		to bottom,
		var(--hiw-rail-muted) 0 10px,
		transparent 10px 18px
	);
	background-repeat: repeat-y;
}

.pagelyft-how-it-works__rail-progress {
	background: var(--hiw-rail-active);
	transform: translateX(-50%) scaleY(0);
	transform-origin: top center;
}

.pagelyft-how-it-works__marker {
	position: absolute;
	top: calc(var(--hiw-marker-progress) * 100%);
	left: 50%;
	width: var(--hiw-marker-size);
	height: var(--hiw-marker-size);
	border-radius: 4px;
	background: var(--hiw-rail-muted);
	transform: translateX(-60%);
	transition: background-color 220ms ease;
	z-index: 2;
}

.pagelyft-how-it-works__marker.is-active {
	background: var(--hiw-rail-active);
}

.pagelyft-how-it-works__rail-pill {
	position: absolute;
	top: calc(var(--hiw-rail-pill-pos, 0.835) * 100%);
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
}

.pagelyft-how-it-works__steps {
	display: grid;
	gap: var(--hiw-step-gap);
}

.pagelyft-how-it-works__step {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--hiw-rail-column-width) minmax(0, 1fr);
	align-items: center;
	min-height: max(var(--hiw-media-height), 420px);
	transition: opacity 220ms ease;
	opacity: 0.42;
}

.pagelyft-how-it-works__step.is-reached {
	opacity: 1;
}

.pagelyft-how-it-works__step-content,
.pagelyft-how-it-works__media {
	grid-row: 1;
	min-width: 0;
}

.pagelyft-how-it-works__step-content {
	grid-column: 1;
	width: min(100%, var(--hiw-title-width));
	justify-self: start;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-left: var(--hiw-content-edge-offset, 0px);
}

.pagelyft-how-it-works__step--reverse .pagelyft-how-it-works__step-content {
	grid-column: 3;
	justify-self: end;
	margin-left: 0;
	margin-right: var(--hiw-content-edge-offset, 0px);
}

.pagelyft-how-it-works__step-label {
	padding: 6px 8px 8px;
	margin-bottom: 16px;
	border: 0;
	border-radius: 8px;
	background: var(--hiw-tag-bg);
	color: var(--hiw-ink);
}

.pagelyft-how-it-works__step-title {
	margin: 0 0 12px;
	width: min(100%, var(--hiw-title-width));
	font-family: "Halyard Display", sans-serif;
	font-size: clamp(40px, 4vw, 52px);
	font-style: normal;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.04em;
	color: var(--hiw-ink);
	text-wrap: balance;
}

.pagelyft-how-it-works__step-body,
.pagelyft-how-it-works__step-body p {
	margin: 0;
	width: min(100%, var(--hiw-copy-width));
	font-family: "Basic Sans", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	color: var(--hiw-copy);
}

.pagelyft-how-it-works__step-body > :first-child {
	margin-top: 0;
}

.pagelyft-how-it-works__step-body > :last-child {
	margin-bottom: 0;
}

.pagelyft-how-it-works__media {
	grid-column: 3;
	justify-self: end;
	position: relative;
	width: min(100%, var(--hiw-media-width));
	min-height: var(--hiw-media-height);
	margin: 0;
	border-radius: 30px;
	overflow: hidden;
	background: transparent;
}

.pagelyft-how-it-works__step--reverse .pagelyft-how-it-works__media {
	grid-column: 1;
	justify-self: start;
}

.pagelyft-how-it-works__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: var(--hiw-media-height);
	object-fit: cover;
}

.pagelyft-how-it-works__image--mobile {
	display: none;
}

.pagelyft-how-it-works__art {
	position: absolute;
	inset: 0;
	overflow: hidden;
	border-radius: inherit;
}

.pagelyft-how-it-works__art--discover {
	background: var(--hiw-rail-active);
}

.pagelyft-how-it-works__discover-map,
.pagelyft-how-it-works__connect-background,
.pagelyft-how-it-works__bonus-background {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.pagelyft-how-it-works__discover-map {
	background-image: url("../img/how-it-works/step-1-map-lines.svg");
	opacity: 0.75;
	mix-blend-mode: screen;
}

.pagelyft-how-it-works__discover-map::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 56% 66%, rgba(173, 142, 255, 0.35) 0, rgba(173, 142, 255, 0.1) 12%, transparent 13%),
		radial-gradient(circle at 56% 66%, rgba(173, 142, 255, 0.16) 0, rgba(173, 142, 255, 0.08) 20%, transparent 22%);
}

.pagelyft-how-it-works__device {
	position: absolute;
	z-index: 2;
}

.pagelyft-how-it-works__discover-device {
	bottom: -168px;
	left: 57%;
	width: min(53%, 286px);
	transform: translateX(-50%);
}

.pagelyft-how-it-works__connect-device {
	bottom: -168px;
	left: 25%;
	width: min(53%, 286px);
	transform: translateX(-50%);
}

.pagelyft-how-it-works__device-shell {
	position: relative;
	width: 100%;
	aspect-ratio: 285.892 / 580.581;
	padding: 12px;
	border-radius: 46px;
	background: linear-gradient(180deg, #515868 0%, #2b3037 100%);
	border: 1px solid #303640;
	box-shadow:
		0 24px 48px rgba(11, 16, 22, 0.24),
		inset 0 0 0 2px rgba(113, 121, 137, 0.55),
		inset 0 0 0 6px rgba(100, 100, 100, 0.2);
}

.pagelyft-how-it-works__device-shell::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 13px;
	width: 114px;
	height: 4px;
	border-radius: 999px;
	background: rgba(38, 38, 38, 0.35);
	transform: translateX(-50%);
}

.pagelyft-how-it-works__device-screen {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 36px;
	overflow: hidden;
	background: #fff;
}

.pagelyft-how-it-works__art--discover .pagelyft-how-it-works__device-screen::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(2, 65, 68, 0.58);
}

.pagelyft-how-it-works__connect-device .pagelyft-how-it-works__device-screen img {
	object-position: center top;
}

.pagelyft-how-it-works__device-island {
	position: absolute;
	top: 14px;
	left: 50%;
	width: 82px;
	height: 24px;
	border-radius: 999px;
	background: #262626;
	transform: translateX(-50%);
	box-shadow: inset 0 0 0 1px rgba(14, 14, 14, 0.7);
	z-index: 3;
}

.pagelyft-how-it-works__map-pin {
	position: absolute;
	width: 68px;
	height: 68px;
	z-index: 4;
}

.pagelyft-how-it-works__map-pin img {
	display: block;
	width: 100%;
	height: 100%;
}

.pagelyft-how-it-works__map-avatar {
	position: absolute;
	top: 8px;
	left: 15px;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	overflow: hidden;
}

.pagelyft-how-it-works__map-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pagelyft-how-it-works__map-pin--one {
	top: 26%;
	left: 2%;
}

.pagelyft-how-it-works__map-pin--two {
	top: 10%;
	right: 4%;
}

.pagelyft-how-it-works__map-pin--three {
	top: 52%;
	right: 4%;
}

.pagelyft-how-it-works__map-pin--four {
	left: 59%;
	bottom: 9%;
}

.pagelyft-how-it-works__art--connect {
	background: #ded7ca;
}

.pagelyft-how-it-works__connect-background {
	background-image: url("../img/how-it-works/step-2-background.svg");
	background-position: center;
	background-size: cover;
	opacity: 0.72;
}

.pagelyft-how-it-works__art--bonus {
	background: var(--hiw-rail-active);
}

.pagelyft-how-it-works__bonus-background {
	background-image: url("../img/how-it-works/bonus-background.svg");
	background-position: center;
	background-size: cover;
	opacity: 0.7;
}

.pagelyft-how-it-works__bonus-device {
	bottom: -176px;
	left: 43%;
	width: min(53%, 286px);
	transform: translateX(-50%);
}

.pagelyft-how-it-works__bonus-device .pagelyft-how-it-works__device-screen img {
	object-position: center top;
}

@media (max-width: 1199px) {
	.pagelyft-how-it-works__step {
		grid-template-columns: minmax(0, 1fr) 112px minmax(0, 1fr);
		column-gap: 8px;
	}

	.pagelyft-how-it-works__timeline-track {
		width: 112px;
	}
}

@media (max-width: 1024px) {
	.pagelyft-how-it-works {
		--hiw-title-width: 100%;
		--hiw-copy-width: 100%;
	}

	.pagelyft-how-it-works__step {
		grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
		align-items: start;
	}

	.pagelyft-how-it-works__timeline-track {
		width: 96px;
	}

	.pagelyft-how-it-works__media {
		width: min(100%, 480px);
	}
}

@media (max-width: 767px) {
	.pagelyft-how-it-works {
		padding: 0;
	}

	.pagelyft-how-it-works__timeline-track {
		display: none;
	}

	.pagelyft-how-it-works__steps {
		gap: 56px;
	}

	.pagelyft-how-it-works__step,
	.pagelyft-how-it-works__step--reverse {
		display: flex;
		flex-direction: column;
		gap: 24px;
		min-height: 0;
		opacity: 1;
		transition: none;
	}

	.pagelyft-how-it-works__step-content,
	.pagelyft-how-it-works__step--reverse .pagelyft-how-it-works__step-content {
		width: 100%;
		justify-self: stretch;
	}

	.pagelyft-how-it-works__step-label {
		margin-bottom: 20px;
	}

	.pagelyft-how-it-works__step-title {
		margin-bottom: 12px;
		font-size: 32px;
		line-height: 32px;
	}

	.pagelyft-how-it-works__step-body,
	.pagelyft-how-it-works__step-body p {
		font-size: 14px;
		line-height: 20px;
	}

	.pagelyft-how-it-works__media,
	.pagelyft-how-it-works__step--reverse .pagelyft-how-it-works__media {
		grid-column: unset;
		width: 100%;
		min-height: 260px;
		border-radius: 24px;
	}

	.pagelyft-how-it-works__art {
		border-radius: 24px;
	}

	.pagelyft-how-it-works__image {
		min-height: 260px;
	}

	.pagelyft-how-it-works__device-shell {
		border-radius: 34px;
	}

	.pagelyft-how-it-works__device-screen {
		border-radius: 26px;
	}

	.pagelyft-how-it-works__discover-device {
		left: 54%;
		bottom: -116px;
		width: min(58%, 250px);
	}

	.pagelyft-how-it-works__connect-device {
		left: 27%;
		bottom: -124px;
		width: min(58%, 250px);
	}

	.pagelyft-how-it-works__bonus-device {
		left: 45%;
		bottom: -124px;
		width: min(58%, 250px);
	}

	.pagelyft-how-it-works__map-pin {
		width: 58px;
		height: 58px;
	}

	.pagelyft-how-it-works__map-avatar {
		top: 7px;
		left: 13px;
		width: 33px;
		height: 33px;
	}

	.pagelyft-how-it-works__map-pin--one {
		left: 4%;
	}

	.pagelyft-how-it-works__map-pin--two,
	.pagelyft-how-it-works__map-pin--three {
		right: 2%;
	}

	.pagelyft-how-it-works__image--desktop,
	.pagelyft-how-it-works__media--has-mobile-override .pagelyft-how-it-works__art {
		display: none;
	}

	.pagelyft-how-it-works__image--mobile {
		display: block;
	}
}
