/* =========================================================
   login2.php — moderne layout + warme kleuren van de originele login
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,560;9..144,700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
	/* Zelfde warme tint als app + contentpagina's */
	--l2-ink: #1e1a17;
	--l2-deep: #1e1a17;
	--l2-mid: #2c2622;
	--l2-mint: #5cb85c;
	--l2-mint-deep: #449d44;
	--l2-foam: #f3f1ed;
	--l2-mist: #ebe8e3;
	--l2-text: #1e1a17;
	--l2-muted: #6a635c;
	--l2-line: #e6e2dc;
	--l2-glass: rgba(255, 255, 255, 0.96);
	--l2-radius: 1.25rem;
	--l2-font: "Outfit", system-ui, sans-serif;
	--l2-display: "Fraunces", Georgia, serif;
}

/* Pagina-shell: full-bleed, geen grijze balk/rand rond overlay */
html.l2-page,
html.l2-page body {
	margin: 0 !important;
	padding: 0 !important;
	background: var(--l2-ink) !important;
	overflow-x: hidden !important;
	max-width: 100%;
}
html.l2-page .wrapper,
html.l2-page .wrapper.bg-default,
body:has(#landing2) .wrapper.bg-default {
	background: var(--l2-ink) !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: 100vh;
	max-width: 100% !important;
	width: 100% !important;
	overflow-x: hidden !important;
}

#landing2.l2 {
	font-family: var(--l2-font);
	color: #fff;
	min-height: 100vh;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	box-sizing: border-box;
}
#landing2.l2 *,
#landing2.l2 *::before,
#landing2.l2 *::after {
	box-sizing: border-box;
}

#landing2 a {
	text-decoration: none;
}

/* ---- Motion ---- */
@keyframes l2-ken {
	0% { transform: scale(1.05) translate3d(0, 0, 0); }
	100% { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}
@keyframes l2-rise {
	from { transform: translateY(14px); }
	to { transform: none; }
}
@keyframes l2-pulse {
	0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(92, 184, 92, 0.55); }
	50% { transform: scale(1.05); opacity: 0.9; box-shadow: 0 0 0 10px rgba(92, 184, 92, 0); }
}

.l2-reveal {
	opacity: 1;
	transform: none;
}
.l2--ready .l2-reveal {
	animation: l2-rise 0.7s ease;
}
.l2--ready .l2-reveal--delay {
	animation-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
	.l2-hero__media,
	.l2-reveal,
	.l2--ready .l2-reveal {
		animation: none !important;
		opacity: 1;
		transform: none;
	}
}

/* ---- Buttons ---- */
.l2-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	border-radius: 999px;
	font-family: var(--l2-font);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1.2;
	padding: 0.7rem 1.35rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.l2-btn--lg {
	padding: 0.9rem 1.6rem;
	font-size: 1.05rem;
}

/* Google SSO */
.l2-btn--google,
.l2-btn--google:link,
.l2-btn--google:visited {
	background: #fff !important;
	border: 1px solid #dadce0 !important;
	color: #1f1f1f !important;
	font-weight: 600;
	width: 100%;
	transform: none;
}
.l2-btn--google:hover,
.l2-btn--google:focus {
	background: #f8f9fa !important;
	border-color: #c6c6c6 !important;
	color: #1f1f1f !important;
	transform: none;
}
.l2-google-icon {
	flex-shrink: 0;
}
.l2-sso {
	text-align: center;
	margin: 0 0 0.15rem;
}
.l2-sso-divider {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0.75rem 0 0.15rem;
	color: var(--l2-muted);
	font-size: 0.8rem;
	font-weight: 600;
}
.l2-sso-divider::before,
.l2-sso-divider::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(30, 26, 23, 0.14);
}
.l2-sso-divider span {
	white-space: nowrap;
}
.l2-sso-divider--modal {
	margin: 0.75rem 0 1rem;
}
.l2-register--google #regSsoGate {
	display: none;
}
.l2-register--google .l2-reg-passwords {
	display: none !important;
}
.l2-btn--google-block {
	margin: 0.15rem 0 0;
}
.l2-btn--solid,
.l2-btn--solid:link,
.l2-btn--solid:visited {
	background: var(--l2-mint) !important;
	border-color: var(--l2-mint) !important;
	color: #fff !important;
}
.l2-btn--solid:hover,
.l2-btn--solid:focus {
	background: var(--l2-mint-deep) !important;
	border-color: #419641 !important;
	color: #fff !important;
	transform: translateY(-1px);
}
.l2-btn--ghost,
.l2-btn--ghost:link,
.l2-btn--ghost:visited {
	background: transparent !important;
	border-color: rgba(255, 255, 255, 0.45) !important;
	color: #fff !important;
}
.l2-btn--ghost:hover,
.l2-btn--ghost:focus {
	border-color: #fff !important;
	background: rgba(255, 255, 255, 0.08) !important;
	color: #fff !important;
}

/* ---- Hero ---- */
.l2-hero {
	position: relative;
	min-height: 100vh;
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	isolation: isolate;
	overflow: hidden;
}
.l2-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: url('../images/bg02.jpg');
	background-size: cover;
	background-position: center;
	animation: l2-ken 28s ease-in-out alternate infinite;
	/* Schaal-animatie mag geen horizontale page-scroll veroorzaken */
	will-change: transform;
	transform-origin: center center;
}
@media (max-width: 767px) {
	.l2-hero__media {
		/* Geen horizontale translate op smalle schermen */
		animation: l2-ken-mobile 28s ease-in-out alternate infinite;
	}
}
@keyframes l2-ken-mobile {
	0% { transform: scale(1.06); }
	100% { transform: scale(1.12); }
}
.l2-hero__shade {
	position: absolute;
	inset: 0;
	z-index: -1;
	/* Warmere sluier — zelfde ink/mint als content */
	background:
		linear-gradient(115deg, rgba(30, 26, 23, 0.78) 0%, rgba(30, 26, 23, 0.58) 45%, rgba(30, 26, 23, 0.42) 100%),
		radial-gradient(ellipse 70% 55% at 85% 15%, rgba(92, 184, 92, 0.18), transparent 55%);
}

