@font-face {
	font-family: "LMC Montserrat";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/montserrat.woff2") format("woff2");
}

:root {
	--lmc-blue: #4399d4;
	--lmc-blue-dark: #1771c1;
	--lmc-blue-light: #91d3f0;
	--lmc-blue-bright: #12a5ff;
	--lmc-blue-sky: #4fc1f7;
	--lmc-blue-border: #2d71b9;
	--lmc-navy: #001a30;
	--lmc-navy-panel: #02327d;
	--lmc-slate: #757d8a;
	--lmc-slate-light: #8b9ab0;
	--lmc-ink: #333;
	--lmc-hero-ink: #777778;
	--lmc-device-icon: #e3e3e8;
	--lmc-wash: #f7f7f7;
	--lmc-white: #fff;

	--lmc-shell: 1170px;
	--lmc-gutter: 15px;
	--lmc-nav-h: 78px;
	--lmc-ease: .1s ease-in;
	--lmc-font: "LMC Montserrat", "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

body.lmc-page {
	margin: 0;
	padding: 0;
	font-family: var(--lmc-font);
	font-size: 14px;
	line-height: 1.42857143;
	color: var(--lmc-ink);
	background: var(--lmc-white);
	-webkit-font-smoothing: antialiased;
}

body.lmc-page.is-locked {
	overflow: hidden;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
}

a {
	color: var(--lmc-blue);
	text-decoration: none;
	transition: color var(--lmc-ease);
}

a:hover,
a:focus {
	color: var(--lmc-blue-dark);
}

h1,
h2,
h3,
h4 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2;
}

p {
	margin: 0 0 1em;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

button {
	font: inherit;
	color: inherit;
	cursor: pointer;
}

:focus-visible {
	outline: 3px solid var(--lmc-blue-sky);
	outline-offset: 2px;
}

.lmc-shell {
	width: 100%;
	max-width: var(--lmc-shell);
	margin: 0 auto;
	padding: 0 var(--lmc-gutter);
}

.lmc-icon {
	width: 1em;
	height: 1em;
	fill: currentColor;
	flex: none;
}

.lmc-sprite {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
}

.lmc-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.lmc-skip {
	position: absolute;
	top: -100px;
	left: var(--lmc-gutter);
	z-index: 200;
	padding: 10px 18px;
	background: var(--lmc-blue);
	color: var(--lmc-white);
	border-radius: 0 0 5px 5px;
	transition: top var(--lmc-ease);
}

.lmc-skip:focus {
	top: 0;
	color: var(--lmc-white);
}

/* ---------------------------------------------------------------- buttons */

.lmc-btn {
	display: inline-block;
	height: 55px;
	padding: 15px;
	border: 0;
	border-radius: 5px;
	background: var(--lmc-blue);
	color: var(--lmc-white);
	font-family: var(--lmc-font);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-transform: uppercase;
	text-align: center;
	transition: background var(--lmc-ease), color var(--lmc-ease);
}

.lmc-btn:hover,
.lmc-btn:focus,
.lmc-btn:active {
	background: var(--lmc-blue-light);
	color: var(--lmc-white);
}

.lmc-btn--ghost {
	height: auto;
	padding: 6px 14px;
	background: transparent;
	border: 1px solid var(--lmc-blue-border);
	border-radius: 8px;
	color: var(--lmc-blue);
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
}

.lmc-btn--ghost:hover,
.lmc-btn--ghost:focus {
	background: var(--lmc-blue-light);
	border-color: var(--lmc-blue-light);
	color: var(--lmc-white);
}

.lmc-btn--block {
	display: block;
	width: 100%;
}

/* ------------------------------------------------------------------- nav */

.lmc-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background: var(--lmc-white);
}

.lmc-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: var(--lmc-nav-h);
}

.lmc-nav__brand {
	display: block;
	flex: none;
	padding: 10px 0 0;
	line-height: 0;
}

.lmc-nav__brand img {
	width: auto;
	height: 40px;
	max-width: 100%;
}

.lmc-nav__list {
	display: flex;
	align-items: center;
}

.lmc-nav__link {
	display: block;
	padding: 30px 15px;
	color: var(--lmc-blue);
	font-size: 13px;
	line-height: 1.42857143;
	transition: color var(--lmc-ease);
}

.lmc-nav__link:hover,
.lmc-nav__link:focus {
	color: var(--lmc-blue);
	text-decoration: underline;
}

