/* ==========================================================================
   Self-hosted Fonts - Eliminates render-blocking external requests
   ========================================================================== */

/* General Sans - Display font */
@font-face {
	font-family: 'General Sans';
	src: url('../fonts/general-sans-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'General Sans';
	src: url('../fonts/general-sans-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'General Sans';
	src: url('../fonts/general-sans-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'General Sans';
	src: url('../fonts/general-sans-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* DM Sans - Body font */
@font-face {
	font-family: 'DM Sans';
	src: url('../fonts/dm-sans-regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'DM Sans';
	src: url('../fonts/dm-sans-variable.woff2') format('woff2');
	font-weight: 300 600;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
   Accessibility - Skip Link
   ========================================================================== */

.llb-skip-link {
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--llb-accent-primary, #1fc499);
	color: #fff;
	padding: 0.75rem 1.5rem;
	border-radius: 0 0 8px 8px;
	text-decoration: none;
	font-weight: 600;
	z-index: 100001;
	transition: top 0.2s ease;
}

.llb-skip-link:focus {
	top: 0;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* ==========================================================================
   WordPress Theme Reset - Prevents theme styles from affecting blocks
   ========================================================================== */

/* Reset Gutenberg layout margins */
.llb-wrapper :is(.is-layout-flow, .is-layout-constrained) > * {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

/* Reset theme content spacing variable */
.llb-wrapper {
    --theme-content-spacing: 0;
    --wp--style--block-gap: 0;
}

/* Reset header margins and enforce font */
.llb-wrapper h1,
.llb-wrapper h2,
.llb-wrapper h3,
.llb-wrapper h4,
.llb-wrapper h5,
.llb-wrapper h6 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
    font-family: var(--llb-font-display, "General Sans", sans-serif) !important;
}

/* Reset body text and enforce font */
/* Note: span is excluded - it should inherit from parent (heading or paragraph) */
.llb-wrapper p,
.llb-wrapper a,
.llb-wrapper li,
.llb-wrapper button {
    font-family: var(--llb-font-body, "DM Sans", sans-serif) !important;
}

/* Reset other common elements */
.llb-wrapper p,
.llb-wrapper ul,
.llb-wrapper ol,
.llb-wrapper figure {
    margin-block-start: revert;
    margin-block-end: revert;
}


.llb-wrapper {
	/* Dark mode colors */
	--llb-bg-primary: #161616;
	--llb-bg-secondary: #1a1a1a;
	--llb-bg-tertiary: #222;
	--llb-bg-card: rgba(30, 30, 30, .8);
	/* Light mode colors */
	--llb-bg-light: #f8f9fa;
	--llb-bg-light-secondary: #fff;
	--llb-bg-light-card: rgba(255, 255, 255, .9);
	/* Text colors */
	--llb-text-primary: #fff;
	--llb-text-secondary: #b0b0b0;
	--llb-text-muted: #9a9a9a;
	--llb-text-dark: #161616;
	--llb-text-dark-secondary: #4a4a4a;
	--llb-text-dark-muted: #6b6b6b;
	/* Accent colors */
	--llb-accent-primary: #1fc499;
	--llb-accent-secondary: #09485c;
	--llb-accent-tertiary: #f5b833;
	--llb-gradient-accent: linear-gradient(135deg, var(--llb-accent-primary), var(--llb-accent-secondary));
	--llb-gradient-accent-horizontal: linear-gradient(90deg, var(--llb-accent-primary), var(--llb-accent-secondary));
	--llb-gradient-accent-warm: linear-gradient(135deg, var(--llb-accent-primary), var(--llb-accent-tertiary));
	/* Borders and effects */
	--llb-border-subtle: rgba(255, 255, 255, .08);
	--llb-border-subtle-light: rgba(22, 22, 22, .08);
	--llb-border-glow: rgba(31, 196, 153, .4);
	--llb-shadow-glow: 0 0 60px rgba(31, 196, 153, .2);
	--llb-font-display: "General Sans", sans-serif;
	--llb-font-body: "DM Sans", sans-serif;
	--llb-radius-sm: 8px;
	--llb-radius-md: 16px;
	--llb-radius-lg: 24px;
	--llb-radius-xl: 32px;
	--llb-spacing-xs: .5rem;
	--llb-spacing-sm: 1rem;
	--llb-spacing-md: 1.5rem;
	--llb-spacing-lg: 2rem;
	--llb-spacing-xl: 3rem;
	--llb-spacing-2xl: 5rem;
	--llb-spacing-3xl: 8rem;
	--llb-max-width: 1200px;
	--llb-transition-fast: .2s cubic-bezier(.4, 0, .2, 1);
	--llb-transition-smooth: .4s cubic-bezier(.4, 0, .2, 1);
	--llb-transition-bounce: .6s cubic-bezier(.34, 1.56, .64, 1);
}

.llb-wrapper *, .llb-wrapper *::before, .llb-wrapper *::after {
	margin: 0 !important;
	padding: 0 !important;
	box-sizing: border-box;
}

.llb-wrapper {
	scroll-behavior: smooth;
	font-size: 16px;
}

.llb-wrapper {
	font-family: var(--llb-font-body);
	background-color: var(--llb-bg-primary);
	color: var(--llb-text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Selection */
.llb-wrapper ::selection {
	background: var(--llb-accent-primary);
	color: white;
}

/* Container */
.llb-wrapper .llb-container {
	max-width: var(--llb-max-width);
	margin: 0 auto !important;
	padding: 0 var(--llb-spacing-md) !important;
}

/* Typography */
.llb-wrapper h1, .llb-wrapper h2, .llb-wrapper h3, .llb-wrapper h4, .llb-wrapper h5, .llb-wrapper h6 {
	color: inherit;
	font-family: var(--llb-font-display);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -.02em;
}

.llb-wrapper h1 {
	color: inherit;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.llb-wrapper h2 {
	color: inherit;
	font-size: clamp(2rem, 4vw, 3rem);
}

.llb-wrapper h3 {
	color: inherit;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.llb-wrapper h4 {
	color: inherit;
	font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.llb-wrapper p {
	color: var(--llb-text-secondary);
	font-size: 1.1rem;
}

.llb-wrapper .llb-text-gradient {
	background: var(--llb-gradient-accent);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Light section text gradient override */
.llb-wrapper .llb-section-light .llb-text-gradient, .llb-wrapper .llb-intro .llb-text-gradient, .llb-wrapper .llb-problem .llb-text-gradient, .llb-wrapper .llb-how-it-works .llb-text-gradient, .llb-wrapper .llb-offer .llb-text-gradient, .llb-wrapper .llb-guarantee .llb-text-gradient {
	background: var(--llb-accent-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Buttons */
.llb-wrapper .llb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--llb-spacing-xs);
	padding: 1rem 2rem !important;
	font-family: var(--llb-font-display);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border-radius: var(--llb-radius-md);
	border: none;
	cursor: pointer;
	transition: all var(--llb-transition-smooth);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-btn-primary {
	background: var(--llb-accent-primary);
	color: white;
	box-shadow: 0 4px 30px rgba(31, 196, 153, .3);
}

.llb-wrapper .llb-btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, .2), transparent);
	opacity: 0;
	transition: opacity var(--llb-transition-fast);
}

.llb-wrapper .llb-btn-primary:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 8px 40px rgba(31, 196, 153, .5);
	background: #25d9ab;
}

.llb-wrapper .llb-btn-primary:hover::before {
	opacity: 1;
}

.llb-wrapper .llb-btn-secondary {
	background: var(--llb-bg-tertiary);
	color: var(--llb-text-primary);
	border: 1px solid var(--llb-border-subtle);
}

.llb-wrapper .llb-btn-secondary:hover {
	background: var(--llb-bg-card);
	border-color: var(--llb-border-glow);
}

.llb-wrapper .llb-btn-outline {
	background: transparent;
	color: var(--llb-text-primary);
	border: 1px solid rgba(255, 255, 255, .5);
}

.llb-wrapper .llb-btn-outline:hover {
	background: rgba(255, 255, 255, .1);
	border-color: var(--llb-text-primary);
}

/* Light section button secondary */
.llb-wrapper .llb-offer .llb-btn-secondary {
	background: var(--llb-bg-light-secondary);
	color: var(--llb-text-dark);
	border: 1px solid var(--llb-border-subtle-light);
}

.llb-wrapper .llb-offer .llb-btn-secondary:hover {
	background: var(--llb-bg-light);
	border-color: var(--llb-accent-primary);
	color: var(--llb-accent-primary);
}

.llb-wrapper .llb-btn-large {
	padding: 1.25rem 2.5rem !important;
	font-size: 1.125rem;
}

/* Badge */
.llb-wrapper .llb-badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .5rem 1rem !important;
	background: rgba(31, 196, 153, .1);
	border: 1px solid rgba(31, 196, 153, .3);
	border-radius: 100px;
	font-size: .875rem;
	font-weight: 500;
	color: var(--llb-accent-primary);
}

.llb-wrapper .llb-badge-icon {
	width: 8px;
	height: 8px;
	background: var(--llb-accent-primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	
	50% {
		opacity: .5;
		transform: scale(1.2);
	}
}

/* Section styling */
.llb-wrapper section {
	position: relative;
	padding: 85px 0 !important;
}

.llb-wrapper .llb-section-label {
	display: inline-flex;
	align-items: center;
	gap: .75rem;
	font-family: var(--llb-font-display);
	font-size: .875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--llb-accent-primary);
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-section-label::before {
	content: "";
	width: 24px;
	height: 2px;
	background: var(--llb-gradient-accent-horizontal);
	border-radius: 1px;
}

.llb-wrapper .llb-section-header {
	max-width: 800px;
	margin-bottom: var(--llb-spacing-2xl) !important;
}

.llb-wrapper .llb-section-header.llb-center {
	margin-left: auto !important;
	margin-right: auto !important;
	text-align: center;
}

.llb-wrapper .llb-section-header h2 {
	color: inherit;
	margin-bottom: var(--llb-spacing-md) !important;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* ===== HEADER / NAV ===== */
.llb-wrapper .llb-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: var(--llb-spacing-md) 0 !important;
	background: rgba(22, 22, 22, .9);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid var(--llb-border-subtle);
	transition: all var(--llb-transition-smooth);
}

.llb-wrapper .llb-header.llb-scrolled {
	padding: var(--llb-spacing-sm) 0 !important;
}

.llb-wrapper .llb-header .llb-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.llb-wrapper .llb-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.llb-wrapper .llb-logo-img {
	height: 44px;
	width: auto;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-logo-img {
		height: 52px;
	}
}

.llb-wrapper .llb-nav-cta {
	display: none;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-nav-cta {
		display: inline-flex;
	}
}

/* ===== HERO SECTION ===== */
.llb-wrapper .llb-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 40px !important;
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-hero::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -25%;
	width: 150%;
	height: 150%;
	background: radial-gradient(ellipse at center, rgba(9, 72, 92, .25) 0%, rgba(30, 64, 120, .1) 40%, transparent 70%);
	pointer-events: none;
}

.llb-wrapper .llb-hero::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to top, var(--llb-bg-primary), transparent);
	pointer-events: none;
}

.llb-wrapper .llb-hero .llb-container {
	position: relative;
	z-index: 1;
}

.llb-wrapper .llb-hero-content {
	max-width: 900px;
	margin: 0 auto !important;
	text-align: center;
}

.llb-wrapper .llb-hero-badge {
	margin-bottom: var(--llb-spacing-lg) !important;
	animation: fadeInUp .8s ease-out;
}

.llb-wrapper .llb-hero-logo {
	margin-bottom: var(--llb-spacing-lg) !important;
	animation: fadeInUp .8s ease-out;
}

.llb-wrapper .llb-hero-logo-img {
	height: auto;
	max-width: 160px;
}

.llb-wrapper .llb-hero h1 {
	color: inherit;
	margin-bottom: var(--llb-spacing-md) !important;
	animation: fadeInUp .8s ease-out .1s both;
}

.llb-wrapper .llb-hero-subtitle {
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	max-width: 700px;
	margin: 0 auto var(--llb-spacing-lg) !important;
	animation: fadeInUp .8s ease-out .2s both;
}

.llb-wrapper .llb-hero-video-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	font-size: 1rem;
	color: var(--llb-text-secondary);
	margin-top: var(--llb-spacing-sm) !important;
	margin-bottom: var(--llb-spacing-lg) !important;
	animation: fadeInUp .8s ease-out .3s both;
}

.llb-wrapper .llb-hero-video-label svg {
	animation: bounce 2s infinite;
}

@keyframes bounce {
	0%, 100% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(4px);
	}
}

.llb-wrapper .llb-hero-video-wrapper {
	position: relative;
	max-width: 900px;
	margin: 0 auto var(--llb-spacing-xl) !important;
	animation: fadeInUp .8s ease-out .4s both;
}

.llb-wrapper .llb-hero-video-embed {
	border-radius: var(--llb-radius-lg);
	overflow: hidden;
	box-shadow: 0 0 60px rgba(9, 72, 92, .25);
}

.llb-wrapper .llb-hero-video-embed > div {
	width: 100%;
	padding-top: 56.25% !important;
	position: relative;
}

.llb-wrapper .llb-hero-video-embed iframe {
	display: block;
	border-radius: var(--llb-radius-lg);
}

.llb-wrapper .llb-hero-video-container {
	position: relative;
	border-radius: var(--llb-radius-lg);
	overflow: hidden;
	background: var(--llb-bg-tertiary);
	border: 1px solid rgba(9, 72, 92, .3);
	box-shadow: 0 0 60px rgba(9, 72, 92, .25);
	aspect-ratio: 16/9;
}

.llb-wrapper .llb-hero-video-container::before {
	content: "";
	position: absolute;
	inset: -1px;
	background: linear-gradient(135deg, rgba(9, 72, 92, .6), rgba(30, 64, 120, .4));
	border-radius: inherit;
	z-index: -1;
	opacity: .6;
	filter: blur(25px);
}

.llb-wrapper .llb-video-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--llb-spacing-md);
	background: linear-gradient(135deg, var(--llb-bg-secondary), var(--llb-bg-tertiary));
	cursor: pointer;
	transition: all var(--llb-transition-smooth);
}

.llb-wrapper .llb-video-placeholder:hover {
	background: linear-gradient(135deg, var(--llb-bg-tertiary), var(--llb-bg-secondary));
}

.llb-wrapper .llb-play-button {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--llb-accent-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all var(--llb-transition-bounce);
	box-shadow: 0 8px 40px rgba(31, 196, 153, .4);
}

.llb-wrapper .llb-video-placeholder:hover .llb-play-button {
	transform: scale(1.1);
	box-shadow: 0 12px 50px rgba(31, 196, 153, .5);
}

.llb-wrapper .llb-play-button svg {
	width: 32px;
	height: 32px;
	margin-left: 4px !important;
}

.llb-wrapper .llb-video-placeholder span {
	font-weight: 500;
	color: var(--llb-text-secondary);
}

.llb-wrapper .llb-hero-cta {
	animation: fadeInUp .8s ease-out .5s both;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Floating elements */
.llb-wrapper .llb-hero-float {
	position: absolute;
	pointer-events: none;
}

.llb-wrapper .llb-hero-float-1 {
	top: 20%;
	left: 5%;
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(9, 72, 92, .2) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}

.llb-wrapper .llb-hero-float-2 {
	bottom: 30%;
	right: 5%;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(30, 64, 120, .15) 0%, transparent 70%);
	border-radius: 50%;
	animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
	0%, 100% {
		transform: translate(0, 0);
	}
	
	25% {
		transform: translate(10px, -20px);
	}
	
	50% {
		transform: translate(-10px, -10px);
	}
	
	75% {
		transform: translate(20px, 10px);
	}
}

/* ===== LIGHT SECTION BASE ===== */
.llb-wrapper .llb-section-light {
	background: var(--llb-bg-light);
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-section-light h2, .llb-wrapper .llb-section-light h3, .llb-wrapper .llb-section-light h4 {
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-section-light p {
	color: var(--llb-text-dark-secondary);
}

.llb-wrapper .llb-section-light .llb-section-label {
	color: var(--llb-accent-secondary);
}

.llb-wrapper .llb-section-light .llb-section-label::before {
	background: var(--llb-accent-secondary);
}

/* ===== INTRO SECTION ===== */
.llb-wrapper .llb-intro {
	background: var(--llb-bg-light);
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-intro-content {
	max-width: 800px;
	margin: 0 auto !important;
	text-align: center;
}

.llb-wrapper .llb-intro h2 {
	margin-bottom: var(--llb-spacing-sm) !important;
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-intro-lead {
	font-size: 1.25rem;
	color: var(--llb-accent-secondary);
	font-weight: 500;
	margin-bottom: var(--llb-spacing-lg) !important;
}

.llb-wrapper .llb-intro p {
	font-size: 1.2rem;
	line-height: 1.8;
	color: var(--llb-text-dark-secondary);
}

.llb-wrapper .llb-intro .llb-section-label {
	color: var(--llb-accent-secondary);
}

.llb-wrapper .llb-intro .llb-section-label::before {
	background: var(--llb-accent-secondary);
}

/* Intro Screenshot with Tilt Effect */
.llb-wrapper .llb-intro-screenshot {
	margin-top: var(--llb-spacing-xl) !important;
	perspective: 1000px;
	display: flex;
	justify-content: center;
}

.llb-wrapper .llb-tilt-container {
	transform-style: preserve-3d;
	transition: transform 0.1s ease-out;
	will-change: transform;
	max-width: 1000px;
	width: 100%;
}

.llb-wrapper .llb-intro-screenshot-img {
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0 auto;
	display: block;
	border-radius: var(--llb-radius-lg);
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
	border: 1px solid var(--llb-border-subtle);
}

.llb-wrapper .llb-screenshot-placeholder {
	width: 100%;
	max-width: 1000px;
	height: 400px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--llb-radius-lg);
	background: var(--llb-bg-secondary);
	border: 2px dashed var(--llb-border-subtle);
	color: var(--llb-text-dark-secondary);
	font-size: 1rem;
}

/* Chat preview mockup */
.llb-wrapper .llb-chat-preview {
	margin-top: var(--llb-spacing-lg) !important;
	position: relative;
}

.llb-wrapper .llb-chat-mockup {
	background: var(--llb-bg-primary);
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-lg);
	padding: var(--llb-spacing-lg) !important;
	max-width: 600px;
	margin: 0 auto !important;
	box-shadow: 0 20px 60px rgba(22, 22, 22, .3);
}

.llb-wrapper .llb-chat-mockup-header {
	display: flex;
	align-items: center;
	gap: var(--llb-spacing-sm);
	padding-bottom: var(--llb-spacing-md) !important;
	border-bottom: 1px solid var(--llb-border-subtle);
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-chat-mockup-avatar {
	width: 40px;
	height: 40px;
	background: var(--llb-gradient-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.125rem;
}

.llb-wrapper .llb-chat-mockup-title {
	font-weight: 600;
}

.llb-wrapper .llb-chat-mockup-status {
	font-size: .875rem;
	color: #4ade80;
}

.llb-wrapper .llb-chat-messages {
	display: flex;
	flex-direction: column;
	gap: var(--llb-spacing-md);
}

.llb-wrapper .llb-chat-message {
	display: flex;
	gap: var(--llb-spacing-sm);
	opacity: 0;
	animation: messageIn .5s ease-out forwards;
}

.llb-wrapper .llb-chat-message:nth-child(1) {
	animation-delay: .5s;
}

.llb-wrapper .llb-chat-message:nth-child(2) {
	animation-delay: 1.5s;
}

.llb-wrapper .llb-chat-message:nth-child(3) {
	animation-delay: 2.5s;
}

@keyframes messageIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.llb-wrapper .llb-chat-message.llb-user {
	flex-direction: row-reverse;
}

.llb-wrapper .llb-chat-message-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--llb-bg-card);
	border: 1px solid var(--llb-border-subtle);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .875rem;
	flex-shrink: 0;
}

.llb-wrapper .llb-chat-message.llb-user .llb-chat-message-avatar {
	background: var(--llb-accent-primary);
	border: none;
}

.llb-wrapper .llb-chat-message-content {
	max-width: 80%;
	padding: var(--llb-spacing-sm) var(--llb-spacing-md) !important;
	border-radius: var(--llb-radius-md);
	background: var(--llb-bg-card);
	border: 1px solid var(--llb-border-subtle);
	font-size: .95rem;
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-chat-message.llb-user .llb-chat-message-content {
	background: rgba(31, 196, 153, .15);
	border-color: rgba(31, 196, 153, .3);
}

/* ===== FEATURES SECTION ===== */
.llb-wrapper .llb-features {
	position: relative;
}

.llb-wrapper .llb-features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--llb-spacing-lg);
}

@media (min-width: 768px) {
	.llb-wrapper .llb-features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.llb-wrapper .llb-features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.llb-wrapper .llb-feature-card {
	position: relative;
	padding: var(--llb-spacing-xl) !important;
	background: var(--llb-bg-card);
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-lg);
	transition: all var(--llb-transition-smooth);
	overflow: hidden;
}

.llb-wrapper .llb-feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--llb-gradient-accent-horizontal);
	opacity: 0;
	transition: opacity var(--llb-transition-fast);
}

.llb-wrapper .llb-feature-card:hover {
	transform: translateY(-4px);
	border-color: var(--llb-border-glow);
	box-shadow: var(--llb-shadow-glow);
}

.llb-wrapper .llb-feature-card:hover::before {
	opacity: 1;
}

.llb-wrapper .llb-feature-card.llb-featured {
	border-color: rgba(31, 196, 153, .3);
	background: linear-gradient(135deg, rgba(31, 196, 153, .08), var(--llb-bg-card));
}

.llb-wrapper .llb-feature-card.llb-featured::before {
	opacity: 1;
}

.llb-wrapper .llb-feature-number {
	font-family: var(--llb-font-display);
	font-size: .875rem;
	font-weight: 700;
	color: var(--llb-accent-primary);
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-feature-icon {
	width: 56px;
	height: 56px;
	background: rgba(31, 196, 153, .1);
	border-radius: var(--llb-radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-feature-icon svg {
	width: 28px;
	height: 28px;
	stroke: var(--llb-accent-primary);
}

.llb-wrapper .llb-feature-card h3 {
	color: inherit;
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-feature-card p {
	font-size: 1rem;
	color: var(--llb-text-muted);
}

.llb-wrapper .llb-feature-tag {
	position: absolute;
	top: var(--llb-spacing-md);
	right: var(--llb-spacing-md);
	padding: .25rem .75rem !important;
	background: var(--llb-accent-primary);
	border-radius: 100px;
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* ===== LUCAS STORY SECTION - STACKABLE CARDS ===== */
.llb-wrapper .llb-lucas-story {
	background: var(--llb-bg-light);
	color: var(--llb-text-dark);
	position: relative;
	padding: 0 0 20px 0 !important;
}

/* Background Pattern */
.llb-wrapper .llb-lucas-story::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 20% 30%, rgba(31, 196, 153, .06) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(9, 72, 92, .06) 0%, transparent 50%), url("data:image/svg+xml,%3Csvg width=\'60\' height=\'60\' viewBox=\'0 0 60 60\' xmlns=\'http://www.w3.org/2000/svg\'%3E%3Cg fill=\'none\' fill-rule=\'evenodd\'%3E%3Cg fill=\'%231FC499\' fill-opacity=\'0.04\'%3E%3Cpath d=\'M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
}

.llb-wrapper .llb-story-header {
	text-align: center;
	padding: 85px var(--llb-spacing-lg) var(--llb-spacing-xl) !important;
	background: var(--llb-bg-light);
	position: relative;
	z-index: 1;
}

.llb-wrapper .llb-story-header h2 {
	color: var(--llb-text-dark);
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-story-header p {
	font-size: 1.2rem;
	color: var(--llb-text-dark-muted);
}

.llb-wrapper .llb-story-cards-wrapper {
	position: relative;
	z-index: 1;
}

.llb-wrapper .llb-story-card {
	position: sticky;
	top: 120px;
	min-height: 70vh;
	padding: var(--llb-spacing-2xl) var(--llb-spacing-xl) !important;
	border-radius: var(--llb-radius-xl);
	margin: 0 auto var(--llb-spacing-xl) !important;
	max-width: 1200px;
	width: calc(100% - 2rem);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 -10px 60px rgba(0, 0, 0, .15);
	transition: transform .3s ease, box-shadow .3s ease;
}

.llb-wrapper .llb-story-card:nth-child(1) {
	top: 120px;
	z-index: 1;
}

.llb-wrapper .llb-story-card:nth-child(2) {
	top: 145px;
	z-index: 2;
}

.llb-wrapper .llb-story-card:nth-child(3) {
	top: 170px;
	z-index: 3;
}

.llb-wrapper .llb-story-card:nth-child(4) {
	top: 195px;
	z-index: 4;
}

/* Card Inner - Split Layout */
.llb-wrapper .llb-story-card .llb-card-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--llb-spacing-2xl);
	align-items: center;
	width: 100%;
}

/* Image placeholder styles */
.llb-wrapper .llb-story-card-image {
	width: 100%;
	height: 100%;
	min-height: 350px;
	background: rgba(0, 0, 0, .1);
	border-radius: var(--llb-radius-lg);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--llb-spacing-md);
	overflow: hidden;
	position: relative;
}

.llb-wrapper .llb-story-card-image svg {
	width: 64px;
	height: 64px;
	opacity: .5;
}

.llb-wrapper .llb-story-card-image span {
	font-size: .9rem;
	opacity: .6;
	text-align: center;
	padding: 0 var(--llb-spacing-md) !important;
}

/* Story card actual image */
.llb-wrapper .llb-story-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: var(--llb-radius-lg);
}

/* Story card placeholder */
.llb-wrapper .llb-story-card-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--llb-spacing-md);
	width: 100%;
	height: 100%;
}

.llb-wrapper .llb-story-card-placeholder svg {
	width: 64px;
	height: 64px;
	opacity: .5;
}

.llb-wrapper .llb-story-card-placeholder span {
	font-size: .9rem;
	opacity: .6;
	text-align: center;
}

/* Alternate layout for even cards */
.llb-wrapper .llb-story-card:nth-child(even) .llb-card-inner {
	direction: rtl;
}

.llb-wrapper .llb-story-card:nth-child(even) .llb-card-inner > * {
	direction: ltr;
}

/* Card 1 - Introduction - Dark */
.llb-wrapper .llb-story-card-intro {
	background: var(--llb-bg-primary);
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-story-card-intro .llb-story-card-image {
	background: linear-gradient(135deg, rgba(31, 196, 153, .15), rgba(9, 72, 92, .2));
	border: 1px solid rgba(31, 196, 153, .2);
}

.llb-wrapper .llb-story-card-intro .llb-story-card-image svg {
	stroke: var(--llb-accent-primary);
}

.llb-wrapper .llb-story-card-intro .llb-story-card-image span {
	color: var(--llb-text-secondary);
}

.llb-wrapper .llb-story-card-content {
	display: flex;
	flex-direction: column;
	gap: var(--llb-spacing-md);
}

.llb-wrapper .llb-story-avatar {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--llb-accent-primary), var(--llb-accent-secondary));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--llb-font-display);
	font-size: 2rem;
	font-weight: 700;
	color: white;
	box-shadow: 0 10px 40px rgba(31, 196, 153, .4);
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-story-card h3 {
	color: inherit;
	font-family: var(--llb-font-display);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-story-card-intro h3 {
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-story-card-content p {
	font-size: 1.15rem;
	line-height: 1.8;
}

.llb-wrapper .llb-story-card-intro .llb-story-card-content p {
	color: var(--llb-text-secondary);
}

.llb-wrapper .llb-story-card-intro .llb-story-card-content p strong {
	color: var(--llb-accent-primary);
}

/* Card 2 - Struggle - Light with red accents */
.llb-wrapper .llb-story-card-struggle {
	background: #fff;
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-story-card-struggle .llb-story-card-image {
	background: linear-gradient(135deg, rgba(239, 68, 68, .08), rgba(239, 68, 68, .15));
	border: 1px solid rgba(239, 68, 68, .2);
}

.llb-wrapper .llb-story-card-struggle .llb-story-card-image svg {
	stroke: #ef4444;
}

.llb-wrapper .llb-story-card-struggle .llb-story-card-image span {
	color: var(--llb-text-dark-muted);
}

.llb-wrapper .llb-story-card-struggle h3 {
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-story-card-struggle .llb-story-card-content p {
	color: var(--llb-text-dark-secondary);
}

.llb-wrapper .llb-struggle-list {
	display: flex;
	flex-direction: column;
	gap: var(--llb-spacing-sm);
	margin-top: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-struggle-item {
	display: flex;
	align-items: center;
	gap: var(--llb-spacing-md);
	padding: var(--llb-spacing-sm) var(--llb-spacing-md) !important;
	background: rgba(239, 68, 68, .05);
	border-radius: var(--llb-radius-md);
	transition: all .3s ease;
}

.llb-wrapper .llb-struggle-item:hover {
	background: rgba(239, 68, 68, .1);
	transform: translateX(4px);
}

.llb-wrapper .llb-struggle-item svg {
	width: 24px;
	height: 24px;
	stroke: #ef4444;
	flex-shrink: 0;
}

.llb-wrapper .llb-struggle-item span {
	font-weight: 500;
	color: var(--llb-text-dark);
	font-size: 1rem;
}

.llb-wrapper .llb-struggle-highlight {
	margin-top: var(--llb-spacing-lg) !important;
	padding: var(--llb-spacing-md) var(--llb-spacing-lg) !important;
	background: rgba(239, 68, 68, .1);
	border-left: 4px solid #ef4444;
	border-radius: 0 var(--llb-radius-md) var(--llb-radius-md) 0;
}

.llb-wrapper .llb-struggle-highlight p {
	color: #dc2626 !important;
	font-weight: 600;
	font-size: 1.1rem !important;
	margin: 0 !important;
}

/* Card 3 - Discovery - Gradient */
.llb-wrapper .llb-story-card-discovery {
	background: linear-gradient(135deg, var(--llb-accent-secondary) 0%, #0a5a70 100%);
	color: white;
}

.llb-wrapper .llb-story-card-discovery .llb-story-card-image {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	backdrop-filter: blur(10px);
}

.llb-wrapper .llb-story-card-discovery .llb-story-card-image svg {
	stroke: rgba(255, 255, 255, .6);
}

.llb-wrapper .llb-story-card-discovery .llb-story-card-image span {
	color: rgba(255, 255, 255, .7);
}

.llb-wrapper .llb-discovery-badge {
	display: inline-flex;
	align-items: center;
	gap: var(--llb-spacing-sm);
	padding: var(--llb-spacing-sm) var(--llb-spacing-lg) !important;
	background: rgba(255, 255, 255, .15);
	border-radius: var(--llb-radius-full);
	font-size: .9rem;
	font-weight: 500;
	backdrop-filter: blur(10px);
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-story-card-discovery h3 {
	color: white;
	font-size: 2.2rem;
}

.llb-wrapper .llb-story-card-discovery .llb-story-card-content p {
	color: rgba(255, 255, 255, .9);
	font-size: 1.15rem;
}

.llb-wrapper .llb-llamly-logo-card {
	display: inline-flex;
	align-items: center;
	gap: var(--llb-spacing-md);
	padding: var(--llb-spacing-md) var(--llb-spacing-lg) !important;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--llb-radius-lg);
	backdrop-filter: blur(10px);
	margin-top: var(--llb-spacing-md) !important;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	
	50% {
		transform: translateY(-10px);
	}
}

.llb-wrapper .llb-llamly-logo-card .llb-llamly-full-logo {
	height: 50px;
	width: auto;
}

/* Card 4 - Transformation - Dark with CTA */
.llb-wrapper .llb-story-card-transformation {
	background: var(--llb-bg-primary);
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-story-card-transformation .llb-story-card-image {
	background: linear-gradient(135deg, rgba(31, 196, 153, .15), rgba(9, 72, 92, .2));
	border: 1px solid rgba(31, 196, 153, .2);
}

.llb-wrapper .llb-story-card-transformation .llb-story-card-image svg {
	stroke: var(--llb-accent-primary);
}

.llb-wrapper .llb-story-card-transformation .llb-story-card-image span {
	color: var(--llb-text-secondary);
}

.llb-wrapper .llb-story-card-transformation h3 {
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-transformation-list {
	display: flex;
	flex-direction: column;
	gap: var(--llb-spacing-sm);
	margin: var(--llb-spacing-md) 0 !important;
}

.llb-wrapper .llb-transformation-item {
	display: flex;
	align-items: center;
	gap: var(--llb-spacing-md);
	padding: var(--llb-spacing-sm) var(--llb-spacing-md) !important;
	background: var(--llb-bg-card);
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-md);
	transition: all .3s ease;
}

.llb-wrapper .llb-transformation-item:hover {
	border-color: var(--llb-accent-primary);
	background: rgba(31, 196, 153, .05);
	transform: translateX(4px);
}

.llb-wrapper .llb-transformation-check {
	width: 28px;
	height: 28px;
	background: rgba(31, 196, 153, .15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.llb-wrapper .llb-transformation-check svg {
	width: 16px;
	height: 16px;
	stroke: var(--llb-accent-primary);
}

.llb-wrapper .llb-transformation-item p {
	color: var(--llb-text-primary);
	font-size: 1rem;
	margin: 0 !important;
}

.llb-wrapper .llb-story-final-cta {
	margin-top: var(--llb-spacing-lg) !important;
	padding-top: var(--llb-spacing-lg) !important;
	border-top: 1px solid var(--llb-border-subtle);
}

.llb-wrapper .llb-story-final-cta p {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--llb-text-primary);
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-story-final-cta p strong {
	color: var(--llb-accent-primary);
}

/* Mobile adjustments for stacking */
@media (max-width: 767px) {
	.llb-wrapper .llb-story-card {
		min-height: auto;
		padding: var(--llb-spacing-lg) !important;
		margin-bottom: var(--llb-spacing-md) !important;
	}
	
	.llb-wrapper .llb-story-card:nth-child(1) {
		top: 80px;
	}
	
	.llb-wrapper .llb-story-card:nth-child(2) {
		top: 95px;
	}
	
	.llb-wrapper .llb-story-card:nth-child(3) {
		top: 110px;
	}
	
	.llb-wrapper .llb-story-card:nth-child(4) {
		top: 125px;
	}
	
	.llb-wrapper .llb-story-card .llb-card-inner {
		grid-template-columns: 1fr;
		gap: var(--llb-spacing-lg);
	}
	
	.llb-wrapper .llb-story-card:nth-child(even) .llb-card-inner {
		direction: ltr;
	}
	
	.llb-wrapper .llb-story-card-image {
		min-height: 200px;
	}
	
	.llb-wrapper .llb-story-avatar {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}
	
	.llb-wrapper .llb-story-card h3 {
	color: inherit;
	font-size: 1.4rem;
}
	
	.llb-wrapper .llb-story-card-content p {
		font-size: 1rem;
	}
	
	.llb-wrapper .llb-story-card-discovery h3 {
	color: inherit;
	font-size: 1.6rem;
}
}

/* ===== HOW IT WORKS SECTION ===== */
.llb-wrapper .llb-how-it-works {
	background: var(--llb-bg-light);
	color: var(--llb-text-dark);
	padding-top: 15px !important;
}

.llb-wrapper .llb-how-it-works h2, .llb-wrapper .llb-how-it-works h4 {
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-how-it-works p {
	color: var(--llb-text-dark-secondary);
}

.llb-wrapper .llb-how-it-works .llb-section-label {
	color: var(--llb-accent-secondary);
}

.llb-wrapper .llb-how-it-works .llb-section-label::before {
	background: var(--llb-accent-secondary);
}

.llb-wrapper .llb-steps-container {
	display: flex;
	flex-direction: column;
	gap: var(--llb-spacing-2xl);
}

.llb-wrapper .llb-step {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--llb-spacing-xl);
	align-items: center;
}

@media (min-width: 1024px) {
	.llb-wrapper .llb-step {
		grid-template-columns: 1fr 1fr;
	}
	
	.llb-wrapper .llb-step:nth-child(even) {
		direction: rtl;
	}
	
	.llb-wrapper .llb-step:nth-child(even) > * {
		direction: ltr;
	}
}

.llb-wrapper .llb-step-content {
	max-width: 500px;
}

.llb-wrapper .llb-step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--llb-accent-primary);
	border-radius: 50%;
	font-family: var(--llb-font-display);
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: var(--llb-spacing-md) !important;
	color: white;
}

.llb-wrapper .llb-step-content h3 {
	color: inherit;
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-step-content p {
	font-size: 1.1rem;
}

.llb-wrapper .llb-step-visual {
	position: relative;
	aspect-ratio: 4/3;
	background: var(--llb-bg-primary);
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-lg);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 20px 60px rgba(22, 22, 22, .15);
}

.llb-wrapper .llb-step-visual-placeholder {
	text-align: center;
	color: var(--llb-text-muted);
	padding: var(--llb-spacing-lg) !important;
}

.llb-wrapper .llb-step-visual-placeholder svg {
	width: 64px;
	height: 64px;
	stroke: var(--llb-text-muted);
	margin-bottom: var(--llb-spacing-sm) !important;
	opacity: .5;
}

.llb-wrapper .llb-step-visual-placeholder p {
	color: var(--llb-text-muted);
}

/* Step screenshot image */
.llb-wrapper .llb-step-screenshot {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

/* ===== PRICING VALUE SECTION ===== */
.llb-wrapper .llb-pricing-value {
	position: relative;
	background: var(--llb-bg-primary);
}

.llb-wrapper .llb-pricing-value .llb-section-header {
	margin-bottom: var(--llb-spacing-2xl) !important;
}

.llb-wrapper .llb-value-card {
	max-width: 600px;
	margin: 0 auto var(--llb-spacing-2xl) !important;
	background: var(--llb-bg-card);
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-lg);
	padding: var(--llb-spacing-lg) var(--llb-spacing-xl) !important;
}

.llb-wrapper .llb-value-items {
	display: flex;
	flex-direction: column;
}

.llb-wrapper .llb-value-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--llb-spacing-md) 0 !important;
	border-bottom: 1px solid var(--llb-border-subtle);
}

.llb-wrapper .llb-value-item:last-child {
	border-bottom: none;
}

.llb-wrapper .llb-value-item-name {
	font-weight: 500;
	color: var(--llb-text-primary);
	font-size: .95rem;
}

.llb-wrapper .llb-value-item-price {
	font-family: var(--llb-font-display);
	font-weight: 600;
	font-size: .9rem;
	color: var(--llb-text-muted);
	text-decoration: line-through;
	font-style: italic;
}

.llb-wrapper .llb-value-total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: var(--llb-spacing-lg) !important;
	margin-top: var(--llb-spacing-sm) !important;
	border-top: 1px solid var(--llb-border-subtle);
}

.llb-wrapper .llb-value-total-label {
	font-size: 1rem;
	font-weight: 600;
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-value-total-amount {
	font-family: var(--llb-font-display);
	font-size: 1.25rem;
	font-weight: 700;
	text-decoration: line-through;
	color: var(--llb-text-muted);
	font-style: italic;
}

.llb-wrapper .llb-value-cta {
	text-align: center;
	margin-bottom: var(--llb-spacing-xl) !important;
}

.llb-wrapper .llb-value-cta p {
	display: inline-flex;
	align-items: center;
	gap: var(--llb-spacing-md);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-value-cta p::before, .llb-wrapper .llb-value-cta p::after {
	content: "";
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--llb-accent-primary));
}

.llb-wrapper .llb-value-cta p::after {
	background: linear-gradient(90deg, var(--llb-accent-primary), transparent);
}

.llb-wrapper .llb-value-extras {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--llb-spacing-sm);
	margin-top: var(--llb-spacing-xl) !important;
}

.llb-wrapper .llb-value-extra {
	display: flex;
	align-items: center;
	gap: .5rem;
	padding: .5rem 1rem !important;
	background: var(--llb-bg-tertiary);
	border-radius: 100px;
	font-size: .9rem;
	color: var(--llb-text-secondary);
}

.llb-wrapper .llb-value-extra svg {
	width: 16px;
	height: 16px;
	stroke: var(--llb-accent-primary);
}

/* ===== PRICING CARDS ===== */
.llb-wrapper .llb-pricing-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--llb-spacing-lg);
	max-width: 900px;
	margin: 0 auto var(--llb-spacing-xl) !important;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-pricing-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

.llb-wrapper .llb-pricing-card {
	position: relative;
	padding: var(--llb-spacing-xl) !important;
	background: var(--llb-bg-card);
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-lg);
	transition: all var(--llb-transition-smooth);
}

.llb-wrapper .llb-pricing-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.llb-wrapper .llb-pricing-card.llb-featured {
	border-color: var(--llb-accent-primary);
	border-top: 4px solid var(--llb-accent-primary);
	background: linear-gradient(135deg, rgba(31, 196, 153, .08), var(--llb-bg-card));
	box-shadow: 0 8px 40px rgba(31, 196, 153, .15);
}

.llb-wrapper .llb-pricing-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: .5rem 1.5rem !important;
	background: var(--llb-accent-primary);
	border-radius: 100px;
	font-family: var(--llb-font-display);
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	white-space: nowrap;
	color: var(--llb-bg-primary);
}

.llb-wrapper .llb-pricing-card-header {
	text-align: center;
	margin-bottom: var(--llb-spacing-lg) !important;
	padding-bottom: var(--llb-spacing-lg) !important;
	border-bottom: 1px solid var(--llb-border-subtle);
}

.llb-wrapper .llb-pricing-card-title {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: var(--llb-spacing-md) !important;
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-pricing-card-price {
	font-family: var(--llb-font-display);
}

.llb-wrapper .llb-pricing-card-price .llb-amount {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1;
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-pricing-card.llb-featured .llb-pricing-card-price .llb-amount {
	color: var(--llb-accent-primary);
}

.llb-wrapper .llb-pricing-card-price .llb-period {
	font-size: 1rem;
	color: var(--llb-text-muted);
}

.llb-wrapper .llb-pricing-card-price .llb-billing {
	display: block;
	font-size: .9rem;
	color: var(--llb-accent-primary);
	margin-top: var(--llb-spacing-xs) !important;
}

.llb-wrapper .llb-pricing-features {
	list-style: none;
	margin-bottom: var(--llb-spacing-lg) !important;
}

.llb-wrapper .llb-pricing-features li {
	display: flex;
	align-items: flex-start;
	gap: var(--llb-spacing-sm);
	margin-bottom: var(--llb-spacing-sm) !important;
	color: var(--llb-text-secondary);
	font-size: .95rem;
}

.llb-wrapper .llb-pricing-features li svg {
	width: 20px;
	height: 20px;
	stroke: var(--llb-accent-primary);
	flex-shrink: 0;
	margin-top: 2px !important;
}

.llb-wrapper .llb-pricing-features li strong {
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-pricing-card .llb-btn {
	width: 100%;
}

.llb-wrapper .llb-pricing-card .llb-btn-secondary {
	background: transparent;
	border: 1px solid var(--llb-border-subtle);
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-pricing-card .llb-btn-secondary:hover {
	background: var(--llb-bg-tertiary);
	border-color: var(--llb-accent-primary);
}

.llb-wrapper .llb-guarantee-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--llb-spacing-md);
	max-width: 500px;
	margin: 0 auto !important;
	padding: var(--llb-spacing-lg) !important;
	background: rgba(31, 196, 153, .08);
	border: 1px solid rgba(31, 196, 153, .3);
	border-radius: var(--llb-radius-lg);
	text-align: center;
}

.llb-wrapper .llb-guarantee-badge svg {
	width: 48px;
	height: 48px;
	stroke: var(--llb-accent-primary);
	flex-shrink: 0;
}

.llb-wrapper .llb-guarantee-badge-text h4 {
	color: var(--llb-accent-primary);
	font-size: 1rem;
	margin-bottom: .25rem !important;
}

.llb-wrapper .llb-guarantee-badge-text p {
	font-size: .9rem;
	color: var(--llb-text-muted);
}

/* ===== TESTIMONIALS SECTION ===== */
.llb-wrapper .llb-testimonials {
	position: relative;
	background: var(--llb-bg-light);
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-testimonials h2 {
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-testimonials p {
	color: var(--llb-text-dark-secondary);
}

/* Testimonials Carousel */
.llb-wrapper .llb-testimonials-carousel {
	position: relative;
	overflow: hidden;
	margin: 0 -1rem !important;
	padding: 0 1rem !important;
}

.llb-wrapper .llb-testimonials-track {
	display: flex;
	gap: var(--llb-spacing-lg);
	transition: transform .5s ease;
}

.llb-wrapper .llb-testimonial-card {
	flex: 0 0 100%;
	max-width: 100%;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-testimonial-card {
		flex: 0 0 calc(50% - var(--llb-spacing-lg) / 2);
		max-width: calc(50% - var(--llb-spacing-lg) / 2);
	}
}

@media (min-width: 1024px) {
	.llb-wrapper .llb-testimonial-card {
		flex: 0 0 calc(33.333% - var(--llb-spacing-lg) * 2 / 3);
		max-width: calc(33.333% - var(--llb-spacing-lg) * 2 / 3);
	}
}

.llb-wrapper .llb-carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--llb-spacing-md);
	margin-top: var(--llb-spacing-xl) !important;
}

.llb-wrapper .llb-carousel-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid var(--llb-border-subtle-light);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--llb-transition-smooth);
}

.llb-wrapper .llb-carousel-btn:hover {
	background: var(--llb-accent-primary);
	border-color: var(--llb-accent-primary);
}

.llb-wrapper .llb-carousel-btn:hover svg {
	stroke: white;
}

.llb-wrapper .llb-carousel-btn svg {
	width: 24px;
	height: 24px;
	stroke: var(--llb-text-dark);
	transition: stroke var(--llb-transition-smooth);
}

.llb-wrapper .llb-carousel-dots {
	display: flex;
	gap: var(--llb-spacing-sm);
}

.llb-wrapper .llb-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--llb-border-subtle-light);
	border: none;
	cursor: pointer;
	transition: all var(--llb-transition-smooth);
}