/* ---- Nav ---- */
.l2-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto;
	padding: 0.85rem 0 0.35rem;
	position: relative;
	z-index: 5;
}
.l2-nav__brand {
	display: inline-flex;
	align-items: center;
	color: #fff !important;
	font-family: var(--l2-font);
	font-weight: 700;
	font-size: 1.15rem;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-decoration: none !important;
}
.l2-nav__toggle {
	margin-left: auto;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	background: transparent;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}
.l2-nav__toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #fff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.l2-nav__toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.l2-nav__toggle.is-open span:nth-child(2) {
	opacity: 0;
}
.l2-nav__toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
.l2-nav__menu {
	display: none;
	width: 100%;
	flex-basis: 100%;
	padding: 0.5rem 0 0.75rem;
}
.l2-nav__menu.is-open {
	display: block;
}
.l2-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.l2-nav__list > li > a,
.l2-nav__parent {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0.7rem 0.35rem;
	color: #fff !important;
	background: transparent;
	border: 0;
	text-align: left;
	font-family: var(--l2-font);
	font-size: 0.95rem;
	cursor: pointer;
}
.l2-nav__dropdown {
	list-style: none;
	margin: 0 0 0.4rem;
	padding: 0 0 0 0.85rem;
	display: none;
}
.l2-nav__item--has-children.is-open > .l2-nav__dropdown {
	display: block;
}
.l2-nav__dropdown a {
	display: block;
	padding: 0.4rem 0.35rem;
	color: #dedede !important;
	font-size: 0.9rem;
}
.l2-nav__dropdown-heading {
	list-style: none;
	margin: 0.45rem 0 0.1rem;
	padding: 0.35rem 0.35rem 0.1rem;
	pointer-events: none;
}
.l2-nav__dropdown-heading span {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #9fd49f;
}
.l2-nav__dropdown-article > a {
	padding-left: 0.75rem;
}
.l2-nav__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-top: 0.75rem;
	margin-top: 0.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 992px) {
	.l2-nav__toggle {
		display: none;
	}
	.l2-nav__menu {
		display: flex !important;
		align-items: center;
		justify-content: flex-end;
		gap: 0.75rem;
		width: auto;
		flex: 1;
		flex-basis: auto;
		padding: 0;
	}
	.l2-nav__list {
		display: flex;
		align-items: center;
		gap: 0.15rem;
		margin-right: auto;
		margin-left: 1.25rem;
	}
	.l2-nav__list > li {
		position: relative;
	}
	.l2-nav__list > li > a,
	.l2-nav__parent {
		width: auto;
		padding: 0.5rem 0.75rem;
		border-radius: 999px;
	}
	.l2-nav__list > li > a:hover,
	.l2-nav__parent:hover {
		background: rgba(255, 255, 255, 0.1);
	}
	.l2-nav__dropdown {
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 220px;
		max-height: min(70vh, 440px);
		overflow-y: auto;
		background: #fff;
		border: 1px solid var(--l2-line);
		border-radius: 14px;
		box-shadow: 0 12px 28px rgba(30, 26, 23, 0.12);
		padding: 0.45rem;
		margin: 0;
		z-index: 40;
	}
	.l2-nav__dropdown--wide {
		min-width: 260px;
	}
	.l2-nav__item--has-children:hover > .l2-nav__dropdown,
	.l2-nav__item--has-children:focus-within > .l2-nav__dropdown,
	.l2-nav__item--has-children.is-open > .l2-nav__dropdown {
		display: block;
	}
	.l2-nav__dropdown a {
		color: var(--l2-text) !important;
		border-radius: 8px;
	}
	.l2-nav__dropdown a:hover {
		background: var(--l2-foam);
		color: var(--l2-mint-deep) !important;
	}
	.l2-nav__dropdown-heading span {
		color: var(--l2-mint-deep, #449d44);
	}
	.l2-nav__dropdown--wide {
		min-width: 280px;
		max-width: min(360px, 90vw);
	}
	.l2-nav__actions {
		border-top: 0;
		margin-top: 0;
		padding-top: 0;
	}
}

/* ---- Hero stage (copy + register) ---- */
.l2-hero__stage {
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto;
	padding: 1.5rem 0 3.5rem;
	display: grid;
	gap: 2rem;
	align-items: center;
	flex: 1;
}
.l2-hero__logo {
	display: block;
	height: clamp(72px, 14vw, 130px);
	width: auto;
	max-width: min(280px, 70vw);
	object-fit: contain;
	margin: 0 0 1.1rem;
	filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
}
.l2-title {
	font-family: var(--l2-display);
	font-size: clamp(1.55rem, 3.4vw, 2.35rem);
	font-weight: 560;
	line-height: 1.2;
	margin: 0 0 0.85rem;
	max-width: 14em;
	color: #f4fffa;
}
.l2-lead {
	margin: 0 0 0.75rem;
	max-width: 34rem;
	font-size: 1.08rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 400;
}
.l2-hero__sub {
	margin: 0 0 1.35rem;
	font-size: 0.92rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.72);
	max-width: 34rem;
}
.l2-hero__free {
	display: inline-block;
	padding: 0.1rem 0.45rem;
	border-radius: 999px;
	background: rgba(92, 184, 92, 0.22);
	border: 1px solid rgba(92, 184, 92, 0.45);
	color: #d8f5d8;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	vertical-align: baseline;
}
.l2-lead__stats {
	color: rgba(255, 255, 255, 0.65);
	font-weight: 500;
}
.l2-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.25rem;
}
.l2-live {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.78);
}
.l2-live__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--l2-mint);
	animation: l2-pulse 2.2s ease-out infinite;
}
.l2-hero__more {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
}
.l2-hero__more a {
	color: rgba(255, 255, 255, 0.85) !important;
	text-decoration: underline !important;
	text-underline-offset: 3px;
}
.l2-hero__more a:hover {
	color: #fff !important;
}

