/* Haagala Landing Page — "ליגת הגדולים", dark+gold, RTL, mobile-first */
/* Design System v3.0 */

/* ——— @font-face Heebo ——— */
/*
 * Heebo woff2 (weights 300/400/500/700/900) self-hosted in public/fonts/.
 * subset: hebrew + latin. Source: google-webfonts-helper (gwfh) v28. NO CDN.
 * Fallback stack: 'Segoe UI', Arial (both support Hebrew).
 */
@font-face {
	font-family: 'Heebo';
	src: local('Heebo'), url('../fonts/heebo-300.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0590-05FF, U+FB1D-FB4F, U+0020-007E;
}
@font-face {
	font-family: 'Heebo';
	src: local('Heebo'), url('../fonts/heebo-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0590-05FF, U+FB1D-FB4F, U+0020-007E;
}
@font-face {
	font-family: 'Heebo';
	src: local('Heebo Medium'), url('../fonts/heebo-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0590-05FF, U+FB1D-FB4F, U+0020-007E;
}
@font-face {
	font-family: 'Heebo';
	src: local('Heebo Bold'), url('../fonts/heebo-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0590-05FF, U+FB1D-FB4F, U+0020-007E;
}
@font-face {
	font-family: 'Heebo';
	src: local('Heebo Black'), url('../fonts/heebo-900.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0590-05FF, U+FB1D-FB4F, U+0020-007E;
}

/* ——— Design Tokens ——— */
:root {
	/* Shared radii & motion */
	--radius-sm:   4px;
	--radius-md:   8px;
	--radius-lg:   16px;
	--radius-xl:   24px;
	--radius-full: 9999px;
	--transition:  200ms cubic-bezier(0.4, 0, 0.2, 1);

	/* ——— Public — Primary / Gold ——— */
	--lp-primary:       #E8B86D; /* Gold Light — AAA 7.0:1 on deep */
	--lp-primary-dark:  #C8973A; /* Gold Primary — hover/borders */
	--lp-primary-light: rgba(200,151,58,0.18); /* Gold Glow tint */

	/* ——— Public — Background Layers ——— */
	--lp-bg-deep:          #0C0C0E;
	--lp-bg-surface:       #141418;
	--lp-bg-surface-2:     #1C1C22;
	--lp-bg-surface-3:     #242430;
	--lp-bg-surface-hover: #2A2A38;

	/* ——— Public — Surface aliases (backward-compat names, new dark values) ——— */
	--lp-surface-alt:   #1C1C22; /* was #F8F9FA */
	--lp-surface-white: #141418; /* was #FFFFFF — name kept for compat */
	--lp-card-bg:       #141418; /* was #FFFFFF */
	--lp-card-border:   rgba(200,151,58,0.18); /* was #DADCE0 */

	/* ——— Public — Gold Tokens ——— */
	--lp-gold:            #C8973A;
	--lp-gold-light:      #E8B86D;
	--lp-gold-dark:       #8B6520;
	--lp-gold-muted:      #5C4010;
	--lp-gold-glow-soft:  rgba(200,151,58,0.06);
	--lp-gold-glow:       rgba(200,151,58,0.18);
	--lp-gold-glow-strong: rgba(200,151,58,0.32);

	/* ——— Public — Text Tokens ——— */
	--lp-text-primary:   #F0EBE0; /* 16.0:1 AAA */
	--lp-text-secondary: #9D9585; /* 5.2:1 AA  */
	--lp-text-muted:     #5A5550; /* decorative only */

	/* ——— Public — Border Tokens ——— */
	--lp-border:        rgba(200,151,58,0.18);
	--lp-border-strong: rgba(200,151,58,0.40);

	/* ——— Public — Hero / Footer ——— */
	--lp-hero-bg-start: #0C0C0E;
	--lp-hero-bg-end:   #141418;
	--lp-hero-text:     #F0EBE0;
	--lp-stat-value:    var(--lp-gold-light);
	--lp-footer-bg:     #08080A;
	--lp-footer-text:   #9D9585;
	--lp-step-line:     rgba(200,151,58,0.25);
	--lp-step-active:   #C8973A; /* badge bg — text must be #0C0C0E */

	/* ——— Public — CTA ——— */
	--lp-cta-bg:        #C8973A; /* fallback; gradient applied directly */
	--lp-cta-text:      #0C0C0E; /* dark on gold — ~11:1 AAA */
	--lp-cta-hover-bg:  #C8973A; /* overridden by gradient */

	/* ——— Legacy aliases still referenced by component rules ——— */
	--lp-on-surface:         var(--lp-text-primary);
	--lp-on-surface-variant: var(--lp-text-secondary);
	--lp-outline:            var(--lp-border);

	/* ——— Public — Shadows (dark + gold glow) ——— */
	--lp-shadow-1:          0 1px 3px rgba(0,0,0,.40), 0 2px 8px rgba(0,0,0,.30);
	--lp-shadow-2:          0 4px 16px rgba(0,0,0,.50), 0 8px 32px rgba(0,0,0,.30);
	--lp-shadow-gold:       0 0 24px rgba(200,151,58,0.28), 0 4px 16px rgba(0,0,0,.50);
	--lp-shadow-gold-hover: 0 0 36px rgba(200,151,58,0.45), 0 8px 24px rgba(0,0,0,.60);

	/* ——— Public — Radii aliases ——— */
	--lp-radius-sm:   var(--radius-sm);
	--lp-radius-md:   var(--radius-md);
	--lp-radius-lg:   var(--radius-lg);
	--lp-radius-xl:   var(--radius-xl);
	--lp-radius-full: var(--radius-full);

	/* ——— Public — Transitions ——— */
	--lp-transition:  var(--transition);
	--lp-trans-slow:  380ms cubic-bezier(0, 0, 0.2, 1);
	--lp-ease-out:    cubic-bezier(0, 0, 0.2, 1);

	/* ——— WhatsApp ——— */
	--lp-wa-green:        #25D366;
	--lp-wa-green-dark:   #128C7E;
	--lp-wa-text:         #FFFFFF;
	--lp-wa-container-bg: #1A3A1A;

	/* ——— Success / Error (Public) ——— */
	--lp-success:       #4CAF50;
	--lp-success-light: rgba(76,175,80,0.15);
	--lp-error:         #EF5350;
	--lp-error-light:   rgba(239,83,80,0.15);

	/* ——— Section-specific (new landing 2026) ——— */
	--lp-yes:    #4CAF50;
	--lp-yes-bg: rgba(76,175,80,0.12);
	--lp-no:     #EF5350;
	--lp-no-bg:  rgba(239,83,80,0.12);
	--lp-dark-bg:   var(--lp-bg-surface-2);
	--lp-dark-text: var(--lp-text-primary);
}

/* ——— Skip-to-content ——— */
.lp-skip-to-content {
	position: absolute;
	top: -100%;
	inset-inline-start: 0;
	background: var(--lp-gold);
	color: #0C0C0E;
	padding: 8px 16px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	z-index: 9999;
	border-radius: 0 0 var(--lp-radius-md) var(--lp-radius-md);
	transition: top var(--lp-transition);
}
.lp-skip-to-content:focus {
	top: 0;
	outline: 3px solid var(--lp-gold-light);
	outline-offset: 2px;
}

/* ——— Elementor wrapper reset — full-bleed widget ——— */
/* zeros out e-con/section padding that Elementor adds by default (base-desktop.css 10px) */
.elementor-widget-haagala_landing,
.elementor-widget-haagala_landing > .elementor-widget-container,
.e-con:has(.elementor-widget-haagala_landing),
.elementor-section:has(.elementor-widget-haagala_landing),
.elementor-widget-wrap:has(.elementor-widget-haagala_landing) {
	padding: 0 !important;
	margin: 0 !important;
	width: 100%;
}

/* match body bg to dark theme — hides any residual gap between elementor div and viewport */
body:has(.elementor-widget-haagala_landing) {
	background-color: #0C0C0E;
}

/* ——— Reset / Base ——— */
.lp-page *,
.lp-page *::before,
.lp-page *::after {
	box-sizing: border-box;
}

/* ——— Page wrapper ——— */
.lp-page {
	font-family: 'Heebo', 'Segoe UI', Arial, sans-serif;
	color: var(--lp-text-primary);
	background: var(--lp-bg-deep);
	direction: rtl;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	accent-color: var(--lp-gold);
}

.lp-page ::selection {
	background-color: var(--lp-gold);
	color: #0C0C0E;
}

.lp-hero ::selection {
	background-color: rgba(232,184,109,0.35);
	color: inherit;
}

/* Hide Hello Elementor header/footer when using page template */
body.haagala-landing-body .site-header,
body.haagala-landing-body .site-footer,
body.haagala-landing-body #wpadminbar ~ .site-header {
	display: none !important;
}

/* ——— Container ——— */
.lp-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: 20px;
}

/* ——— Section base ——— */
.lp-section-title {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--lp-text-primary);
	margin: 0 0 16px;
	text-align: center;
}

.lp-section-sub {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	text-align: center;
	margin: 0 0 40px;
}

/* ——— CTA Button ——— */
.lp-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, var(--lp-gold-light) 0%, var(--lp-gold) 60%, var(--lp-gold-dark) 100%);
	color: #0C0C0E;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	padding: 14px 32px;
	border-radius: var(--lp-radius-full);
	transition: transform var(--lp-transition), box-shadow var(--lp-transition), filter var(--lp-transition);
	box-shadow: var(--lp-shadow-gold);
	cursor: pointer;
	border: none;
	letter-spacing: 0.01em;
}