.llb-wrapper .llb-carousel-dot.llb-active {
	background: var(--llb-accent-primary);
	width: 30px;
	border-radius: 5px;
}

.llb-wrapper .llb-testimonial-card {
	padding: var(--llb-spacing-xl) !important;
	background: #fff;
	border: 1px solid var(--llb-border-subtle-light);
	border-radius: var(--llb-radius-lg);
	transition: all var(--llb-transition-smooth);
}

.llb-wrapper .llb-testimonial-card:hover {
	border-color: var(--llb-accent-primary);
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
}

.llb-wrapper .llb-testimonial-stars {
	display: flex;
	gap: 4px;
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-testimonial-stars svg {
	width: 20px;
	height: 20px;
	fill: #fbbf24;
}

.llb-wrapper .llb-testimonial-text {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--llb-text-dark);
	margin-bottom: var(--llb-spacing-lg) !important;
	font-style: italic;
}

.llb-wrapper .llb-testimonial-author {
	display: flex;
	align-items: center;
	gap: var(--llb-spacing-sm);
}

.llb-wrapper .llb-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--llb-accent-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.125rem;
	color: white;
}

.llb-wrapper .llb-testimonial-info h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: .125rem !important;
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-testimonial-info span {
	font-size: .875rem;
	color: var(--llb-text-dark-muted);
}