@media (min-width: 992px) {
	.l2-hero__stage {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.5rem;
		padding: 2rem 0 4rem;
	}
	.l2-hero__cta .l2-btn--solid {
		display: none; /* register zit al rechts */
	}
}

/* ---- Register panel (interaction surface) ---- */
.l2-register__panel {
	background: var(--l2-glass);
	color: var(--l2-text);
	border-radius: var(--l2-radius);
	padding: 1.35rem 1.25rem 1.5rem;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.55);
}
.l2-reg-head {
	text-align: center;
	padding: 0.25rem 0.5rem 0.5rem;
}
.l2-reg-title {
	font-family: var(--l2-display);
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--l2-ink);
	margin: 0 0 0.35rem;
}
#landing2 .reg-lead {
	margin: 0 auto;
	max-width: 26rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--l2-muted) !important;
}
#landing2 .reg-progress {
	padding: 0.25rem 0.5rem 0.75rem;
	text-align: center;
}
#landing2 .reg-progress__track {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.45rem;
}
#landing2 .reg-progress__step {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	border: 2px solid #c5d0d4;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.55rem;
	color: var(--l2-muted);
	background: #fff;
}
#landing2 .reg-progress__step.is-active {
	border-color: var(--l2-mint-deep);
	background: var(--l2-mint);
	color: #fff;
}
#landing2 .reg-progress__step.is-done {
	border-color: var(--l2-mint-deep);
	background: rgba(92, 184, 92, 0.28);
	color: var(--l2-deep);
}
#landing2 .reg-progress__bar {
	width: 2rem;
	height: 2px;
	background: #d0dbdf;
}
#landing2 .reg-progress__label {
	margin: 0;
	font-size: 0.88rem;
	color: var(--l2-muted) !important;
}
#landing2 .reg-step-content {
	padding: 0.5rem 0.15rem 0.25rem;
}
#landing2 .reg-choice-block {
	margin-bottom: 1.25rem;
	text-align: center;
}
#landing2 .reg-choice-label {
	display: block;
	margin-bottom: 0.55rem;
	font-weight: 600;
	color: var(--l2-text) !important;
}
#landing2 .reg-pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
}
#landing2 .reg-pills--compact .reg-pill {
	min-width: 7rem;
}
#landing2 .reg-pill {
	min-width: 5.5rem;
	padding: 0.65rem 1.1rem;
	border: 1.5px solid #c8d4d8;
	border-radius: 999px;
	font-weight: 600;
	font-family: var(--l2-font);
	cursor: pointer;
	background: #fff;
	color: var(--l2-text);
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
#landing2 .reg-pill:hover,
#landing2 .reg-pill:focus {
	border-color: var(--l2-mint-deep);
	outline: none;
}
#landing2 .reg-pill.is-active {
	border-color: var(--l2-mint-deep);
	background: var(--l2-mint);
	color: #fff;
}
#landing2 .reg-look-pill {
	min-width: 5.5rem;
	padding: 0.65rem 1.1rem;
	border: 1.5px solid #c8d4d8;
	border-radius: 999px;
	font-weight: 600;
	font-family: var(--l2-font);
	cursor: pointer;
	background: #fff;
	color: var(--l2-text);
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
#landing2 .reg-look-pill:hover,
#landing2 .reg-look-pill:focus {
	border-color: var(--l2-mint-deep);
	outline: none;
}
#landing2 .reg-look-pill.is-active {
	border-color: var(--l2-mint-deep);
	background: var(--l2-mint);
	color: #fff;
}
#landing2 .reg-pill-multi {
	display: inline-block;
	border: 1px solid rgba(30, 26, 23, 0.18);
	background: #fff;
	color: #5c564e;
	border-radius: 999px;
	padding: 0.4rem 0.85rem;
	margin: 0 0.35rem 0.4rem 0;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
#landing2 .reg-pill-multi:hover,
#landing2 .reg-pill-multi:focus {
	border-color: var(--l2-mint-deep);
	outline: none;
}
#landing2 .reg-pill-multi.is-active {
	border-color: var(--l2-mint-deep);
	background: var(--l2-mint);
	color: #fff;
}
#landing2 .reg-native-fallback {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}
#landing2 .reg-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}
#landing2 .reg-back {
	color: var(--l2-muted) !important;
}
#landing2 .reg-back:hover {
	color: var(--l2-ink) !important;
}
#landing2 .reg-date-input,
#landing2 .reg-city-select,
#landing2 #regCitySearch,
#landing2 .form-control {
	border-radius: 12px;
	border-color: #c8d4d8;
	font-family: var(--l2-font);
}
#landing2 .reg-city-select {
	margin-top: 0.5rem;
	min-height: 9rem;
}
#landing2 .control-label,
#landing2 .reg-step-content label,
#landing2 .text-muted {
	color: var(--l2-muted) !important;
}
#landing2 .input-group-addon {
	border-radius: 12px 0 0 12px;
	background: var(--l2-foam);
	border-color: var(--l2-line);
	color: var(--l2-deep);
}
#landing2 .input-group .form-control {
	border-radius: 0 12px 12px 0;
}
#landing2 .help-block,
#landing2 .help-block li {
	color: #c0392b;
}
#landing2 .l2-success-icon {
	color: var(--l2-mint-deep);
}
@media (max-width: 575px) {
	#landing2 .reg-pill {
		flex: 1 1 40%;
	}
}