.lmc-nav__item.is-current .lmc-nav__link {
	opacity: .4;
	text-decoration: none;
}

.lmc-nav__cta {
	margin-left: 6px;
}

.lmc-nav__toggle {
	display: none;
	flex: none;
	width: 44px;
	height: 44px;
	padding: 11px 9px;
	background: transparent;
	border: 0;
}

.lmc-nav__bar {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--lmc-blue);
}

.lmc-nav__bar + .lmc-nav__bar {
	margin-top: 6px;
}

/* -------------------------------------------------------------- overlay menu */

.lmc-menu {
	position: fixed;
	inset: 0;
	z-index: 120;
	display: none;
	padding: 20px var(--lmc-gutter);
	background: rgba(0, 26, 48, .97);
	color: var(--lmc-white);
	overflow-y: auto;
}

.lmc-menu.is-open {
	display: block;
}

.lmc-menu__close {
	display: block;
	margin-left: auto;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 0;
	color: var(--lmc-white);
}

.lmc-menu__close .lmc-icon {
	width: 100%;
	height: 100%;
}

.lmc-menu__list {
	max-width: 320px;
	margin: 8vh auto 0;
	text-align: center;
}

.lmc-menu__item + .lmc-menu__item {
	margin-top: 22px;
}

.lmc-menu__link {
	display: inline-block;
	color: var(--lmc-white);
	font-size: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.lmc-menu__link:hover,
.lmc-menu__link:focus {
	color: var(--lmc-blue-sky);
}

/* ------------------------------------------------------------------ hero */

.lmc-hero {
	position: relative;
	margin-top: var(--lmc-nav-h);
	padding: 80px 0 55px;
	background-color: #dff1f2;
	background-image: url("../images/header_bg/spring2026-1.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* Scrim over the hero photo. Deliberately ::before, not ::after: the shell that
   holds the partner form must not carry a z-index (see below), so with both the
   scrim and the shell at z-index: auto, paint order falls back to document
   order - and only a ::before precedes the shell. Do not add z-index here. */

.lmc-hero::before {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 60%;
	pointer-events: none;
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 26, 48, .85) 100%);
}

/* Do NOT add z-index here (or to .lmc-hero / .lmc-lead__row / -form-col /
   -form-card / -form-mount). The partner form is mounted in this subtree and
   opens its popups as position: fixed .omModal (z-index 1050), while it appends
   the dim overlay .omModal-backdrop (z-index 1040) to <body>. Any z-index on an
   ancestor of the mount makes a stacking context that traps the popup below the
   body-level overlay, and the overlay then eats every click (bank picker
   unusable). position: relative alone is safe - it stays z-index: auto. */

.lmc-hero > .lmc-shell {
	position: relative;
}

/* Safety net for the partner popups. Their overlay is decorative only - the
   dismiss-on-click-outside handler lives on .omModal, not on the backdrop - so
   making it click-through keeps the dimming while guaranteeing it can never
   swallow a click on the popup again, even if a stacking context creeps back
   into the hero. Do not replace this with display: none: that removes the dim. */

.omModal-backdrop {
	pointer-events: none;
}

/* hero copy: reference uses col-sm-6 col-md-offset-1 */

.lmc-hero__copy {
	position: relative;
	width: 50%;
	margin-left: 8.33333333%;
}

.lmc-hero__title {
	margin: 20px 0 0;
	color: var(--lmc-hero-ink);
	font-size: 30px;
	line-height: 1.1em;
	font-weight: 700;
	text-transform: uppercase;
}

.lmc-hero__accent {
	display: block;
	color: var(--lmc-blue-sky);
}

.lmc-hero__amount {
	display: block;
	color: var(--lmc-blue-sky);
	font-size: 120px;
	line-height: 1em;
	letter-spacing: -5px;
}

.lmc-hero__currency {
	position: relative;
	bottom: 10px;
	font-size: 95px;
}

.lmc-hero__upto {
	position: absolute;
	top: 85px;
	left: 18px;
	z-index: 90;
	color: var(--lmc-white);
	font-size: 18px;
	letter-spacing: 0;
}

.lmc-hero__soon {
	display: block;
	color: inherit;
	font-size: 30px;
}

/* hero lead form: reference uses col-md-10, centred */

.lmc-lead__row {
	width: 83.33333333%;
	margin: 20px auto 60px;
	text-align: center;
}

.lmc-lead__form-col {
	width: 100%;
}

.lmc-lead__form-card {
	margin-top: 50px;
	padding: 22px;
	background: var(--lmc-white);
	box-shadow: 0 1px #fff inset, 0 1px 5px rgba(34, 25, 25, .4);
}

.lmc-lead__form-mount {
	min-height: 120px;
}

/*
 * The embedded form's script sets an inline min-height sized for its tallest
 * step, leaving a large empty card on step one. !important is required to beat
 * that inline style; the form then sizes to its own content on every step.
 * Delete this rule if a step ever renders clipped.
 */
.lmc-lead__form-mount .omForm {
	min-height: 0 !important;
}

.lmc-lead__form-mount img {
	max-width: 100%;
	height: auto;
}

.lmc-lead__form-mount input,
.lmc-lead__form-mount select,
.lmc-lead__form-mount textarea,
.lmc-lead__form-mount button {
	max-width: 100%;
	font-family: inherit;
}

.lmc-lead__tcpa {
	margin: 20px 0 0;
	color: var(--lmc-white);
	font-size: 11px;
	line-height: 1.35em;
	text-align: left;
}

.lmc-lead__tcpa a {
	color: #95c5f7;
	text-decoration: underline;
}

/* ----------------------------------------------------------------- steps */

.lmc-steps {
	margin-bottom: 40px;
	padding: 45px 0 10px;
	text-align: center;
}

.lmc-steps__title {
	margin-bottom: 0;
	color: #000;
	font-size: 23px;
	line-height: 34px;
	text-transform: uppercase;
}

.lmc-steps__title span {
	color: var(--lmc-blue);
}

.lmc-steps__subtitle {
	width: 80%;
	margin: 0 auto;
	font-size: 14px;
}

.lmc-steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 35px;
}