.lp-cta:hover {
	transform: translateY(-2px);
	box-shadow: var(--lp-shadow-gold-hover);
	filter: brightness(1.08);
	color: #0C0C0E;
}

.lp-cta:active {
	transform: translateY(0) scale(0.98);
	box-shadow: var(--lp-shadow-gold);
}

.lp-cta:focus-visible {
	outline: 2px solid var(--lp-gold-light);
	outline-offset: 3px;
}

.lp-cta__icon {
	flex-shrink: 0;
}

/* ——— HERO ——— */
.lp-hero {
	background: var(--lp-bg-deep);
	background-image: radial-gradient(ellipse 80% 60% at 50% -10%, var(--lp-gold-glow) 0%, transparent 65%);
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	padding-block: 80px 60px;
	animation: lp-hero-fadein 0.6s ease-out both;
}

.lp-hero--globe {
	position: relative;
	overflow: hidden;
	background-image: none;
}

.lp-hero--globe .lp-container {
	position: relative;
	z-index: 2;
}

.lp-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

@keyframes lp-hero-fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}

.lp-hero__inner {
	text-align: center;
}

.lp-hero__eyebrow {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--lp-gold);
	border: 1px solid var(--lp-gold-muted);
	border-radius: var(--lp-radius-full);
	padding: 5px 18px;
	margin: 0 0 20px;
}