/* ---- Sections below fold ---- */
.l2-section {
	background-color: var(--l2-foam);
	background-image:
		radial-gradient(circle at 12% 10%, rgba(92, 184, 92, 0.18), transparent 38%),
		radial-gradient(circle at 90% 8%, rgba(45, 140, 222, 0.12), transparent 36%),
		radial-gradient(rgba(30, 26, 23, 0.08) 1.3px, transparent 1.4px);
	background-size: auto, auto, 20px 20px;
	color: var(--l2-text);
	padding: 4rem 0;
}
.l2-section__inner {
	width: min(900px, calc(100% - 2rem));
	margin: 0 auto;
}
.l2-section__title {
	font-family: var(--l2-display);
	font-size: clamp(1.6rem, 3vw, 2.1rem);
	font-weight: 700;
	margin: 0 0 0.65rem;
	color: var(--l2-ink);
}
.l2-section__lead {
	margin: 0 0 2rem;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--l2-muted);
	max-width: 38rem;
}
.l2-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1.5rem;
}
.l2-features li {
	padding-left: 1.1rem;
	border-left: 3px solid var(--l2-mint);
}
.l2-features strong {
	display: block;
	font-size: 1.05rem;
	margin-bottom: 0.25rem;
	color: var(--l2-ink);
}
.l2-features span {
	color: var(--l2-muted);
	line-height: 1.5;
}
.l2-section__more {
	margin: 2rem 0 0;
	color: var(--l2-muted);
}
.l2-section__more a {
	color: var(--l2-deep) !important;
	font-weight: 600;
	border-bottom: 1px solid rgba(18, 48, 57, 0.25);
}
.l2-section__more a:hover {
	border-bottom-color: var(--l2-mint-deep);
}

/* ---- Interessegroepen USP ---- */
.l2-section__inner--wide {
	width: min(1040px, calc(100% - 2rem));
}
.l2-interests {
	border-top: 1px solid var(--l2-line);
	border-bottom: 1px solid var(--l2-line);
	background-color: #fff;
	background-image:
		radial-gradient(ellipse 60% 50% at 0% 0%, rgba(92, 184, 92, 0.12), transparent 55%),
		radial-gradient(ellipse 50% 40% at 100% 100%, rgba(45, 140, 222, 0.08), transparent 50%);
}
.l2-interests__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--l2-mint-deep);
}
.l2-interests__steps {
	display: grid;
	gap: 1.25rem;
	margin: 0 0 1.75rem;
}
@media (min-width: 768px) {
	.l2-interests__steps {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}
.l2-interests__step {
	background: var(--l2-foam);
	border: 1px solid var(--l2-line);
	border-radius: 16px;
	padding: 1.15rem 1.2rem 1.25rem;
}
.l2-interests__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--l2-mint);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 0.65rem;
}
.l2-interests__step h3 {
	margin: 0 0 0.4rem;
	font-family: var(--l2-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--l2-ink);
}
.l2-interests__step p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--l2-muted);
}
.l2-interests__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 1.75rem;
}
.l2-interests__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	border: 1px solid var(--l2-line);
	background: var(--l2-foam);
	color: var(--l2-ink) !important;
	font-size: 0.88rem;
	font-weight: 600;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.l2-interests__chip:hover {
	background: #eef8ee;
	border-color: var(--l2-mint);
	color: var(--l2-mint-deep) !important;
}
.l2-interests__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
}
.l2-btn--on-light,
.l2-btn--ghost.l2-btn--on-light,
.l2-btn--ghost.l2-btn--on-light:link,
.l2-btn--ghost.l2-btn--on-light:visited {
	color: var(--l2-ink) !important;
	border-color: rgba(30, 26, 23, 0.35) !important;
	background: #fff !important;
}
.l2-btn--on-light:hover,
.l2-btn--ghost.l2-btn--on-light:hover,
.l2-btn--ghost.l2-btn--on-light:focus {
	border-color: var(--l2-mint-deep) !important;
	color: var(--l2-mint-deep) !important;
	background: #eef8ee !important;
}

.l2-pulse {
	background-color: #fff;
	background-image:
		radial-gradient(ellipse 70% 80% at 10% 20%, rgba(92, 184, 92, 0.14), transparent 50%),
		radial-gradient(ellipse 50% 60% at 90% 80%, rgba(45, 140, 222, 0.08), transparent 45%);
	color: var(--l2-text);
	border-top: 1px solid var(--l2-line);
	border-bottom: 1px solid var(--l2-line);
}
.l2-pulse .l2-section__title,
.l2-pulse .l2-section__lead {
	color: var(--l2-ink);
}
.l2-pulse .l2-section__lead {
	opacity: 1;
	color: var(--l2-muted);
}
.l2-pulse__row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.l2-pulse__row {
		grid-template-columns: repeat(4, 1fr);
	}
}
.l2-pulse__item {
	text-align: center;
	padding: 0.5rem;
}
.l2-pulse__value {
	display: block;
	font-family: var(--l2-display);
	font-size: clamp(1.5rem, 4vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--l2-mint);
}
.l2-pulse__value--place {
	font-size: clamp(1.15rem, 2.8vw, 1.65rem);
	line-height: 1.15;
	word-break: break-word;
}
.l2-pulse__label {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.9rem;
	color: var(--l2-muted);
}
.l2-pulse__cta {
	text-align: center;
}