.lmc-steps__icon {
	display: block;
	width: 55px;
	height: 51px;
	margin: 0 auto;
	object-fit: contain;
}

.lmc-steps__heading {
	margin: 20px 0 0;
	font-size: 14px;
	font-weight: 700;
}

.lmc-steps__text {
	width: 80%;
	margin: 0 auto;
	font-size: 14px;
}

/* ------------------------------------------------------------------- why */

.lmc-why {
	background: var(--lmc-slate);
	color: var(--lmc-white);
	overflow: hidden;
}

.lmc-why__stage {
	position: relative;
}

.lmc-why__device {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

.lmc-why__device--phone {
	top: -5px;
	left: 0;
	width: 18%;
}

.lmc-why__device--tablet {
	top: -5px;
	right: 0;
	width: 40%;
}

.lmc-why__device--laptop {
	bottom: 0;
	left: 50px;
	width: 40%;
}

.lmc-why__title,
.lmc-why__grid {
	position: relative;
	z-index: 1;
}

.lmc-why__title {
	margin-bottom: 20px;
	padding-top: 80px;
	color: var(--lmc-white);
	font-size: 24px;
	line-height: 34px;
	text-transform: uppercase;
	text-align: center;
}

.lmc-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
	margin: 0 auto;
	padding-bottom: 80px;
}

.lmc-why__item {
	display: flex;
	align-items: flex-start;
	padding: 0 var(--lmc-gutter);
}

.lmc-why__icon {
	flex: none;
	width: 16.66666667%;
	font-size: 35px;
	color: var(--lmc-device-icon);
}

.lmc-why__icon .lmc-icon {
	width: 35px;
	height: 35px;
}

.lmc-why__body {
	width: 83.33333333%;
	padding: 0 var(--lmc-gutter);
}

.lmc-why__heading {
	margin: 0;
	color: var(--lmc-white);
	font-size: 15px;
	font-weight: 700;
}

.lmc-why__text {
	margin: 0;
	color: var(--lmc-white);
	font-size: 13px;
}

/* ----------------------------------------------------------------- perks */

.lmc-perks {
	padding: 10px 0;
	background: var(--lmc-slate-light);
	color: #e2e4f1;
	text-align: center;
}