/* ===== GUARANTEE SECTION ===== */
.llb-wrapper .llb-guarantee {
	background: var(--llb-bg-primary);
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-guarantee-content {
	max-width: 900px;
	margin: 0 auto !important;
	text-align: center;
	background: linear-gradient(135deg, rgba(9, 72, 92, .8), rgba(31, 196, 153, .6));
	border-radius: var(--llb-radius-xl);
	padding: 50px var(--llb-spacing-2xl) !important;
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-guarantee-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(9, 72, 92, .4), rgba(31, 196, 153, .2));
	border-radius: inherit;
	z-index: 0;
}

.llb-wrapper .llb-guarantee-content > * {
	position: relative;
	z-index: 1;
}

.llb-wrapper .llb-guarantee-icon {
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, .15);
	border: 2px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto var(--llb-spacing-lg) !important;
}

.llb-wrapper .llb-guarantee-icon svg {
	width: 40px;
	height: 40px;
	stroke: var(--llb-text-primary);
}

.llb-wrapper .llb-guarantee h2 {
	color: var(--llb-text-primary);
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-guarantee h3 {
	font-size: 1.25rem;
	margin-bottom: var(--llb-spacing-lg) !important;
	color: rgba(255, 255, 255, .9);
	font-weight: 500;
}

.llb-wrapper .llb-guarantee-text {
	font-size: 1.1rem;
	line-height: 1.7;
	margin-bottom: var(--llb-spacing-sm) !important;
	color: rgba(255, 255, 255, .8);
}

.llb-wrapper .llb-guarantee-highlight {
	font-size: 1.1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, .85);
	margin-bottom: var(--llb-spacing-xl) !important;
}