.l2-trust {
	background: transparent;
}
.l2-trust__grid {
	display: grid;
	gap: 1.25rem;
}
.l2-trust__text {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.6;
	color: var(--l2-muted);
	max-width: 36rem;
}
@media (min-width: 768px) {
	.l2-trust__grid {
		grid-template-columns: 1fr 1fr;
		align-items: end;
		gap: 2.5rem;
	}
	.l2-features {
		grid-template-columns: 1fr;
	}
}

/* ---- Footer ---- */
.l2-footer {
	background: var(--l2-ink);
	color: rgba(255, 255, 255, 0.65);
	padding: 1.5rem 0 2rem;
}
.l2-footer__inner {
	width: min(1120px, calc(100% - 2rem));
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}
.l2-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}
.l2-footer a {
	color: rgba(255, 255, 255, 0.8) !important;
	font-size: 0.92rem;
}
.l2-footer a:hover {
	color: var(--l2-mint) !important;
}
.l2-footer__copy {
	font-size: 0.88rem;
}

/* Login-modal — warme mint i.p.v. blauw/wit Bootstrap */
#loginmodal {
	color: #1e1a17;
}
#loginmodal .modal-dialog {
	max-width: 420px;
}
#loginmodal .modal-content {
	border-radius: 1.15rem;
	border: 1px solid rgba(230, 226, 220, 0.95);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
	background: #fff;
	padding: 1.1rem 1.25rem 1.35rem;
}
#loginmodal .modal-header {
	border-bottom: none;
	padding: 0.25rem 0.25rem 0.5rem;
}
#loginmodal .modal-footer {
	border-top: none;
	padding: 0.5rem 0.25rem 0.15rem;
	text-align: center;
}
#loginmodal .modal-title {
	color: #1e1a17 !important;
	font-family: var(--l2-display);
	font-weight: 700;
	font-size: 1.4rem;
}
#loginmodal .close {
	opacity: 0.45;
	color: #1e1a17;
	text-shadow: none;
}
#loginmodal .close:hover {
	opacity: 0.9;
}
#loginmodal .modal-body .fa {
	color: #fff;
}
#loginmodal .input-group-addon.bg-primary {
	background-color: #5cb85c !important;
	border-color: #5cb85c !important;
}
#loginmodal .form-control {
	border-color: #e6e2dc;
}
#loginmodal .form-control:focus {
	border-color: #5cb85c;
	box-shadow: 0 0 0 0.15rem rgba(92, 184, 92, 0.22);
}
#loginmodal .btn-primary {
	background-color: #5cb85c !important;
	border-color: #5cb85c !important;
	border-radius: 999px;
	font-weight: 600;
	padding: 0.65rem 1.6rem;
	min-width: 9rem;
}
#loginmodal .btn-primary:hover,
#loginmodal .btn-primary:focus {
	background-color: #449d44 !important;
	border-color: #419641 !important;
}
#loginmodal .text-muted,
#loginmodal .form-text {
	color: #6a635c !important;
}
#loginmodal .tag-grey {
	color: #6a635c !important;
}
#loginmodal .custom-control-indicator {
	border-color: #cfc8bf;
}
#loginmodal .custom-checkbox .custom-control-input:checked ~ .custom-control-indicator {
	background-color: #5cb85c;
}
#passwordHelp,
#forgotHelp {
	cursor: pointer;
	color: #449d44 !important;
}
#passwordHelp:hover,
#forgotHelp:hover {
	text-decoration: underline;
}

/* ---- Story / marketing blocks ---- */
.l2-eyebrow {
	margin: 0 0 0.4rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--l2-mint-deep);
}
.l2-prose {
	margin: 0 0 1rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--l2-muted);
	max-width: 42rem;
}
.l2-prose strong {
	color: var(--l2-ink);
	font-weight: 650;
}
.l2-pull {
	margin: 1.25rem 0;
	padding: 0.85rem 0 0.85rem 1.1rem;
	border-left: 3px solid var(--l2-mint);
	font-family: var(--l2-display);
	font-size: clamp(1.15rem, 2.4vw, 1.45rem);
	font-weight: 560;
	line-height: 1.35;
	color: var(--l2-ink);
	max-width: 36rem;
}
.l2-pull--compact {
	margin: 1rem 0;
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}
.l2-inline-cta {
	margin-top: 1.5rem;
}

.l2-swipe-rhythm {
	display: grid;
	gap: 0.55rem;
	margin: 0 0 1.5rem;
	max-width: 28rem;
}
.l2-swipe-rhythm span {
	display: block;
	padding: 0.7rem 1rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--l2-line);
	font-size: 0.98rem;
	color: var(--l2-ink);
	transform: rotate(-0.4deg);
}
.l2-swipe-rhythm span:nth-child(2) {
	transform: rotate(0.5deg);
	margin-left: 0.75rem;
}
.l2-swipe-rhythm span:nth-child(3) {
	transform: rotate(-0.2deg);
	margin-left: 0.35rem;
}
.l2-swipe-rhythm em {
	font-style: normal;
	font-weight: 700;
	color: var(--l2-mint-deep);
}

.l2-split {
	background-color: #fff;
	background-image:
		radial-gradient(ellipse 55% 45% at 100% 0%, rgba(92, 184, 92, 0.12), transparent 55%),
		radial-gradient(ellipse 40% 40% at 0% 100%, rgba(45, 140, 222, 0.08), transparent 50%);
	border-top: 1px solid var(--l2-line);
	border-bottom: 1px solid var(--l2-line);
}
.l2-split__grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 900px) {
	.l2-split__grid {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 2.75rem;
	}
}