.lmc-perks__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.lmc-perks__item {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.lmc-perks__item .lmc-icon {
	width: 15px;
	height: 15px;
	margin-right: 6px;
}

/* ----------------------------------------------------------------- trust */

.lmc-trust {
	padding: 45px 0;
	background: var(--lmc-wash);
	text-align: center;
}

.lmc-trust__block + .lmc-trust__block {
	margin-top: 35px;
}

.lmc-trust__title {
	margin-bottom: 20px;
	color: #000;
	font-size: 21px;
	line-height: 25px;
	text-transform: uppercase;
}

.lmc-trust__title span {
	color: var(--lmc-blue);
}

.lmc-trust__text {
	width: 80%;
	margin: 0 auto 20px;
	font-size: 13px;
}

.lmc-trust__seal {
	width: 35%;
}

.lmc-trust__seal--ola {
	width: 75px;
	margin-top: 20px;
}

/* ------------------------------------------------------------------- cta */

.lmc-cta {
	position: relative;
	padding: 35px 0 50px;
	background-color: var(--lmc-navy);
	background-image: url("../images/cta-banner-03.jpg");
	background-repeat: repeat-x;
	background-position: center center;
	text-align: center;
}

.lmc-cta__title {
	margin-bottom: 20px;
	color: var(--lmc-white);
	font-size: 21px;
	line-height: 34px;
	text-transform: uppercase;
}

.lmc-cta__title span {
	color: var(--lmc-blue-bright);
}

.lmc-cta .lmc-btn {
	width: 20%;
	height: auto;
}

/* ---------------------------------------------------------------- footer */

.lmc-footer {
	padding: 25px 0 20px;
	background: var(--lmc-wash);
	font-size: 13px;
}

.lmc-footer__nav {
	padding-top: 10px;
	margin-bottom: 10px;
	text-align: center;
}

.lmc-footer__nav li {
	display: inline;
	padding: 0 5px;
	color: #3a3a3a;
	font-size: 11px;
	line-height: 22px;
}

.lmc-footer__nav a {
	color: var(--lmc-blue);
}

.lmc-footer__nav a:hover,
.lmc-footer__nav a:focus {
	color: var(--lmc-blue-dark);
	text-decoration: none;
}

.lmc-footer__legal {
	padding-top: 0;
	color: gray;
	font-size: 12px;
	line-height: 1.55em;
	font-weight: 400;
}

.lmc-footer__legal p + p {
	margin-top: 1em;
}

.lmc-footer__copy {
	margin: 10px 0 0;
	color: #3a3a3a;
	font-size: 11px;
	line-height: 22px;
	text-align: center;
}

/* ----------------------------------------------------------------- alert */

.lmc-alert {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	height: 35px;
	background: var(--lmc-blue);
	color: var(--lmc-white);
	font-size: 12px;
	line-height: 35px;
	text-align: center;
	box-shadow: 0 0 8px #2d2d2d;
}

.lmc-alert[hidden] {
	display: none;
}

.lmc-alert__inner {
	display: flex;
	align-items: center;
	height: 35px;
	padding-left: 25px;
}

.lmc-alert__dismiss {
	flex: none;
	width: 25px;
	height: 25px;
	padding: 5px;
	background: transparent;
	border: 0;
	border-radius: 50%;
	color: var(--lmc-white);
	transition: background var(--lmc-ease);
}

.lmc-alert__dismiss:hover {
	background: var(--lmc-blue-bright);
}

.lmc-alert__text {
	flex: 1 1 auto;
	margin: 0;
	font-size: 12px;
	line-height: 35px;
	text-align: center;
}

.lmc-alert__text strong {
	text-transform: uppercase;
}

.lmc-alert__text span {
	padding-left: 10px;
}

.lmc-alert__toggle {
	flex: none;
	display: inline-flex;
	align-items: center;
	padding: 0 25px;
	background: transparent;
	border: 0;
	color: var(--lmc-white);
	font-size: 12px;
	font-weight: 700;
	transition: opacity var(--lmc-ease);
}

.lmc-alert__toggle:hover {
	opacity: .6;
}

.lmc-alert__toggle .lmc-icon {
	width: 13px;
	height: 13px;
	margin-left: 8px;
}

.lmc-alert__toggle-label--short,
.lmc-alert__toggle-icon--short {
	display: none;
}

.lmc-alert-panel {
	position: fixed;
	left: 0;
	right: 0;
	bottom: -100%;
	z-index: 99;
	padding: 15px;
	font-size: 13px;
	line-height: 1.35em;
	transition: bottom .45s ease;
}

.lmc-alert-panel.is-open {
	bottom: 15px;
}

.lmc-alert-panel__inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 25px 35px;
	background: var(--lmc-navy-panel);
	color: var(--lmc-white);
	border-radius: 5px 5px 0 0;
	box-shadow: 0 0 10px #2d2d2d;
}

.lmc-alert-panel__title {
	margin: 0 0 12px;
	color: var(--lmc-white);
	font-size: 18px;
	font-weight: 700;
}