.llb-wrapper .llb-guarantee-price {
	display: none;
}

.llb-wrapper .llb-guarantee .llb-btn {
	background: var(--llb-text-primary);
	color: var(--llb-bg-primary);
	font-weight: 600;
}

.llb-wrapper .llb-guarantee .llb-btn:hover {
	background: rgba(255, 255, 255, .9);
	transform: translateY(-2px);
}

.llb-wrapper .llb-guarantee-note {
	font-size: .9rem;
	color: rgba(255, 255, 255, .6);
	margin-top: var(--llb-spacing-md) !important;
}

/* ===== FAQ SECTION ===== */
.llb-wrapper .llb-faq {
	position: relative;
	background: var(--llb-bg-light);
	color: var(--llb-text-dark);
}

.llb-wrapper .llb-faq-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--llb-spacing-2xl);
}

@media (min-width: 1024px) {
	.llb-wrapper .llb-faq-container {
		grid-template-columns: 1fr 1.5fr;
		gap: var(--llb-spacing-3xl);
		align-items: start;
	}
}

.llb-wrapper .llb-faq-header {
	position: sticky;
	top: 120px;
}

.llb-wrapper .llb-faq-header .llb-section-label {
	color: var(--llb-accent-primary);
}

.llb-wrapper .llb-faq-header .llb-section-label::before {
	background: var(--llb-accent-primary);
}

