/**
 * LicenceForge Landing Page Styles — Premium Rebuild
 *
 * SaaS-style landing page with dark hero, glass-morphism,
 * gradient text, generous spacing, and micro-interactions.
 *
 * @package LicenceForge_Theme
 * @since 2.0.0
 */

/* ─────────────────────────────────────────────
   CUSTOM PROPERTIES (LANDING-SPECIFIC)
   ───────────────────────────────────────────── */

.lf-landing {
	--lf-hero-bg: #0d1f30;
	--lf-hero-bg-2: #132e1e;
	--lf-dark: #0f2440;
	--lf-dark-2: #0a1929;
	--lf-gradient-start: #43895c;
	--lf-gradient-end: #2da8a8;
	--lf-glass: rgba(255, 255, 255, 0.06);
	--lf-glass-border: rgba(255, 255, 255, 0.1);
	--lf-section-gap: clamp(5rem, 8vw, 8rem);
	--lf-text-primary: #f1f5f9;
	--lf-text-muted: #94a3b8;
}

/* ─────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────── */

.lf-landing {
	overflow-x: hidden;
	background: var(--theme-352-white, #fff);
}

.lf-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.lf-container--narrow {
	max-width: 800px;
}

/* ─────────────────────────────────────────────
   SECTION DEFAULTS
   ───────────────────────────────────────────── */

.lf-landing section {
	padding: var(--lf-section-gap) 0;
	position: relative;
}

.lf-section__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--theme-352-gray-900, #111827);
	text-align: center;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.lf-section__title--left {
	text-align: left;
}

.lf-section__subtitle {
	font-size: clamp(1rem, 1.5vw, 1.175rem);
	color: var(--theme-352-gray-500, #6b7280);
	text-align: center;
	margin: 0 auto 3.5rem;
	max-width: 560px;
	line-height: 1.6;
}

/* Gradient accent text */
.lf-gradient-text {
	background: linear-gradient(135deg, var(--lf-gradient-start), var(--lf-gradient-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lf-gradient-text-light {
	background: linear-gradient(135deg, #6ee7a0, #5eead4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ─────────────────────────────────────────────
   BUTTONS
   ───────────────────────────────────────────── */

.lf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 10px;
	transition: all 0.2s ease;
	cursor: pointer;
	border: 2px solid transparent;
	font-size: 1rem;
	padding: 0.7rem 1.5rem;
	white-space: nowrap;
	position: relative;
}

.lf-btn--lg {
	font-size: 1.1rem;
	padding: 0.9rem 2rem;
}

.lf-btn--primary {
	background: var(--theme-352-accent, #43895c);
	color: #fff;
	border-color: var(--theme-352-accent, #43895c);
}

.lf-btn--primary:hover {
	background: var(--theme-352-accent-dark, #357548);
	border-color: var(--theme-352-accent-dark, #357548);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(67, 137, 92, 0.35);
}

.lf-btn--primary .lf-btn__arrow {
	transition: transform 0.2s ease;
}

.lf-btn--primary:hover .lf-btn__arrow {
	transform: translateX(3px);
}

.lf-btn--ghost-light {
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	border-color: rgba(255, 255, 255, 0.25);
}

.lf-btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
	transform: translateY(-2px);
}

.lf-btn--ghost {
	background: transparent;
	color: var(--theme-352-gray-600, #4b5563);
	border-color: var(--theme-352-gray-300, #d1d5db);
}

.lf-btn--ghost:hover {
	background: var(--theme-352-gray-100, #f3f4f6);
	color: var(--theme-352-gray-900, #111827);
	transform: translateY(-2px);
}

.lf-btn--full {
	width: 100%;
}

.lf-btn:focus-visible {
	outline: 3px solid var(--theme-352-accent, #43895c);
	outline-offset: 2px;
}

/* ─────────────────────────────────────────────
   TERMINAL / CODE BLOCKS
   ───────────────────────────────────────────── */

.lf-terminal__bar {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.lf-terminal__dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.lf-terminal__dot--red { background: #ef4444; }
.lf-terminal__dot--yellow { background: #eab308; }
.lf-terminal__dot--green { background: #22c55e; }

.lf-terminal__title {
	margin-left: 0.5rem;
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.4);
}

.lf-terminal__body {
	padding: 1.25rem;
	margin: 0;
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.85rem;
	line-height: 1.75;
	color: #e2e8f0;
	overflow-x: auto;
	background: transparent;
}

.lf-terminal__body code {
	font-family: inherit;
	color: inherit;
	background: none;
}

/* Syntax highlighting */
.lf-code-comment { color: #64748b; }
.lf-code-key { color: #7dd3fc; }
.lf-code-string { color: #86efac; }
.lf-code-bool { color: #fbbf24; }
.lf-code-num { color: #fbbf24; }
.lf-code-keyword { color: #c084fc; }

/* ─────────────────────────────────────────────
   1. HERO
   ───────────────────────────────────────────── */

.lf-hero {
	position: relative;
	padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
	background: linear-gradient(160deg, var(--lf-hero-bg) 0%, var(--lf-dark) 50%, var(--lf-hero-bg-2) 100%);
	overflow: hidden;
}

.lf-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.lf-hero__dots {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.4;
}

.lf-hero__gradient {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(67, 137, 92, 0.15) 0%, transparent 70%),
	            radial-gradient(ellipse 60% 50% at 20% 80%, rgba(45, 168, 168, 0.1) 0%, transparent 60%);
}

.lf-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	position: relative;
	z-index: 1;
}

.lf-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #86efac;
	background: rgba(67, 137, 92, 0.15);
	border: 1px solid rgba(67, 137, 92, 0.3);
	padding: 0.4rem 1rem;
	border-radius: 9999px;
	margin-bottom: 1.75rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.lf-hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #86efac;
	animation: lf-pulse 2s ease-in-out infinite;
}

@keyframes lf-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.8); }
}

.lf-hero__title {
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 1.5rem;
	letter-spacing: -0.03em;
}

.lf-hero__title-gradient {
	display: block;
	background: linear-gradient(135deg, #86efac 0%, #5eead4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.lf-hero__subtitle {
	font-size: clamp(1rem, 1.5vw, 1.175rem);
	color: var(--lf-text-muted);
	line-height: 1.7;
	margin: 0 0 2.25rem;
	max-width: 520px;
}

.lf-hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

/* Hero terminal */
.lf-hero__terminal {
	background: rgba(15, 36, 64, 0.7);
	border: 1px solid var(--lf-glass-border);
	border-radius: 16px;
	overflow: hidden;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
	            0 0 0 1px rgba(255, 255, 255, 0.05);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.lf-hero__terminal:hover {
	transform: translateY(-4px) rotateX(1deg);
	box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5),
	            0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lf-typed-terminal .lf-terminal__body {
	min-height: 320px;
}

.lf-typed-cursor {
	display: inline-block;
	width: 8px;
	height: 1.15em;
	background: var(--theme-352-accent, #43895c);
	vertical-align: text-bottom;
	animation: lf-blink 0.7s step-end infinite;
	border-radius: 1px;
}

@keyframes lf-blink {
	50% { opacity: 0; }
}

/* ─────────────────────────────────────────────
   2. SOCIAL PROOF / LOGOS
   ───────────────────────────────────────────── */

.lf-logos {
	padding: 2.5rem 0;
	background: var(--theme-352-gray-50, #f9fafb);
	border-bottom: 1px solid var(--theme-352-gray-200, #e5e7eb);
	overflow: hidden;
}

.lf-logos__heading {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--theme-352-gray-400, #9ca3af);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 1.5rem;
}

.lf-logos__track {
	position: relative;
	overflow: hidden;
	mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.lf-logos__scroll {
	display: flex;
	gap: 3rem;
	animation: lf-marquee 30s linear infinite;
	width: max-content;
}

.lf-logos__item {
	flex-shrink: 0;
	opacity: 0.45;
	transition: opacity 0.3s ease;
}

.lf-logos__item:hover {
	opacity: 0.75;
}

.lf-logos__item svg {
	width: 140px;
	height: 40px;
	color: var(--theme-352-gray-500, #6b7280);
}

@keyframes lf-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   3. PROBLEM → SOLUTION
   ───────────────────────────────────────────── */

.lf-ps {
	background: var(--theme-352-white, #fff);
}

.lf-ps__header {
	text-align: center;
	margin-bottom: 3.5rem;
}

.lf-ps__grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 2rem;
	align-items: start;
}

.lf-ps__col {
	padding: 2.5rem;
	border-radius: 16px;
	border: 1px solid var(--theme-352-gray-200, #e5e7eb);
}

.lf-ps__col--problem {
	background: var(--theme-352-gray-50, #f9fafb);
}

.lf-ps__col--solution {
	background: linear-gradient(135deg, rgba(67, 137, 92, 0.04) 0%, rgba(45, 168, 168, 0.04) 100%);
	border-color: rgba(67, 137, 92, 0.2);
}

.lf-ps__col-title {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-size: 1.125rem;
	font-weight: 700;
	margin: 0 0 1.5rem;
}

.lf-ps__col--problem .lf-ps__col-title {
	color: var(--theme-352-gray-700, #374151);
}

.lf-ps__col--problem .lf-ps__col-title svg {
	color: #ef4444;
}

.lf-ps__col--solution .lf-ps__col-title {
	color: var(--theme-352-accent, #43895c);
}

.lf-ps__col--solution .lf-ps__col-title svg {
	color: var(--theme-352-accent, #43895c);
}

.lf-ps__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.lf-ps__list li {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.lf-ps__list li strong {
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--theme-352-gray-800, #1f2937);
}

.lf-ps__list li span {
	font-size: 0.875rem;
	color: var(--theme-352-gray-500, #6b7280);
	line-height: 1.5;
}

.lf-ps__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 3rem;
}

.lf-ps__arrow {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--theme-352-accent, #43895c);
	color: #fff;
	box-shadow: 0 4px 14px rgba(67, 137, 92, 0.3);
}

/* ─────────────────────────────────────────────
   4. FEATURES SHOWCASE (TABBED)
   ───────────────────────────────────────────── */

.lf-features {
	background: var(--lf-dark);
	color: var(--lf-text-primary);
}

.lf-features .lf-section__title {
	color: #fff;
}

.lf-features .lf-section__subtitle {
	color: var(--lf-text-muted);
}

.lf-features__tabs {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

.lf-features__tab {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.25rem;
	border: 1px solid var(--lf-glass-border);
	border-radius: 10px;
	background: var(--lf-glass);
	color: var(--lf-text-muted);
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.25s ease;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.lf-features__tab:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.lf-features__tab--active {
	background: rgba(67, 137, 92, 0.2);
	border-color: rgba(67, 137, 92, 0.4);
	color: #86efac;
}

.lf-features__tab:focus-visible {
	outline: 2px solid #86efac;
	outline-offset: 2px;
}

.lf-features__panel {
	display: none;
	grid-template-columns: 1fr 1fr;
	gap: 2.5rem;
	align-items: start;
	background: var(--lf-glass);
	border: 1px solid var(--lf-glass-border);
	border-radius: 20px;
	padding: 2.5rem;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	animation: lf-fadeIn 0.35s ease;
}

.lf-features__panel--active {
	display: grid;
}

@keyframes lf-fadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.lf-features__panel-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 1rem;
}

.lf-features__panel-content p {
	font-size: 1rem;
	color: var(--lf-text-muted);
	line-height: 1.65;
	margin: 0 0 1.5rem;
}

.lf-features__checklist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.lf-features__checklist li {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	padding-left: 1.5rem;
	position: relative;
}

.lf-features__checklist li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.35em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lf-gradient-start);
}

.lf-features__panel-code {
	background: rgba(0, 0, 0, 0.3);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	overflow: hidden;
}

/* ─────────────────────────────────────────────
   5. HOW IT WORKS
   ───────────────────────────────────────────── */

.lf-how {
	background: var(--theme-352-white, #fff);
}

.lf-how__steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	max-width: 1000px;
	margin: 0 auto;
}

.lf-how__step {
	flex: 1;
	text-align: center;
	padding: 0 1.5rem;
	position: relative;
}

.lf-how__step-num {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 800;
	color: var(--theme-352-accent, #43895c);
	background: rgba(67, 137, 92, 0.1);
	border: 2px solid rgba(67, 137, 92, 0.2);
	border-radius: 50%;
	margin-bottom: 1rem;
}

.lf-how__step-icon {
	width: 64px;
	height: 64px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 16px;
	background: var(--theme-352-gray-50, #f9fafb);
	border: 1px solid var(--theme-352-gray-200, #e5e7eb);
	color: var(--theme-352-primary, #1b3a55);
	margin-bottom: 1.25rem;
	transition: all 0.3s ease;
}

.lf-how__step:hover .lf-how__step-icon {
	background: var(--theme-352-accent, #43895c);
	border-color: var(--theme-352-accent, #43895c);
	color: #fff;
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(67, 137, 92, 0.25);
}

.lf-how__step-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--theme-352-gray-900, #111827);
	margin: 0 0 0.5rem;
}

.lf-how__step-desc {
	font-size: 0.9rem;
	color: var(--theme-352-gray-500, #6b7280);
	line-height: 1.6;
	margin: 0;
}

.lf-how__connector {
	width: 80px;
	flex-shrink: 0;
	margin-top: 56px;
	color: var(--theme-352-gray-300, #d1d5db);
	opacity: 0;
	transition: opacity 0.6s ease;
}

.lf-how__connector.lf-visible {
	opacity: 1;
}

.lf-how__connector svg {
	display: block;
	width: 80px;
	height: 2px;
}

/* ─────────────────────────────────────────────
   6. CLIENT LIBRARY
   ───────────────────────────────────────────── */

.lf-client {
	background: var(--theme-352-gray-50, #f9fafb);
}

.lf-client__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.lf-client__desc {
	font-size: 1rem;
	color: var(--theme-352-gray-600, #4b5563);
	line-height: 1.7;
	margin: 0 0 1.5rem;
}

.lf-client__desc code {
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.875em;
	background: rgba(27, 58, 85, 0.08);
	color: var(--theme-352-primary, #1b3a55);
	padding: 0.15em 0.4em;
	border-radius: 4px;
}

.lf-client__files {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.lf-client__files li {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.75rem 1rem;
	background: var(--theme-352-white, #fff);
	border-radius: 10px;
	border: 1px solid var(--theme-352-gray-200, #e5e7eb);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lf-client__files li:hover {
	border-color: var(--theme-352-accent-light, #4f9a68);
	box-shadow: 0 2px 8px rgba(67, 137, 92, 0.1);
}

.lf-client__files li code {
	font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--theme-352-gray-900, #111827);
}

.lf-client__files li span {
	font-size: 0.8rem;
	color: var(--theme-352-gray-500, #6b7280);
}

.lf-client__note {
	font-size: 0.875rem;
	color: var(--theme-352-gray-500, #6b7280);
	line-height: 1.6;
	margin: 0;
}

.lf-client__code {
	background: var(--lf-dark);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.lf-client__copy {
	position: absolute;
	top: 0.6rem;
	right: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.75rem;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.2s ease;
}

.lf-client__copy:hover {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.8);
}

.lf-client__copy.lf-copied {
	color: #86efac;
	border-color: rgba(134, 239, 172, 0.3);
}

/* ─────────────────────────────────────────────
   7. STATS
   ───────────────────────────────────────────── */

.lf-stats {
	background: linear-gradient(160deg, var(--lf-dark-2) 0%, var(--lf-dark) 100%);
	padding: clamp(3rem, 6vw, 5rem) 0;
}

.lf-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.lf-stats__item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 1.5rem;
	background: var(--lf-glass);
	border: 1px solid var(--lf-glass-border);
	border-radius: 16px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.lf-stats__number {
	font-size: clamp(2.5rem, 5vw, 3.25rem);
	font-weight: 800;
	color: #fff;
	line-height: 1;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}

.lf-stats__label {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
	font-weight: 500;
}

/* ─────────────────────────────────────────────
   8. COMPARISON TABLE
   ───────────────────────────────────────────── */

.lf-compare {
	background: var(--theme-352-white, #fff);
}

.lf-compare__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: 16px;
	border: 1px solid var(--theme-352-gray-200, #e5e7eb);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.lf-compare__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
	min-width: 640px;
}

.lf-compare__table thead {
	background: var(--theme-352-gray-50, #f9fafb);
}

.lf-compare__table th {
	font-weight: 700;
	color: var(--theme-352-gray-700, #374151);
	padding: 1rem 1.25rem;
	text-align: left;
	border-bottom: 2px solid var(--theme-352-gray-200, #e5e7eb);
	white-space: nowrap;
}

.lf-compare__table td {
	padding: 0.85rem 1.25rem;
	color: var(--theme-352-gray-600, #4b5563);
	border-bottom: 1px solid var(--theme-352-gray-100, #f3f4f6);
	white-space: nowrap;
}

.lf-compare__table tr:last-child td {
	border-bottom: none;
}

.lf-compare__table td:first-child {
	font-weight: 600;
	color: var(--theme-352-gray-700, #374151);
}

.lf-compare__hl {
	background: rgba(67, 137, 92, 0.06);
}

th.lf-compare__hl {
	color: var(--theme-352-accent, #43895c);
}

td.lf-compare__hl {
	font-weight: 600;
	color: var(--theme-352-gray-900, #111827);
}

.lf-icon-check {
	width: 20px;
	height: 20px;
	color: var(--theme-352-accent, #43895c);
}

.lf-icon-cross {
	width: 20px;
	height: 20px;
	color: var(--theme-352-gray-300, #d1d5db);
}

/* ─────────────────────────────────────────────
   9. TESTIMONIALS
   ───────────────────────────────────────────── */

.lf-testimonials {
	background: var(--theme-352-gray-50, #f9fafb);
}

.lf-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.lf-testimonial {
	background: var(--theme-352-white, #fff);
	border: 1px solid var(--theme-352-gray-200, #e5e7eb);
	border-radius: 16px;
	padding: 2rem;
	margin: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lf-testimonial:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.lf-testimonial__stars {
	display: flex;
	gap: 0.15rem;
	margin-bottom: 1rem;
}

.lf-testimonial__stars svg {
	width: 18px;
	height: 18px;
	color: #fbbf24;
}

.lf-testimonial__text {
	font-size: 0.95rem;
	color: var(--theme-352-gray-700, #374151);
	line-height: 1.65;
	margin: 0 0 1.25rem;
}

.lf-testimonial__author {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}

.lf-testimonial__author strong {
	font-size: 0.9rem;
	color: var(--theme-352-gray-900, #111827);
}

.lf-testimonial__author span {
	font-size: 0.8rem;
	color: var(--theme-352-gray-500, #6b7280);
}

/* ─────────────────────────────────────────────
   10. FULL FEATURE LIST
   ───────────────────────────────────────────── */

.lf-all-features {
	background: var(--theme-352-white, #fff);
}

.lf-all-features__columns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem 2.5rem;
}

.lf-all-features__col h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--theme-352-gray-900, #111827);
	margin: 0 0 0.75rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--theme-352-accent, #43895c);
}

.lf-all-features__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.lf-all-features__col li {
	font-size: 0.875rem;
	color: var(--theme-352-gray-600, #4b5563);
	padding: 0.45rem 0;
	border-bottom: 1px solid var(--theme-352-gray-100, #f3f4f6);
}

.lf-all-features__col li:last-child {
	border-bottom: none;
}

/* ─────────────────────────────────────────────
   11. PRICING
   ───────────────────────────────────────────── */

.lf-pricing {
	background: var(--theme-352-gray-50, #f9fafb);
}

.lf-pricing__card {
	position: relative;
	background: var(--theme-352-white, #fff);
	border: 2px solid var(--theme-352-accent, #43895c);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 2rem;
}

.lf-pricing__glow {
	position: absolute;
	inset: -2px;
	border-radius: 22px;
	background: linear-gradient(135deg, rgba(67, 137, 92, 0.2), rgba(45, 168, 168, 0.1));
	filter: blur(20px);
	opacity: 0.5;
	z-index: -1;
	transition: opacity 0.3s ease;
}

.lf-pricing__card:hover .lf-pricing__glow {
	opacity: 0.8;
}

.lf-pricing__header {
	text-align: center;
	padding: 2.5rem 2rem 1.5rem;
	background: linear-gradient(180deg, rgba(67, 137, 92, 0.04) 0%, transparent 100%);
}

.lf-pricing__label {
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--theme-352-accent, #43895c);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 1rem;
}

.lf-pricing__amount {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0.125rem;
	margin-bottom: 0.5rem;
}

.lf-pricing__currency {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--theme-352-gray-900, #111827);
	line-height: 1;
	margin-top: 0.75rem;
}

.lf-pricing__number {
	font-size: 5rem;
	font-weight: 800;
	color: var(--theme-352-gray-900, #111827);
	line-height: 1;
	letter-spacing: -0.04em;
}

.lf-pricing__interval {
	font-size: 0.9rem;
	color: var(--theme-352-gray-500, #6b7280);
	margin: 0;
}

.lf-pricing__includes {
	list-style: none;
	padding: 0 2rem 1.5rem;
	margin: 0;
}

.lf-pricing__includes li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 0.7rem 0;
	font-size: 0.95rem;
	color: var(--theme-352-gray-700, #374151);
	border-bottom: 1px solid var(--theme-352-gray-100, #f3f4f6);
}

.lf-pricing__includes li:last-child {
	border-bottom: none;
}

.lf-pricing__includes svg {
	width: 20px;
	height: 20px;
	color: var(--theme-352-accent, #43895c);
	flex-shrink: 0;
	margin-top: 2px;
}

.lf-pricing__card .lf-btn {
	margin: 0 2rem 2rem;
	width: calc(100% - 4rem);
}

.lf-pricing__note {
	text-align: center;
}

.lf-pricing__note p {
	font-size: 0.875rem;
	color: var(--theme-352-gray-500, #6b7280);
	line-height: 1.65;
	max-width: 600px;
	margin: 0 auto;
}

.lf-pricing__note strong {
	color: var(--theme-352-gray-700, #374151);
}

/* ─────────────────────────────────────────────
   12. FAQ
   ───────────────────────────────────────────── */

.lf-faq {
	background: var(--theme-352-white, #fff);
}

.lf-faq__list {
	display: flex;
	flex-direction: column;
}

.lf-faq__item {
	border-bottom: 1px solid var(--theme-352-gray-200, #e5e7eb);
}

.lf-faq__item:first-child {
	border-top: 1px solid var(--theme-352-gray-200, #e5e7eb);
}

.lf-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
	color: var(--theme-352-gray-900, #111827);
	padding: 1.25rem 0;
	cursor: pointer;
	background: none;
	border: none;
	text-align: left;
	font-family: inherit;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.lf-faq__question:hover {
	color: var(--theme-352-accent, #43895c);
}

.lf-faq__chevron {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	margin-left: 1rem;
	color: var(--theme-352-gray-400, #9ca3af);
	transition: transform 0.3s ease, color 0.3s ease;
}

.lf-faq__item.lf-faq--open .lf-faq__chevron {
	transform: rotate(180deg);
	color: var(--theme-352-accent, #43895c);
}

.lf-faq__answer {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
	padding: 0;
}

.lf-faq__answer[hidden] {
	display: block;
}

.lf-faq__item.lf-faq--open .lf-faq__answer {
	opacity: 1;
	padding: 0 0 1.25rem;
}

.lf-faq__answer p {
	font-size: 0.9rem;
	color: var(--theme-352-gray-600, #4b5563);
	line-height: 1.65;
	margin: 0;
}

.lf-faq__question:focus-visible {
	outline: 3px solid var(--theme-352-accent, #43895c);
	outline-offset: -2px;
	border-radius: 4px;
}

/* ─────────────────────────────────────────────
   13. FINAL CTA
   ───────────────────────────────────────────── */

.lf-cta {
	position: relative;
	background: linear-gradient(160deg, var(--lf-dark-2) 0%, var(--lf-dark) 50%, var(--lf-hero-bg-2) 100%);
	text-align: center;
	overflow: hidden;
}

.lf-cta__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.lf-cta__particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0.3;
}

.lf-cta .lf-container {
	position: relative;
	z-index: 1;
}

.lf-cta__title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: #fff;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
}

.lf-cta__subtitle {
	font-size: 1.1rem;
	color: var(--lf-text-muted);
	margin: 0 0 2.25rem;
	line-height: 1.6;
}

.lf-cta__actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.lf-cta .lf-btn--primary {
	background: var(--theme-352-accent, #43895c);
	color: #fff;
	border-color: var(--theme-352-accent, #43895c);
}

.lf-cta .lf-btn--primary:hover {
	background: var(--theme-352-accent-light, #4f9a68);
	border-color: var(--theme-352-accent-light, #4f9a68);
	box-shadow: 0 8px 25px rgba(67, 137, 92, 0.4);
}

.lf-cta .lf-btn:focus-visible {
	outline-color: #fff;
}

/* ─────────────────────────────────────────────
   SCROLL ANIMATIONS
   ───────────────────────────────────────────── */

.lf-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.lf-animate.lf-visible {
	opacity: 1;
	transform: translateY(0);
}

.lf-animate--left {
	transform: translateX(-30px);
}

.lf-animate--right {
	transform: translateX(30px);
}

.lf-animate--scale {
	transform: scale(0.95);
}

.lf-animate--left.lf-visible,
.lf-animate--right.lf-visible,
.lf-animate--scale.lf-visible {
	transform: translateX(0) scale(1);
}

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */

@media (max-width: 1024px) {
	.lf-hero__grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.lf-hero__subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.lf-hero__actions {
		justify-content: center;
	}

	.lf-hero__visual {
		max-width: 560px;
		margin: 0 auto;
	}

	.lf-features__panel {
		grid-template-columns: 1fr;
	}

	.lf-client__grid {
		grid-template-columns: 1fr;
	}

	.lf-ps__grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.lf-ps__divider {
		padding: 0;
		transform: rotate(90deg);
	}

	.lf-how__steps {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}

	.lf-how__connector {
		width: 2px;
		height: 32px;
		margin: 0;
		transform: rotate(90deg);
	}

	.lf-how__connector svg {
		width: 32px;
		height: 2px;
	}

	.lf-testimonials__grid {
		grid-template-columns: 1fr;
		max-width: 560px;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.lf-all-features__columns {
		grid-template-columns: repeat(2, 1fr);
	}

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

	.lf-features__tabs {
		gap: 0.35rem;
	}

	.lf-features__tab {
		font-size: 0.8rem;
		padding: 0.5rem 0.9rem;
	}

	.lf-features__tab svg {
		display: none;
	}
}

@media (max-width: 640px) {
	.lf-landing section {
		padding: clamp(3rem, 6vw, 5rem) 0;
	}

	.lf-hero {
		padding: 4rem 0 3rem;
	}

	.lf-hero__actions,
	.lf-cta__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.lf-features__panel {
		padding: 1.5rem;
	}

	.lf-all-features__columns {
		grid-template-columns: 1fr;
	}

	.lf-stats__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.lf-stats__number {
		font-size: 2.25rem;
	}

	.lf-pricing__number {
		font-size: 3.75rem;
	}

	.lf-compare__table {
		min-width: 640px;
	}

	.lf-ps__col {
		padding: 1.5rem;
	}

	.lf-logos__item svg {
		width: 100px;
		height: 30px;
	}
}

/* ─────────────────────────────────────────────
   REDUCED MOTION
   ───────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
	.lf-animate {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.lf-btn,
	.lf-testimonial,
	.lf-how__step-icon,
	.lf-hero__terminal,
	.lf-faq__chevron,
	.lf-faq__answer,
	.lf-features__tab,
	.lf-client__files li,
	.lf-client__copy,
	.lf-pricing__glow,
	.lf-ps__col,
	.lf-how__connector {
		transition: none;
	}

	.lf-typed-cursor,
	.lf-hero__badge-dot {
		animation: none;
	}

	.lf-logos__scroll {
		animation: none;
	}

	.lf-how__connector {
		opacity: 1;
	}
}