.lp-hero__title {
	font-size: clamp(36px, 7vw, 64px);
	font-weight: 900;
	line-height: 1.08;
	letter-spacing: -0.03em;
	color: var(--lp-text-primary);
	margin: 0 0 20px;
}

.lp-hero__title .highlight {
	background: linear-gradient(135deg, var(--lp-gold-light) 0%, var(--lp-gold) 55%, var(--lp-gold-dark) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lp-hero__title-line1 {
	display: block;
}

.lp-hero__title-line2 {
	display: block;
}

.lp-hero__title-line1:empty,
.lp-hero__title-line2:empty {
	display: none;
}

.lp-hero__sub {
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	margin: 0 0 32px;
	max-width: 540px;
	margin-inline: auto;
}

.lp-hero__trust {
	font-size: 12px;
	font-weight: 500;
	color: var(--lp-text-secondary);
	margin: 16px 0 0;
	letter-spacing: 0.04em;
}

/* ——— HOW IT WORKS ——— */
.lp-steps {
	background: var(--lp-bg-surface-2);
	padding-block: 64px;
}

.lp-steps__pre {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	text-align: center;
	margin: 0 0 40px;
}

.lp-steps__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

/* Vertical connector line (mobile) — static faint track */
.lp-steps__list::before {
	content: '';
	position: absolute;
	top: 28px;
	inset-inline-start: 28px;
	bottom: 28px;
	width: 2px;
	background: var(--lp-step-line);
}

/* Flowing gold pulse along the track (mobile: top → bottom) */
.lp-steps__list::after {
	content: '';
	position: absolute;
	top: 28px;
	inset-inline-start: 27px;
	bottom: 28px;
	width: 4px;
	border-radius: var(--lp-radius-full);
	background-image: linear-gradient(
		180deg,
		transparent 0%,
		var(--lp-step-active) 38%,
		var(--lp-gold-light) 50%,
		var(--lp-step-active) 62%,
		transparent 100%
	);
	background-repeat: no-repeat;
	background-size: 100% 45%;
	filter: drop-shadow(0 0 6px rgba(200, 151, 58, 0.55));
	animation: lp-step-flow-v 2.2s linear infinite;
	pointer-events: none;
}

@keyframes lp-step-flow-v {
	0%   { background-position: 0 -85%; }
	100% { background-position: 0 185%; }
}

@keyframes lp-step-flow-h {
	0%   { background-position: 185% 0; }
	100% { background-position: -85% 0; }
}

.lp-step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 20px 0;
	position: relative;
	z-index: 1;
	background: transparent;
}

.lp-step__number {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border-radius: var(--lp-radius-full);
	background: var(--lp-step-active);
	color: #0C0C0E; /* dark on gold — ~5.9:1 AA */
	font-size: 16px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	box-shadow: var(--lp-shadow-1);
}

.lp-step__icon {
	display: none;
}

.lp-step__content {
	padding-top: 8px;
}

.lp-step__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--lp-text-primary);
	margin: 0 0 6px;
}