.llb-wrapper .llb-faq-header h2 {
	color: var(--llb-text-dark);
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-faq-header p {
	color: var(--llb-text-dark-secondary);
	font-size: 1.1rem;
}

.llb-wrapper .llb-faq-list {
	display: flex;
	flex-direction: column;
	gap: var(--llb-spacing-sm);
}

.llb-wrapper .llb-faq-item {
	background: #fff;
	border-radius: var(--llb-radius-md);
	border: none;
	overflow: hidden;
	border-left: 3px solid transparent;
	transition: border-color var(--llb-transition-fast);
}

.llb-wrapper .llb-faq-item:hover, .llb-wrapper .llb-faq-item.llb-active {
	border-left-color: var(--llb-accent-primary);
}

.llb-wrapper .llb-faq-question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--llb-spacing-md);
	padding: var(--llb-spacing-lg) !important;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--llb-font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--llb-text-dark);
	transition: color var(--llb-transition-fast);
}

.llb-wrapper .llb-faq-question:hover {
	color: var(--llb-accent-primary);
}

.llb-wrapper .llb-faq-icon {
	width: 24px;
	height: 24px;
	position: relative;
	flex-shrink: 0;
	color: var(--llb-text-dark-muted);
}

.llb-wrapper .llb-faq-icon::before {
	content: "";
	position: absolute;
	width: 8px;
	height: 2px;
	background: currentColor;
	top: 50%;
	right: 7px;
	transform: translateY(-50%) rotate(45deg);
	transition: transform var(--llb-transition-fast);
}