.l2-card-preview {
	background: var(--l2-foam);
	border: 1px solid var(--l2-line);
	border-radius: 18px;
	overflow: hidden;
	max-width: 22rem;
	margin: 0 auto;
	box-shadow: 0 18px 40px rgba(30, 26, 23, 0.08);
}
.l2-card-preview__photo {
	height: 140px;
	background:
		radial-gradient(circle at 30% 40%, rgba(92, 184, 92, 0.45), transparent 45%),
		radial-gradient(circle at 70% 60%, rgba(45, 140, 222, 0.35), transparent 42%),
		linear-gradient(145deg, #3a4a3c 0%, #1e1a17 100%);
}
.l2-card-preview__body {
	padding: 1rem 1.1rem 1.2rem;
}
.l2-card-preview__name {
	margin: 0;
	font-family: var(--l2-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--l2-ink);
}
.l2-card-preview__looking {
	margin: 0.2rem 0 0.75rem;
	font-size: 0.88rem;
	color: var(--l2-muted);
}
.l2-card-preview__tags {
	list-style: none;
	margin: 0 0 0.85rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}
.l2-card-preview__tags li {
	padding: 0.28rem 0.65rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--l2-line);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--l2-ink);
}
.l2-card-preview__match {
	padding: 0.65rem 0.75rem;
	border-radius: 12px;
	background: rgba(92, 184, 92, 0.1);
	border: 1px solid rgba(92, 184, 92, 0.28);
	margin-bottom: 0.75rem;
}
.l2-card-preview__match-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--l2-mint-deep);
	margin-bottom: 0.15rem;
}
.l2-card-preview__match strong {
	font-size: 0.9rem;
	color: var(--l2-ink);
}
.l2-card-preview__quote {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: var(--l2-muted);
	font-style: italic;
}

.l2-ways__grid {
	display: grid;
	gap: 1rem;
}
@media (min-width: 800px) {
	.l2-ways__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.15rem;
		align-items: stretch;
	}
}
.l2-frame {
	background: #fff;
	border: 1px solid var(--l2-line);
	border-radius: 16px;
	padding: 1.2rem 1.15rem 1.3rem;
}
.l2-frame__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: rgba(92, 184, 92, 0.14);
	color: var(--l2-mint-deep);
	margin-bottom: 0.75rem;
}
.l2-frame h3 {
	margin: 0 0 0.45rem;
	font-family: var(--l2-display);
	font-size: 1.12rem;
	font-weight: 700;
	color: var(--l2-ink);
}
.l2-frame p {
	margin: 0 0 0.65rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--l2-muted);
}
.l2-frame__note {
	margin: 0 !important;
	padding-top: 0.35rem;
	border-top: 1px dashed var(--l2-line);
	font-weight: 600;
	color: var(--l2-ink) !important;
}
.l2-quote-pair {
	display: grid;
	gap: 0.5rem;
	margin-top: 0.75rem;
}
.l2-quote-pair blockquote {
	margin: 0;
	padding: 0.55rem 0.7rem;
	border-radius: 10px;
	background: var(--l2-foam);
	border: 1px solid var(--l2-line);
	font-size: 0.88rem;
	line-height: 1.4;
	color: var(--l2-muted);
}
.l2-quote-pair blockquote.is-strong {
	background: rgba(92, 184, 92, 0.1);
	border-color: rgba(92, 184, 92, 0.3);
	color: var(--l2-ink);
	font-weight: 600;
}

.l2-band {
	background:
		linear-gradient(120deg, #1e1a17 0%, #2c3a2e 55%, #243048 100%);
	color: #fff;
	border: 0;
}
.l2-band .l2-section__title {
	color: #fff;
}
.l2-band .l2-prose {
	color: rgba(255, 255, 255, 0.82);
}
.l2-band .l2-prose strong {
	color: #fff;
}
.l2-band__inner {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}
@media (min-width: 768px) {
	.l2-band__inner {
		grid-template-columns: 1fr auto;
		gap: 2rem;
	}
}

.l2-local__grid {
	display: grid;
	gap: 1.75rem;
	align-items: center;
}
@media (min-width: 860px) {
	.l2-local__grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 2.5rem;
	}
}
.l2-map-preview {
	position: relative;
	min-height: 220px;
	border-radius: 18px;
	border: 1px solid var(--l2-line);
	background:
		radial-gradient(circle at 40% 55%, rgba(92, 184, 92, 0.2), transparent 35%),
		linear-gradient(160deg, #e8efe8 0%, #dfe6f0 45%, #ebe8e3 100%);
	overflow: hidden;
}
.l2-map-preview__pin {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--l2-mint);
	box-shadow: 0 0 0 6px rgba(92, 184, 92, 0.18);
}
.l2-map-preview__pin.is-you {
	width: 16px;
	height: 16px;
	background: #2d8cde;
	box-shadow: 0 0 0 8px rgba(45, 140, 222, 0.2);
}
.l2-map-preview__label {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	padding: 0.35rem 0.7rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid var(--l2-line);
	font-size: 0.8rem;
	font-weight: 650;
	color: var(--l2-ink);
}

.l2-control__grid {
	display: grid;
	gap: 1rem;
}
@media (min-width: 768px) {
	.l2-control__grid {
		grid-template-columns: 1fr 1fr;
		gap: 1.25rem;
	}
}
.l2-kader {
	padding: 1.25rem 1.2rem;
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--l2-line);
}
.l2-kader--solo {
	margin-bottom: 1rem;
	max-width: 40rem;
}
.l2-kader h3 {
	margin: 0 0 0.45rem;
	font-family: var(--l2-display);
	font-size: 1.15rem;
	color: var(--l2-ink);
}
.l2-kader p {
	margin: 0 0 0.75rem;
	font-size: 0.98rem;
	line-height: 1.55;
	color: var(--l2-muted);
}
.l2-kader__accent {
	margin: 0 !important;
	padding-top: 0.65rem;
	border-top: 1px solid var(--l2-line);
	font-weight: 650;
	color: var(--l2-ink) !important;
}
.l2-control__split {
	display: grid;
	gap: 1.25rem;
	align-items: center;
}
@media (min-width: 860px) {
	.l2-control__split {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 2rem;
	}
}
.l2-mini-list {
	list-style: none;
	margin: 0 0 0.85rem;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}