.lp-step__body {
	font-size: 15px;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	margin: 0;
}

/* ——— SOCIAL PROOF ——— */
.lp-proof {
	background: var(--lp-bg-surface);
	padding-block: 64px;
	border-block: 1px solid var(--lp-border);
}

.lp-testimonials {
	display: grid;
	gap: 20px;
	margin-block-end: 48px;
}

.lp-testimonial {
	background: var(--lp-bg-surface-2);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: 28px;
	margin: 0;
	box-shadow: var(--lp-shadow-1);
	transition: transform var(--lp-trans-slow), box-shadow var(--lp-trans-slow);
}

.lp-testimonial:hover {
	transform: translateY(-3px);
	box-shadow: var(--lp-shadow-gold);
}

.lp-testimonial__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-block-end: 16px;
}

.lp-avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: var(--lp-radius-full);
	background: linear-gradient(135deg, var(--lp-gold-dark) 0%, var(--lp-gold-muted) 100%);
	color: var(--lp-gold-light);
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-testimonial__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.lp-testimonial__name {
	font-size: 15px;
	font-weight: 700;
	color: var(--lp-text-primary);
}

.lp-testimonial__details {
	font-size: 12px;
	font-weight: 500;
	color: var(--lp-gold);
}

.lp-testimonial__quote {
	font-size: 15px;
	line-height: 1.7;
	color: var(--lp-text-primary);
	font-style: italic;
	margin: 0 0 14px;
}

.lp-stars {
	display: flex;
	gap: 3px;
	color: var(--lp-gold);
}

/* ——— CTA Bottom ——— */
.lp-cta-bottom {
	background: var(--lp-bg-deep);
	background-image: radial-gradient(ellipse 80% 60% at 50% 110%, var(--lp-gold-glow) 0%, transparent 65%);
	padding-block: 72px;
}

.lp-cta-bottom__inner {
	text-align: center;
}

.lp-cta-bottom__title {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--lp-text-primary);
	margin: 0 0 14px;
	line-height: 1.2;
}

.lp-cta-bottom__sub {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	margin: 0 0 32px;
	max-width: 520px;
	margin-inline: auto;
}

/* On dark bg — same gold gradient CTA (no "white variant" in v3.0) */
.lp-cta-bottom .lp-cta {
	background: linear-gradient(135deg, var(--lp-gold-light) 0%, var(--lp-gold) 60%, var(--lp-gold-dark) 100%);
	color: #0C0C0E;
}

.lp-cta-bottom .lp-cta:hover {
	filter: brightness(1.08);
	color: #0C0C0E;
}

/* ——— Footer ——— */
.lp-footer {
	background: var(--lp-footer-bg);
	border-block-start: 1px solid var(--lp-border);
	padding-block: 40px 32px;
}

.lp-footer__inner {
	text-align: center;
}

.lp-footer__text {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--lp-footer-text);
	margin: 0;
}

.lp-footer__link {
	color: var(--lp-gold);
	text-decoration: underline;
	transition: color var(--lp-transition);
}

.lp-footer__link:hover {
	color: var(--lp-gold);
}