.llb-wrapper .llb-faq-icon::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 2px;
	background: currentColor;
	top: 50%;
	right: 2px;
	transform: translateY(-50%) rotate(-45deg);
	transition: transform var(--llb-transition-fast);
}

.llb-wrapper .llb-faq-item.llb-active .llb-faq-icon::before {
	transform: translateY(-50%) rotate(-45deg);
}

.llb-wrapper .llb-faq-item.llb-active .llb-faq-icon::after {
	transform: translateY(-50%) rotate(45deg);
}

.llb-wrapper .llb-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height var(--llb-transition-smooth);
}

.llb-wrapper .llb-faq-item.llb-active .llb-faq-answer {
	max-height: 500px;
}

.llb-wrapper .llb-faq-answer-content {
	padding: 0 var(--llb-spacing-lg) var(--llb-spacing-lg) !important;
	color: var(--llb-text-dark-secondary);
	line-height: 1.7;
}

/* ===== FINAL CTA SECTION ===== */
.llb-wrapper .llb-final-cta {
	background: var(--llb-bg-primary);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-final-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1000px;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(31, 196, 153, .1) 0%, transparent 60%);
	pointer-events: none;
}

.llb-wrapper .llb-final-cta-content {
	position: relative;
	max-width: 700px;
	margin: 0 auto !important;
	text-align: center;
}

.llb-wrapper .llb-final-cta h2 {
	color: inherit;
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-final-cta p {
	font-size: 1.2rem;
	margin-bottom: var(--llb-spacing-xl) !important;
}

.llb-wrapper .llb-final-cta .llb-btn {
	margin-bottom: var(--llb-spacing-md) !important;
}

.llb-wrapper .llb-final-cta-note {
	font-size: .95rem;
	color: var(--llb-text-muted);
}

/* ===== THANK YOU PAGE ===== */
.llb-wrapper .llb-thank-you {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--llb-spacing-lg) !important;
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-thank-you::before {
	content: "";
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 150%;
	height: 150%;
	background: radial-gradient(ellipse at center top, rgba(31, 196, 153, .15) 0%, rgba(9, 72, 92, .1) 30%, transparent 60%);
	pointer-events: none;
}

/* Floating particles */
.llb-wrapper .llb-particles {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.llb-wrapper .llb-particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--llb-accent-primary);
	border-radius: 50%;
	opacity: 0;
	animation: llb-float-up 4s ease-out infinite;
}

.llb-wrapper .llb-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.llb-wrapper .llb-particle:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.llb-wrapper .llb-particle:nth-child(3) { left: 30%; animation-delay: 1s; }
.llb-wrapper .llb-particle:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.llb-wrapper .llb-particle:nth-child(5) { left: 50%; animation-delay: 2s; }
.llb-wrapper .llb-particle:nth-child(6) { left: 60%; animation-delay: 0.3s; }
.llb-wrapper .llb-particle:nth-child(7) { left: 70%; animation-delay: 0.8s; }
.llb-wrapper .llb-particle:nth-child(8) { left: 80%; animation-delay: 1.3s; }
.llb-wrapper .llb-particle:nth-child(9) { left: 90%; animation-delay: 1.8s; }

@keyframes llb-float-up {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}
	10% {
		opacity: 0.6;
	}
	90% {
		opacity: 0.6;
	}
	100% {
		transform: translateY(-20vh) scale(1);
		opacity: 0;
	}
}

/* Main content card */
.llb-wrapper .llb-thank-you-content {
	position: relative;
	z-index: 1;
	max-width: 600px;
	width: 100%;
	text-align: center;
	padding: var(--llb-spacing-2xl) var(--llb-spacing-xl) !important;
	background: linear-gradient(135deg, rgba(30, 30, 30, .95), rgba(22, 22, 22, .98));
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-xl);
	box-shadow: 0 25px 80px rgba(0, 0, 0, .5), 0 0 100px rgba(31, 196, 153, .1), inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* Success checkmark */
.llb-wrapper .llb-success-icon {
	width: 100px;
	height: 100px;
	margin: 0 auto var(--llb-spacing-lg) !important;
	position: relative;
}

.llb-wrapper .llb-success-circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--llb-accent-primary), var(--llb-accent-secondary));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 40px rgba(31, 196, 153, .4), 0 0 60px rgba(31, 196, 153, .2);
	animation: llb-success-pulse 2s ease-in-out infinite;
}

@keyframes llb-success-pulse {
	0%, 100% {
		box-shadow: 0 10px 40px rgba(31, 196, 153, .4), 0 0 60px rgba(31, 196, 153, .2);
	}
	50% {
		box-shadow: 0 10px 50px rgba(31, 196, 153, .5), 0 0 80px rgba(31, 196, 153, .3);
	}
}