.l2-mini-list li {
	position: relative;
	padding-left: 1.1rem;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--l2-ink);
}
.l2-mini-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: var(--l2-mint);
}

/* Product mocks (zelfde visuals als waarom-datic) */
.l2-mock {
	border-radius: 18px;
	border: 1px solid var(--l2-line);
	background: #fff;
	box-shadow: 0 14px 36px rgba(30, 26, 23, 0.08);
	overflow: hidden;
}
.l2-mock--chat {
	padding: 1.35rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	background: var(--l2-foam);
	min-height: 240px;
}
.l2-bubble {
	max-width: 85%;
	padding: 0.65rem 0.85rem;
	border-radius: 14px;
	font-size: 0.92rem;
	line-height: 1.4;
}
.l2-bubble--in {
	align-self: flex-start;
	background: #fff;
	border: 1px solid var(--l2-line);
	color: var(--l2-ink);
	border-bottom-left-radius: 4px;
}
.l2-bubble--out {
	align-self: flex-end;
	background: var(--l2-mint);
	color: #fff;
	border-bottom-right-radius: 4px;
}
.l2-mock--request {
	padding: 0.5rem;
	background: transparent;
	border: none;
	box-shadow: none;
	overflow: visible;
}
.l2-req {
	background: #fff;
	border-radius: 16px;
	padding: 1.15rem 1.2rem;
	border: 1px solid var(--l2-line);
	box-shadow: 0 16px 40px rgba(30, 26, 23, 0.1);
	color: var(--l2-ink);
	max-width: 22rem;
	margin: 0 auto;
}
.l2-req__dot {
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--l2-mint);
	margin-right: 0.35rem;
	vertical-align: middle;
}
.l2-req strong {
	font-size: 1rem;
}
.l2-req p {
	margin: 0.35rem 0 0.9rem;
	color: var(--l2-muted);
	font-size: 0.92rem;
}
.l2-req__actions {
	display: flex;
	gap: 0.5rem;
}
.l2-req__ok,
.l2-req__no {
	flex: 1;
	text-align: center;
	padding: 0.5rem 0.4rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
}
.l2-req__ok {
	background: var(--l2-mint);
	color: #fff;
}
.l2-req__no {
	background: var(--l2-foam);
	border: 1px solid var(--l2-line);
	color: var(--l2-ink);
}
.l2-mock--phone {
	display: flex;
	justify-content: center;
	padding: 1rem 0;
	background: transparent;
	border: none;
	box-shadow: none;
}
.l2-phone {
	width: min(220px, 70%);
	aspect-ratio: 9 / 17;
	border-radius: 28px;
	background: #1e1a17;
	padding: 0.65rem 0.55rem 0.85rem;
	box-shadow: 0 18px 40px rgba(30, 26, 23, 0.2);
	position: relative;
}
.l2-phone__notch {
	width: 38%;
	height: 10px;
	margin: 0 auto 0.65rem;
	background: #2c2622;
	border-radius: 999px;
}
.l2-phone__push {
	background: #fff;
	border-radius: 12px;
	padding: 0.55rem 0.65rem;
	margin: 0 0.2rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.l2-phone__push strong {
	font-size: 0.78rem;
	color: var(--l2-ink);
}
.l2-phone__push span {
	font-size: 0.72rem;
	color: var(--l2-muted);
}
.l2-phone__screen {
	margin: 0 0.2rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}
.l2-phone__screen span {
	display: block;
	height: 2.2rem;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.08);
}

.l2-free__split {
	display: grid;
	gap: 1.75rem;
	align-items: center;
	margin-bottom: 1.75rem;
}
@media (min-width: 860px) {
	.l2-free__split {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.25rem;
	}
}

.l2-app {
	background-color: var(--l2-foam);
	background-image:
		radial-gradient(ellipse 55% 50% at 90% 10%, rgba(92, 184, 92, 0.14), transparent 55%),
		radial-gradient(ellipse 40% 40% at 10% 90%, rgba(45, 140, 222, 0.08), transparent 50%);
	border-top: 1px solid var(--l2-line);
	border-bottom: 1px solid var(--l2-line);
}
.l2-app__grid {
	display: grid;
	gap: 1.75rem;
	align-items: center;
}
@media (min-width: 860px) {
	.l2-app__grid {
		grid-template-columns: 1.1fr 0.9fr;
		gap: 2.5rem;
	}
}