/* ——— Sticky CTA Bar (mobile only) ——— */
.lp-sticky-cta {
	position: fixed;
	bottom: 0;
	inset-inline: 0;
	background: var(--lp-bg-surface);
	padding: 12px 20px;
	padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
	box-shadow: 0 -4px 16px rgba(0,0,0,.50);
	border-block-start: 1px solid var(--lp-border-strong);
	z-index: 100;
	text-align: center;
	display: none;
}

.lp-sticky-cta:not([hidden]) {
	display: block;
}

.lp-cta--sticky {
	width: 100%;
	justify-content: center;
	padding: 13px 24px;
}

/* ——— Scroll animations ——— */
.lp-anim-fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 380ms cubic-bezier(0.4, 0, 0.2, 1),
	            transform 380ms cubic-bezier(0, 0, 0.2, 1);
}

.lp-anim-fade-up.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (scripting: none) {
	.lp-anim-fade-up {
		opacity: 1;
		transform: none;
	}
}

/* Stagger children in grids */
.lp-testimonials .lp-anim-fade-up:nth-child(1) { transition-delay: 0ms; }
.lp-testimonials .lp-anim-fade-up:nth-child(2) { transition-delay: 80ms; }
.lp-testimonials .lp-anim-fade-up:nth-child(3) { transition-delay: 160ms; }

.lp-steps__list .lp-anim-fade-up:nth-child(1) { transition-delay: 0ms; }
.lp-steps__list .lp-anim-fade-up:nth-child(2) { transition-delay: 80ms; }
.lp-steps__list .lp-anim-fade-up:nth-child(3) { transition-delay: 160ms; }
.lp-steps__list .lp-anim-fade-up:nth-child(4) { transition-delay: 240ms; }

/* ——— Tablet (768px+) ——— */
@media (min-width: 768px) {
	.lp-hero__sub {
		font-size: 18px;
	}

	.lp-testimonials {
		grid-template-columns: repeat(2, 1fr);
	}

	.lp-footer__text {
		font-size: 12px;
	}

	.lp-sticky-cta {
		display: none !important;
	}
}

/* ——— Desktop (1024px+) ——— */
@media (min-width: 1024px) {
	.lp-testimonials {
		grid-template-columns: repeat(3, 1fr);
	}

	.lp-steps__list {
		flex-direction: row;
		align-items: flex-start;
		gap: 0;
	}

	/* Continuous track from first number-center to last (8.333% = half a 1/6 column) */
	.lp-steps__list::before {
		top: 20px;
		bottom: auto;
		inset-inline: 8.333%;
		width: auto;
		height: 2px;
	}

	/* Horizontal flowing gold pulse (RTL: step 1 right → step 6 left) */
	.lp-steps__list::after {
		top: 19px;
		bottom: auto;
		inset-inline: 8.333%;
		width: auto;
		height: 4px;
		background-image: linear-gradient(
			90deg,
			transparent 0%,
			var(--lp-step-active) 38%,
			var(--lp-gold-light) 50%,
			var(--lp-step-active) 62%,
			transparent 100%
		);
		background-size: 45% 100%;
		animation-name: lp-step-flow-h;
	}

	.lp-step {
		flex: 1;
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0 16px;
		position: relative;
	}

	.lp-step__number {
		margin-block-end: 14px;
	}

	.lp-step__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		background: var(--lp-gold-muted);
		border-radius: var(--lp-radius-md);
		color: var(--lp-gold-light);
		margin-block-end: 14px;
	}

	.lp-step__content {
		padding-top: 0;
	}

	.lp-step__title {
		font-size: 17px;
	}

	.lp-step__body {
		font-size: 14px;
	}
}

/* ——— prefers-reduced-motion ——— */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* ============================================================ */
/* ——— New landing sections (restructure 2026) ——— */
/* ============================================================ */

/* Shared helpers */
.lp-section-title--invert {
	color: var(--lp-text-primary);
}

.lp-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.lp-ico-check {
	flex-shrink: 0;
	color: var(--lp-yes);
}

.lp-ico-cross {
	flex-shrink: 0;
	color: var(--lp-no);
}

/* ——— VIDEO ——— */
.lp-video {
	background: var(--lp-bg-surface);
	padding-block: 64px;
}

.lp-video__inner {
	text-align: center;
}

.lp-video__body p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	margin: 0 0 12px;
	max-width: 580px;
	margin-inline: auto;
}