.llb-wrapper .llb-success-circle svg {
	width: 50px;
	height: 50px;
	stroke: white;
	stroke-width: 3;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.llb-wrapper .llb-checkmark-path {
	stroke-dasharray: 60;
	stroke-dashoffset: 60;
	animation: llb-draw-check 0.6s ease forwards;
	animation-delay: 0.8s;
}

@keyframes llb-draw-check {
	to {
		stroke-dashoffset: 0;
	}
}

.llb-wrapper .llb-success-ring {
	position: absolute;
	inset: -8px;
	border: 2px solid var(--llb-accent-primary);
	border-radius: 50%;
	opacity: 0;
	animation: llb-ring-expand 1s ease forwards;
	animation-delay: 0.6s;
}

@keyframes llb-ring-expand {
	0% {
		transform: scale(0.8);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

/* Typography */
.llb-wrapper .llb-thank-you h1 {
	font-family: var(--llb-font-display);
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-bottom: var(--llb-spacing-sm) !important;
	color: var(--llb-text-primary);
}

.llb-wrapper .llb-thank-you-subtitle {
	font-size: 1.15rem;
	color: var(--llb-text-secondary);
	margin-bottom: var(--llb-spacing-xl) !important;
}

/* Info box */
.llb-wrapper .llb-info-box {
	text-align: center;
	margin-bottom: var(--llb-spacing-xl) !important;
	padding: var(--llb-spacing-lg) !important;
	background: var(--llb-bg-tertiary);
	border: 1px solid var(--llb-border-subtle);
	border-radius: var(--llb-radius-md);
}

.llb-wrapper .llb-info-box p {
	font-size: 1.05rem;
	color: var(--llb-text-secondary);
	line-height: 1.7;
	margin-bottom: var(--llb-spacing-sm) !important;
}

.llb-wrapper .llb-info-box p:last-child {
	margin-bottom: 0 !important;
}

.llb-wrapper .llb-info-box strong {
	color: var(--llb-text-primary);
	font-weight: 600;
}

.llb-wrapper .llb-info-box a {
	color: var(--llb-accent-primary);
	text-decoration: none;
	font-weight: 500;
	transition: color var(--llb-transition-fast);
}

.llb-wrapper .llb-info-box a:hover {
	color: #25d9ab;
	text-decoration: underline;
}

/* Help note */
.llb-wrapper .llb-help-note {
	margin-top: var(--llb-spacing-lg) !important;
	font-size: 0.875rem;
	color: var(--llb-text-muted);
}

.llb-wrapper .llb-help-note a {
	color: var(--llb-accent-primary);
	text-decoration: none;
	transition: color var(--llb-transition-fast);
}

.llb-wrapper .llb-help-note a:hover {
	color: #25d9ab;
	text-decoration: underline;
}

/* ===== FOOTER ===== */
.llb-wrapper .llb-footer {
	padding: var(--llb-spacing-xl) 0 !important;
	background: var(--llb-bg-secondary);
	border-top: 1px solid var(--llb-border-subtle);
}

.llb-wrapper .llb-footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--llb-spacing-md);
}

.llb-wrapper .llb-footer-logo img {
	height: 50px;
	width: auto;
	opacity: .9;
	transition: opacity var(--llb-transition-smooth);
}

.llb-wrapper .llb-footer-logo:hover img {
	opacity: 1;
}

.llb-wrapper .llb-footer p {
	font-size: .9rem;
	color: var(--llb-text-muted);
	margin: 0 !important;
}

/* ===== ANIMATIONS ON SCROLL ===== */
.llb-wrapper .llb-reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all .8s cubic-bezier(.4, 0, .2, 1);
}

.llb-wrapper .llb-reveal.llb-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Stagger children */
.llb-wrapper .llb-stagger-children > * {
	opacity: 0;
	transform: translateY(20px);
	transition: all .6s cubic-bezier(.4, 0, .2, 1);
}

.llb-wrapper .llb-stagger-children.llb-visible > *:nth-child(1) {
	transition-delay: 0s;
	opacity: 1;
	transform: translateY(0);
}

.llb-wrapper .llb-stagger-children.llb-visible > *:nth-child(2) {
	transition-delay: .1s;
	opacity: 1;
	transform: translateY(0);
}

.llb-wrapper .llb-stagger-children.llb-visible > *:nth-child(3) {
	transition-delay: .2s;
	opacity: 1;
	transform: translateY(0);
}

.llb-wrapper .llb-stagger-children.llb-visible > *:nth-child(4) {
	transition-delay: .3s;
	opacity: 1;
	transform: translateY(0);
}

.llb-wrapper .llb-stagger-children.llb-visible > *:nth-child(5) {
	transition-delay: .4s;
	opacity: 1;
	transform: translateY(0);
}

.llb-wrapper .llb-stagger-children.llb-visible > *:nth-child(6) {
	transition-delay: .5s;
	opacity: 1;
	transform: translateY(0);
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 767px) {
	.llb-wrapper section {
		padding: 60px 0 !important;
	}
	
	.llb-wrapper .llb-hero {
		padding-top: 32px !important;
		min-height: auto;
	}
	
	.llb-wrapper .llb-btn-large {
		padding: 1rem 1.5rem !important;
		font-size: 1rem;
	}
	
	.llb-wrapper .llb-pricing-card {
		padding: var(--llb-spacing-lg) !important;
	}
	
	.llb-wrapper .llb-pricing-card-price .llb-amount {
		font-size: 2.5rem;
	}
}



.llb-wrapper .llb-font-debug-box {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 12px;
	padding: 16px !important;
	z-index: 9999;
	font-family: system-ui, sans-serif;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .5);
	min-width: 280px;
}

.llb-wrapper .llb-font-debug-box h4 {
	color: #1fc499;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-bottom: 12px !important;
	font-weight: 600;
}

.llb-wrapper .llb-font-debug-box select {
	width: 100%;
	padding: 10px 12px !important;
	background: #252525;
	border: 1px solid #444;
	border-radius: 8px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	outline: none;
	transition: border-color .2s;
}

.llb-wrapper .llb-font-debug-box select:hover {
	border-color: #1fc499;
}

.llb-wrapper .llb-font-debug-box select:focus {
	border-color: #1fc499;
}

.llb-wrapper .llb-font-debug-box .llb-current-font {
	margin-top: 10px !important;
	padding: 8px 12px !important;
	background: rgba(31, 196, 153, .1);
	border-radius: 6px;
	font-size: 12px;
	color: #1fc499;
}

.llb-wrapper .llb-font-debug-box .llb-hint {
	margin-top: 8px !important;
	font-size: 11px;
	color: #666;
}

/* ==========================================================================
   MOBILE UI/UX IMPROVEMENTS (iPhone 14 - 390px reference)
   ========================================================================== */