.lmc-alert-panel__title span {
	display: block;
	color: var(--lmc-blue-bright);
}

.lmc-alert-panel__close {
	display: block;
	margin: 5px 0 5px auto;
	padding: 4px 8px;
	background: transparent;
	border: 1px solid var(--lmc-white);
	color: var(--lmc-white);
	font-size: 12px;
	transition: opacity var(--lmc-ease);
}

.lmc-alert-panel__close:hover {
	opacity: .6;
}

/* ----------------------------------------------------------- breakpoints */

@media (max-width: 1240px) {
	.lmc-hero {
		padding-bottom: 10px;
	}
}

@media (max-width: 1670px) {
	.lmc-hero__amount {
		font-size: 120px;
		line-height: 12rem;
	}

	.lmc-hero__currency {
		font-size: 94px;
	}
}

@media (max-width: 1500px) {
	.lmc-hero__title {
		margin-top: 20px;
	}

	.lmc-hero__upto {
		top: 85px;
	}
}

@media (max-width: 991px) {
	.lmc-hero__copy {
		width: 100%;
		margin-left: 0;
	}

	.lmc-hero__title {
		margin-top: 50px;
		font-size: 25px;
		line-height: 1.2em;
	}

	.lmc-hero__amount {
		font-size: 100px;
		line-height: 1.1em;
	}

	.lmc-hero__currency {
		font-size: 77px;
	}

	.lmc-hero__soon {
		font-size: 25px;
	}

	.lmc-hero__upto {
		top: 78px;
		left: 14px;
		font-size: 16px;
	}

	.lmc-why__device {
		display: none;
	}
}

@media (max-width: 767px) {
	:root {
		--lmc-nav-h: 66px;
	}

	.lmc-nav__list,
	.lmc-nav__cta {
		display: none;
	}

	.lmc-nav__toggle {
		display: block;
	}

	.lmc-nav__brand img {
		width: auto;
		height: 26px;
	}

	.lmc-hero {
		padding: 0 35px 50px;
		background-image: url("../images/header_bg/spring2026-mob-1.jpg");
		background-color: #3f4a7d;
	}

	.lmc-hero__title {
		margin: 80px 0 0;
		font-size: 25px;
		line-height: 25px;
		text-align: center;
		color: var(--lmc-white);
	}

	.lmc-hero__accent {
		color: var(--lmc-blue-light);
	}

	.lmc-hero__amount {
		position: relative;
		font-size: 55px;
		line-height: 1.1em;
		color: var(--lmc-blue-light);
	}

	.lmc-hero__soon {
		font-size: 25px;
		color: var(--lmc-white);
	}

	.lmc-hero__upto {
		top: 6px;
		left: 1px;
	}

	.lmc-lead__row {
		width: 80%;
		margin: 20px auto 40px;
	}

	.lmc-lead__form-card {
		margin-top: 40px;
		box-shadow: none;
	}

	.lmc-lead__tcpa {
		text-align: center;
	}

	.lmc-steps__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lmc-why__grid {
		grid-template-columns: 1fr;
		gap: 26px;
	}

	.lmc-perks {
		display: none;
	}

	.lmc-trust__seal {
		width: 40%;
	}

	.lmc-cta .lmc-btn {
		width: 100%;
	}

	.lmc-alert__inner {
		padding-left: 15px;
	}

	.lmc-alert__text {
		display: none;
	}

	.lmc-alert__toggle {
		margin-left: auto;
	}

	.lmc-alert__toggle-label--long,
	.lmc-alert__toggle-icon--long {
		display: none;
	}

	.lmc-alert__toggle-label--short {
		display: inline;
	}

	.lmc-alert__toggle-icon--short {
		display: inline-block;
	}

	.lmc-alert-panel__inner {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.lmc-hero {
		padding: 0 15px 50px;
	}

	.lmc-hero__title {
		margin-top: 75px;
		font-size: 16px;
		line-height: 1.25em;
	}

	.lmc-hero__amount {
		font-size: 58px;
		letter-spacing: -1px;
	}

	.lmc-hero__currency {
		bottom: 3px;
		font-size: 51px;
	}

	.lmc-hero__soon {
		font-size: 15px;
	}

	.lmc-hero__upto {
		top: 3px;
		font-size: 10px;
	}

	.lmc-lead__row {
		width: 100%;
	}

	.lmc-lead__form-card {
		margin-top: 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
	}
}