.lp-video__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	width: 100%;
	max-width: 720px;
	margin: 28px auto;
	border-radius: var(--lp-radius-lg);
	background:
		radial-gradient(circle at center, var(--lp-gold-glow), transparent 70%),
		var(--lp-bg-deep);
	box-shadow: var(--lp-shadow-2);
	border: 1px solid var(--lp-border);
	cursor: pointer;
	transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-video__frame:hover,
.lp-video__frame:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--lp-shadow-gold);
	outline: none;
}

.lp-video__play {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	border-radius: var(--lp-radius-full);
	background: rgba(200,151,58,0.92);
	color: #0C0C0E;
	box-shadow: var(--lp-shadow-gold);
	padding-inline-start: 4px;
}

/* ——— IMAGINE ——— */
.lp-imagine {
	background: var(--lp-bg-surface-2);
	padding-block: 64px;
}

.lp-imagine__inner {
	text-align: center;
}

.lp-imagine__text p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-text-primary);
	margin: 0 0 16px;
	max-width: 600px;
	margin-inline: auto;
}

.lp-imagine__text p:last-child {
	font-weight: 700;
	color: var(--lp-gold-light);
	font-size: 19px;
}

/* ——— EARNINGS TABLE ——— */
.lp-earnings {
	background: var(--lp-bg-surface);
	padding-block: 64px;
	border-block: 1px solid var(--lp-border);
}

.lp-earnings__grid {
	display: grid;
	gap: 20px;
	margin-block-start: 36px;
}

.lp-earnings__col {
	background: var(--lp-bg-surface-2);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-lg);
	padding: 24px;
	box-shadow: var(--lp-shadow-1);
}

.lp-earnings__col-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--lp-gold-light);
	margin: 0 0 16px;
	padding-block-end: 12px;
	border-block-end: 2px solid var(--lp-border-strong);
}

.lp-earnings__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lp-earnings__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--lp-text-primary);
}

.lp-earnings__foot {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--lp-text-primary);
	margin: 32px 0 0;
}

/* ——— REALITY (no candy) ——— */
.lp-reality {
	background: var(--lp-bg-surface-2);
	padding-block: 64px;
}

.lp-reality__inner {
	text-align: center;
}

.lp-reality__body p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	margin: 0 0 16px;
	max-width: 600px;
	margin-inline: auto;
}

/* ——— HERE (haagala enters) ——— */
.lp-here {
	background: var(--lp-bg-surface);
	padding-block: 64px;
}

.lp-here__inner {
	text-align: center;
}

.lp-here__body {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	margin: 0 auto 32px;
	max-width: 620px;
}

.lp-here__flow {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 420px;
	margin-inline: auto;
}

.lp-here__step {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--lp-bg-surface-2);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-full);
	padding: 12px 20px;
	font-size: 16px;
	font-weight: 600;
	color: var(--lp-text-primary);
	box-shadow: var(--lp-shadow-1);
}

.lp-here__num {
	flex-shrink: 0;
	width: 28px;
	height: 28px;
	border-radius: var(--lp-radius-full);
	background: var(--lp-gold);
	color: #0C0C0E;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ——— COMPARE ——— */
.lp-compare {
	background: var(--lp-bg-surface-2);
	padding-block: 64px;
}

.lp-compare__grid {
	display: grid;
	gap: 20px;
	margin-block-start: 36px;
}

.lp-compare__col {
	border-radius: var(--lp-radius-lg);
	padding: 24px;
	box-shadow: var(--lp-shadow-1);
}

.lp-compare__col--bad {
	background: rgba(239,83,80,0.08);
	border: 1px solid rgba(239,83,80,0.25);
}

.lp-compare__col--good {
	background: rgba(76,175,80,0.08);
	border: 1px solid rgba(76,175,80,0.25);
}

.lp-compare__col-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 16px;
	text-align: center;
}

.lp-compare__col--bad .lp-compare__col-title  { color: var(--lp-no); }
.lp-compare__col--good .lp-compare__col-title { color: var(--lp-yes); }

.lp-compare__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lp-compare__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--lp-text-primary);
}

/* ——— LEAGUE ——— */
.lp-league {
	background: var(--lp-bg-surface);
	padding-block: 64px;
}

.lp-league__grid {
	list-style: none;
	margin: 36px 0 0;
	padding: 0;
	display: grid;
	gap: 16px;
}