@media (max-width: 480px) {
	/* ===== TYPOGRAPHY ADJUSTMENTS ===== */
	.llb-wrapper h1 {
		font-size: clamp(2rem, 8vw, 2.5rem);
	}

	.llb-wrapper h2 {
		font-size: clamp(1.6rem, 6vw, 2rem);
	}

	.llb-wrapper .llb-section-header h2 {
		font-size: clamp(1.75rem, 7vw, 2.25rem);
	}

	.llb-wrapper h3 {
		font-size: clamp(1.25rem, 5vw, 1.5rem);
	}

	.llb-wrapper p {
		font-size: 1rem;
	}

	/* ===== HEADER - COMPACT ON MOBILE ===== */
	.llb-wrapper .llb-header {
		padding: var(--llb-spacing-xs) 0 !important;
	}

	.llb-wrapper .llb-header.llb-scrolled {
		padding: var(--llb-spacing-xs) 0 !important;
	}

	.llb-wrapper .llb-logo-img {
		height: 36px;
	}

	.llb-wrapper .llb-nav-cta {
		display: inline-flex;
		padding: 0.4rem 0.6rem !important;
		font-size: 0.65rem;
		gap: 0.2rem;
	}

	.llb-wrapper .llb-nav-cta svg {
		width: 10px;
		height: 10px;
	}

	/* ===== BUTTONS - FULL WIDTH FOR BETTER TAP TARGETS ===== */
	.llb-wrapper .llb-hero-cta .llb-btn,
	.llb-wrapper .llb-story-final-cta .llb-btn,
	.llb-wrapper .llb-guarantee .llb-btn {
		width: 100%;
		justify-content: center;
	}

	.llb-wrapper .llb-btn {
		padding: 0.5rem 1rem !important;
		font-size: 0.85rem;
	}

	.llb-wrapper .llb-btn-large {
		padding: 1rem 1.25rem !important;
		font-size: 1rem;
	}

	/* ===== HERO SECTION ===== */
	.llb-wrapper .llb-hero {
		padding-top: 24px !important;
		padding-bottom: 40px !important;
	}

	.llb-wrapper .llb-hero-badge {
		margin-bottom: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-hero h1 {
		margin-bottom: var(--llb-spacing-sm) !important;
	}

	.llb-wrapper .llb-hero-subtitle {
		font-size: 1rem;
		margin-bottom: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-hero-video-wrapper {
		margin-bottom: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-hero-video-label {
		font-size: 0.875rem;
		margin-top: var(--llb-spacing-sm) !important;
		margin-bottom: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-hero-video-label svg {
		display: none;
	}

	/* ===== INTRO SECTION ===== */
	.llb-wrapper .llb-intro-content {
		padding: 0 var(--llb-spacing-xs) !important;
	}

	.llb-wrapper .llb-intro-lead {
		font-size: 1.1rem;
		margin-bottom: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-intro p {
		font-size: 1rem;
		line-height: 1.7;
	}

	.llb-wrapper .llb-intro-screenshot {
		margin-top: var(--llb-spacing-lg) !important;
	}

	/* ===== FEATURES SECTION ===== */
	.llb-wrapper .llb-features {
		padding: 50px 0 !important;
	}

	.llb-wrapper .llb-feature-card {
		padding: var(--llb-spacing-lg) !important;
	}

	.llb-wrapper .llb-feature-icon {
		width: 48px;
		height: 48px;
	}

	.llb-wrapper .llb-feature-icon svg {
		width: 24px;
		height: 24px;
	}

	.llb-wrapper .llb-feature-card h3 {
		font-size: 1.1rem;
	}

	.llb-wrapper .llb-feature-card p {
		font-size: 0.9rem;
	}

	/* ===== LUCAS STORY SECTION ===== */
	.llb-wrapper .llb-story-header {
		padding: 50px var(--llb-spacing-md) var(--llb-spacing-lg) !important;
	}

	.llb-wrapper .llb-story-card {
		padding: var(--llb-spacing-md) !important;
		width: calc(100% - 1rem);
		min-height: auto;
		align-items: flex-start;
	}

	.llb-wrapper .llb-story-card .llb-card-inner {
		align-items: flex-start;
	}

	.llb-wrapper .llb-story-card:nth-child(1) { top: 70px; }
	.llb-wrapper .llb-story-card:nth-child(2) { top: 82px; }
	.llb-wrapper .llb-story-card:nth-child(3) { top: 94px; }
	.llb-wrapper .llb-story-card:nth-child(4) { top: 106px; }

	.llb-wrapper .llb-story-card-image {
		min-height: 180px;
	}

	.llb-wrapper .llb-story-avatar {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.llb-wrapper .llb-story-card h3 {
		font-size: 1.25rem;
	}

	.llb-wrapper .llb-story-card-content p {
		font-size: 0.95rem;
		line-height: 1.7;
	}

	.llb-wrapper .llb-struggle-item {
		padding: var(--llb-spacing-xs) var(--llb-spacing-sm) !important;
	}

	.llb-wrapper .llb-struggle-item span {
		font-size: 0.9rem;
	}

	.llb-wrapper .llb-transformation-item {
		padding: var(--llb-spacing-xs) var(--llb-spacing-sm) !important;
	}

	.llb-wrapper .llb-transformation-item p {
		font-size: 0.9rem;
	}

	.llb-wrapper .llb-discovery-badge {
		font-size: 0.8rem;
		padding: var(--llb-spacing-xs) var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-llamly-logo-card {
		padding: var(--llb-spacing-sm) var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-llamly-logo-card .llb-llamly-full-logo {
		height: 40px;
	}

	/* ===== HOW IT WORKS SECTION ===== */
	.llb-wrapper .llb-how-it-works {
		padding: 40px 0 50px !important;
	}

	.llb-wrapper .llb-steps-container {
		gap: var(--llb-spacing-xl);
	}

	.llb-wrapper .llb-step-number {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.llb-wrapper .llb-step-content h3 {
		font-size: 1.1rem;
	}

	.llb-wrapper .llb-step-content p {
		font-size: 0.95rem;
	}

	/* ===== PRICING VALUE SECTION ===== */
	.llb-wrapper .llb-pricing-value {
		padding: 50px 0 !important;
	}

	.llb-wrapper .llb-value-card {
		padding: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-value-item {
		padding: var(--llb-spacing-sm) 0 !important;
		flex-wrap: wrap;
		gap: var(--llb-spacing-xs);
	}

	.llb-wrapper .llb-value-item-name {
		font-size: 0.9rem;
	}

	.llb-wrapper .llb-value-item-price {
		font-size: 0.85rem;
	}

	.llb-wrapper .llb-value-cta p {
		font-size: 1.25rem;
	}

	.llb-wrapper .llb-value-cta p::before,
	.llb-wrapper .llb-value-cta p::after {
		width: 30px;
	}

	/* ===== PRICING CARDS ===== */
	.llb-wrapper .llb-pricing-card {
		padding: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-pricing-card-header {
		margin-bottom: var(--llb-spacing-md) !important;
		padding-bottom: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-pricing-card-price .llb-amount {
		font-size: 2.25rem;
	}

	.llb-wrapper .llb-pricing-features li {
		font-size: 0.9rem;
	}

	.llb-wrapper .llb-guarantee-badge {
		flex-direction: column;
		text-align: center;
		padding: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-guarantee-badge svg {
		width: 40px;
		height: 40px;
	}

	.llb-wrapper .llb-value-extras {
		gap: var(--llb-spacing-xs);
	}

	.llb-wrapper .llb-value-extra {
		font-size: 0.8rem;
		padding: 0.4rem 0.75rem !important;
	}

	/* ===== FAQ SECTION ===== */
	.llb-wrapper .llb-faq {
		padding: 50px 0 !important;
	}

	.llb-wrapper .llb-faq-question {
		padding: var(--llb-spacing-md) !important;
		font-size: 0.95rem;
	}

	.llb-wrapper .llb-faq-answer-content {
		padding: 0 var(--llb-spacing-md) var(--llb-spacing-md) !important;
		font-size: 0.9rem;
	}

	/* ===== GUARANTEE SECTION ===== */
	.llb-wrapper .llb-guarantee {
		padding: 50px 0 !important;
	}

	.llb-wrapper .llb-guarantee-content {
		padding: 30px var(--llb-spacing-md) !important;
		border-radius: var(--llb-radius-lg);
	}

	.llb-wrapper .llb-guarantee-icon {
		width: 60px;
		height: 60px;
	}

	.llb-wrapper .llb-guarantee-icon svg {
		width: 30px;
		height: 30px;
	}

	.llb-wrapper .llb-guarantee h2 {
		font-size: 1.5rem;
	}

	.llb-wrapper .llb-guarantee h3 {
		font-size: 1rem;
		margin-bottom: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-guarantee-text {
		font-size: 0.95rem;
		line-height: 1.6;
	}

	.llb-wrapper .llb-guarantee-highlight {
		font-size: 0.95rem;
		margin-bottom: var(--llb-spacing-lg) !important;
	}

	/* ===== THANK YOU PAGE ===== */
	.llb-wrapper .llb-thank-you {
		padding: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-thank-you-content {
		padding: var(--llb-spacing-xl) var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-success-icon {
		width: 80px;
		height: 80px;
	}

	.llb-wrapper .llb-success-circle svg {
		width: 40px;
		height: 40px;
	}

	.llb-wrapper .llb-thank-you h1 {
		font-size: 1.75rem;
	}

	.llb-wrapper .llb-thank-you-subtitle {
		font-size: 1rem;
	}

	.llb-wrapper .llb-info-box {
		padding: var(--llb-spacing-md) !important;
	}

	.llb-wrapper .llb-info-box p {
		font-size: 0.95rem;
	}

	.llb-wrapper .llb-thank-you .llb-btn {
		width: 100%;
		padding: 1rem 2rem !important;
	}

	.llb-wrapper .llb-help-note {
		font-size: 0.8rem;
	}

	/* ===== FOOTER ===== */
	.llb-wrapper .llb-footer {
		padding: var(--llb-spacing-lg) 0 !important;
	}

	.llb-wrapper .llb-footer-logo img {
		height: 40px;
	}

	.llb-wrapper .llb-footer p {
		font-size: 0.85rem;
		text-align: center;
	}

	/* ===== GENERAL SECTION PADDING ===== */
	.llb-wrapper section {
		padding: 50px 0 !important;
	}

	.llb-wrapper .llb-section-header {
		margin-bottom: var(--llb-spacing-xl) !important;
	}

	/* ===== CONTAINER PADDING ===== */
	.llb-wrapper .llb-container {
		padding: 0 var(--llb-spacing-sm) !important;
	}
}

/* Additional fixes for very small screens (320px) */
@media (max-width: 360px) {
	.llb-wrapper h1 {
		font-size: 1.75rem;
	}

	.llb-wrapper h2,
	.llb-wrapper .llb-section-header h2 {
		font-size: 1.5rem;
	}

	.llb-wrapper .llb-pricing-card-price .llb-amount {
		font-size: 2rem;
	}

	.llb-wrapper .llb-story-card {
		padding: var(--llb-spacing-sm) !important;
	}
}

/* ==========================================================================
   GUTENBERG: Fix nested .llb-wrapper (inner-blocks/child blocks)

   In Gutenberg, each child block also has .llb-wrapper which causes
   nested dark backgrounds. This rule makes nested wrappers transparent.
   ========================================================================== */
.llb-wrapper .llb-wrapper {
    background-color: transparent;
    color: inherit;
}

/* Sections with light backgrounds - ensure child wrappers have correct text color */
.llb-faq .llb-wrapper,
.llb-testimonials .llb-wrapper,
.llb-features .llb-wrapper {
    color: var(--llb-text-dark);
}

/* ==========================================================================
   GUTENBERG: Fix flex/grid layout for inner-blocks

   Gutenberg wraps each child block in .llb-wrapper, breaking flex/grid layouts.
   Using display: contents makes these wrappers "transparent" to the layout.
   ========================================================================== */
.llb-testimonials-track > .llb-wrapper,
.llb-features-grid > .llb-wrapper,
.llb-faq-list > .llb-wrapper,
.llb-steps-grid > .llb-wrapper,
.llb-steps > .llb-wrapper,
.llb-stack-cards > .llb-wrapper {
    display: contents;
}