.l2-matchreport {
	background-color: #fff;
	background-image:
		radial-gradient(ellipse 55% 50% at 0% 20%, rgba(92, 184, 92, 0.12), transparent 55%),
		radial-gradient(ellipse 45% 40% at 100% 80%, rgba(45, 140, 222, 0.1), transparent 50%);
	border-top: 1px solid var(--l2-line);
	border-bottom: 1px solid var(--l2-line);
}
.l2-matchreport__grid {
	display: grid;
	gap: 2rem;
	align-items: center;
}
@media (min-width: 900px) {
	.l2-matchreport__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 2.5rem;
	}
}
.l2-report-preview {
	background: var(--l2-foam);
	border: 1px solid var(--l2-line);
	border-radius: 18px;
	padding: 1.15rem 1.2rem 1.25rem;
	max-width: 24rem;
	margin: 0 auto;
	box-shadow: 0 16px 36px rgba(30, 26, 23, 0.08);
}
.l2-report-preview__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}
.l2-report-preview__badge {
	display: inline-flex;
	padding: 0.25rem 0.6rem;
	border-radius: 999px;
	background: rgba(92, 184, 92, 0.14);
	border: 1px solid rgba(92, 184, 92, 0.3);
	color: var(--l2-mint-deep);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.l2-report-preview__head strong {
	font-size: 0.95rem;
	color: var(--l2-ink);
}
.l2-report-preview__score {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 1rem;
}
.l2-report-preview__ring {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.25rem;
	height: 4.25rem;
	border-radius: 50%;
	background:
		radial-gradient(circle at center, #fff 58%, transparent 59%),
		conic-gradient(#5cb85c 0 78%, #e6e2dc 78% 100%);
	font-family: var(--l2-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--l2-ink);
}
.l2-report-preview__score-label {
	margin: 0;
	font-weight: 700;
	color: var(--l2-ink);
	font-size: 1rem;
}
.l2-report-preview__score-sub {
	margin: 0.15rem 0 0;
	font-size: 0.85rem;
	color: var(--l2-muted);
}
.l2-report-preview__bars {
	list-style: none;
	margin: 0 0 0.85rem;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}
.l2-report-preview__bars li {
	display: grid;
	grid-template-columns: 7.5rem 1fr;
	gap: 0.55rem;
	align-items: center;
	font-size: 0.85rem;
	color: var(--l2-muted);
}
.l2-report-preview__bar {
	display: block;
	height: 0.45rem;
	border-radius: 999px;
	background: #e6e2dc;
	overflow: hidden;
}
.l2-report-preview__bar i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #5cb85c, #449d44);
}
.l2-report-preview__note {
	margin: 0;
	font-size: 0.82rem;
	color: var(--l2-muted);
}

.l2-check {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 0.55rem;
	max-width: 36rem;
}
.l2-check li {
	position: relative;
	padding: 0.55rem 0.75rem 0.55rem 2.35rem;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid var(--l2-line);
	color: var(--l2-ink);
	font-weight: 550;
	line-height: 1.4;
}
.l2-check li::before {
	content: "";
	position: absolute;
	left: 0.75rem;
	top: 50%;
	width: 0.7rem;
	height: 0.7rem;
	margin-top: -0.35rem;
	border-radius: 50%;
	background: var(--l2-mint);
	box-shadow: inset 0 0 0 2px #fff;
}

.l2-free {
	background-color: #fff;
	border-top: 1px solid var(--l2-line);
	border-bottom: 1px solid var(--l2-line);
}
.l2-free__big {
	margin: 0.75rem 0 0;
	font-family: var(--l2-display);
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	color: var(--l2-mint-deep);
}
.l2-free__why {
	margin-top: 2rem;
	padding: 1.35rem 1.25rem;
	border-radius: 16px;
	background: var(--l2-foam);
	border: 1px solid var(--l2-line);
}
.l2-free__why h3 {
	margin: 0 0 0.5rem;
	font-family: var(--l2-display);
	font-size: 1.25rem;
	color: var(--l2-ink);
}

.l2-compare__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin: 0 0 1.5rem;
	max-width: 100%;
	border-radius: 14px;
	border: 1px solid var(--l2-line);
	background: #fff;
}
@media (max-width: 767px) {
	.l2-compare__table-wrap {
		/* Nested scroll i.p.v. page-scroll */
		overscroll-behavior-x: contain;
	}
	.l2-section,
	.l2-nav,
	.l2-split__grid,
	.l2-pulse__row {
		max-width: 100%;
	}
}
.l2-compare__table {
	width: 100%;
	border-collapse: collapse;
	min-width: 480px;
}
.l2-compare__table th,
.l2-compare__table td {
	padding: 0.75rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--l2-line);
	font-size: 0.95rem;
	line-height: 1.4;
}
.l2-compare__table th {
	background: var(--l2-foam);
	font-family: var(--l2-display);
	font-size: 1.05rem;
	color: var(--l2-ink);
}
.l2-compare__table th:last-child {
	color: var(--l2-mint-deep);
}
.l2-compare__table td:last-child {
	font-weight: 600;
	color: var(--l2-ink);
	background: rgba(92, 184, 92, 0.06);
}
.l2-compare__table tr:last-child td {
	border-bottom: 0;
}

.l2-belief__list {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	display: grid;
	gap: 0.4rem;
	max-width: 32rem;
}
.l2-belief__list li {
	padding: 0.45rem 0;
	border-bottom: 1px dashed var(--l2-line);
	font-family: var(--l2-display);
	font-size: 1.08rem;
	color: var(--l2-ink);
}
.l2-belief__list li:last-child {
	border-bottom: 0;
	font-weight: 700;
}

.l2-audience .l2-pull {
	font-style: italic;
}

.l2-final {
	background:
		radial-gradient(ellipse 70% 60% at 20% 0%, rgba(92, 184, 92, 0.16), transparent 55%),
		#fff;
	border-top: 1px solid var(--l2-line);
}
.l2-final__inner {
	text-align: left;
}
.l2-final__steps {
	margin: 0 0 1.5rem;
	padding-left: 1.2rem;
	max-width: 36rem;
	color: var(--l2-ink);
	line-height: 1.7;
}
.l2-final__tagline {
	margin: 0 0 1.25rem;
	font-family: var(--l2-display);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--l2-ink);
}
.l2-final__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.l2-trust__text a {
	color: var(--l2-mint-deep) !important;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.l2-swipe-rhythm span {
		transform: none;
	}
}