.lp-league__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background: var(--lp-bg-surface-2);
	border: 1px solid var(--lp-border);
	border-radius: var(--lp-radius-md);
	padding: 18px 20px;
	box-shadow: var(--lp-shadow-1);
	transition: border-color var(--lp-transition), box-shadow var(--lp-trans-slow), transform var(--lp-trans-slow);
}

.lp-league__item:hover {
	border-color: var(--lp-border-strong);
	box-shadow: var(--lp-shadow-gold);
	transform: translateY(-2px);
}

.lp-league__text {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.lp-league__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--lp-text-primary);
	line-height: 1.35;
}

.lp-league__body {
	font-size: 14px;
	line-height: 1.55;
	color: var(--lp-text-secondary);
}

/* ——— AUDIENCE (fit / unfit) ——— */
.lp-audience {
	background: var(--lp-bg-surface-2);
	padding-block: 64px;
}

.lp-audience__cols {
	display: grid;
	gap: 20px;
}

.lp-audience__col {
	border-radius: var(--lp-radius-lg);
	padding: 28px 24px;
	box-shadow: var(--lp-shadow-1);
}

.lp-audience__col--fit {
	background: rgba(76,175,80,0.08);
	border: 1px solid rgba(76,175,80,0.25);
}

.lp-audience__col--unfit {
	background: rgba(239,83,80,0.08);
	border: 1px solid rgba(239,83,80,0.25);
}

.lp-audience__title {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 18px;
	text-align: center;
}

.lp-audience__col--fit .lp-audience__title   { color: var(--lp-yes); }
.lp-audience__col--unfit .lp-audience__title { color: var(--lp-no); }

.lp-audience__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lp-audience__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--lp-text-primary);
}

.lp-audience__foot {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--lp-text-primary);
	margin: 32px auto 0;
	max-width: 560px;
	line-height: 1.5;
}

/* ——— YEAR FROM NOW ——— */
.lp-year {
	background: var(--lp-bg-deep);
	background-image: radial-gradient(ellipse 80% 60% at 50% 50%, var(--lp-gold-glow-strong) 0%, transparent 70%);
	padding-block: 72px;
}

.lp-year__inner {
	text-align: center;
}

.lp-year__body p {
	font-size: 17px;
	line-height: 1.75;
	color: var(--lp-text-secondary);
	margin: 0 0 18px;
	max-width: 620px;
	margin-inline: auto;
}

.lp-year__body p:nth-child(2) {
	font-weight: 700;
	font-size: 20px;
	color: var(--lp-text-primary);
}

/* ——— LIMITED SPOTS ——— */
.lp-limited {
	background: var(--lp-bg-surface);
	padding-block: 64px;
}

.lp-limited__inner {
	text-align: center;
}

.lp-limited__body p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--lp-text-secondary);
	margin: 0 0 14px;
	max-width: 620px;
	margin-inline: auto;
}

/* ——— STEPS foot + CTA micro ——— */
.lp-steps__foot {
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	color: var(--lp-text-primary);
	margin: 36px 0 0;
}

.lp-cta-bottom__micro {
	font-size: 12px;
	line-height: 1.6;
	color: var(--lp-text-secondary);
	margin: 18px auto 0;
	max-width: 540px;
}

/* ——— FOOTER brand additions ——— */
.lp-footer__brand {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, var(--lp-gold-light), var(--lp-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin: 0 0 8px;
}

.lp-footer__tagline {
	font-size: 13px;
	line-height: 1.6;
	color: var(--lp-text-secondary);
	margin: 0 auto 16px;
	max-width: 560px;
}

/* Stagger for 6-step + league + audience grids */
.lp-steps__list .lp-anim-fade-up:nth-child(5) { transition-delay: 320ms; }
.lp-steps__list .lp-anim-fade-up:nth-child(6) { transition-delay: 400ms; }

/* ——— Tablet (768px+) — new sections ——— */
@media (min-width: 768px) {
	.lp-earnings__grid,
	.lp-compare__grid,
	.lp-audience__cols {
		grid-template-columns: repeat(2, 1fr);
	}

	.lp-league__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lp-here__flow {
		flex-direction: row;
		max-width: none;
		flex-wrap: wrap;
		justify-content: center;
	}

	.lp-video__body p {
		font-size: 18px;
	}

	.lp-imagine__text p {
		font-size: 18px;
	}

	.lp-earnings__foot,
	.lp-audience__foot {
		font-size: 20px;
	}
}
