
/* ==========================================================================
   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, font, and color (overrides theme h1/h2/etc styles) */
.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;
    color: inherit !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;
}


/* ============================================
           CSS VARIABLES & RESET
           ============================================ */
.llb-wrapper {
	/* Colors */
	--llb-red: #d82a50;
	--llb-red-light: #ff3d64;
	--llb-red-dark: #b8203f;
	--llb-navy: #0b1c2a;
	--llb-navy-light: #132839;
	--llb-navy-lighter: #1a3547;
	--llb-white: #fff;
	--llb-gray-100: #f8f9fb;
	--llb-gray-200: #e8ecf1;
	--llb-gray-300: #d1d9e2;
	--llb-gray-400: #9baabc;
	--llb-gray-500: #6b7c8f;
	/* Typography */
	--llb-font-display: "Plus Jakarta Sans", sans-serif;
	--llb-font-body: "Plus Jakarta Sans", sans-serif;
	/* Spacing */
	--llb-section-padding: clamp(40px, 6vw, 80px);
	--llb-container-width: 1280px;
	--llb-grid-gap: 24px;
	/* Transitions */
	--llb-ease-out-expo: cubic-bezier(.16, 1, .3, 1);
	--llb-ease-out-back: cubic-bezier(.34, 1.56, .64, 1);
	/* Borders */
	--llb-border-color: rgba(255, 255, 255, .08);
	--llb-border-color-dark: rgba(11, 28, 42, .08);
}

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

.llb-wrapper {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.llb-wrapper {
	font-family: var(--llb-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--llb-navy);
	background: var(--llb-white);
}

.llb-wrapper img {
	max-width: 100%;
	height: auto;
	display: block;
}

.llb-wrapper a {
	text-decoration: none;
	color: inherit;
}

.llb-wrapper button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
}

.llb-wrapper ul, .llb-wrapper ol {
	list-style: none;
}

/* ============================================
           UTILITY CLASSES
           ============================================ */
.llb-wrapper .llb-container {
	width: 100%;
	max-width: var(--llb-container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.llb-wrapper .llb-section {
	padding: var(--llb-section-padding) 0;
	position: relative;
}

.llb-wrapper .llb-section--dark {
	background: var(--llb-navy);
	color: var(--llb-white);
}

.llb-wrapper .llb-section--gray {
	background: var(--llb-gray-100);
}

/* Grid Pattern Background */
.llb-wrapper .llb-grid-pattern {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.llb-wrapper .llb-grid-pattern--light {
	background-image: linear-gradient(rgba(11, 28, 42, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 28, 42, .04) 1px, transparent 1px);
}

/* Text Styles */
.llb-wrapper .llb-text-gradient {
	background: linear-gradient(135deg, var(--llb-red) 0%, var(--llb-red-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.llb-wrapper .llb-headline-xl {
	font-family: var(--llb-font-display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.02em;
}

.llb-wrapper .llb-headline-lg {
	font-family: var(--llb-font-display);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -.02em;
}

.llb-wrapper .llb-headline-md {
	font-family: var(--llb-font-display);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1.2;
}

.llb-wrapper .llb-subheadline {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	color: var(--llb-gray-500);
	line-height: 1.6;
	max-width: 600px;
}

.llb-wrapper .llb-section--dark .llb-subheadline {
	color: var(--llb-gray-300);
}

/* Buttons */
.llb-wrapper .llb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 32px;
	font-family: var(--llb-font-display);
	font-size: 1rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all .4s var(--llb-ease-out-expo);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-btn--primary {
	background: var(--llb-red);
	color: var(--llb-white);
	box-shadow: 0 4px 24px rgba(216, 42, 80, .3);
}

.llb-wrapper .llb-btn--primary:hover {
	background: var(--llb-red-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(216, 42, 80, .4);
}

.llb-wrapper .llb-btn--secondary {
	background: transparent;
	color: var(--llb-white);
	border: 2px solid rgba(255, 255, 255, .2);
}

.llb-wrapper .llb-btn--secondary:hover {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .4);
}

.llb-wrapper .llb-btn--outline {
	background: transparent;
	color: var(--llb-navy);
	border: 2px solid var(--llb-gray-200);
}

.llb-wrapper .llb-btn--outline:hover {
	border-color: var(--llb-red);
	color: var(--llb-red);
}

.llb-wrapper .llb-btn svg {
	width: 20px;
	height: 20px;
	transition: transform .3s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-btn:hover svg {
	transform: translateX(4px);
}

/* Badge */
.llb-wrapper .llb-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(216, 42, 80, .1);
	border: 1px solid rgba(216, 42, 80, .2);
	border-radius: 100px;
	font-size: .85rem;
	font-weight: 500;
	color: var(--llb-red);
}

.llb-wrapper .llb-badge::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--llb-red);
	border-radius: 50%;
	animation: pulse 2s infinite;
}

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

/* ============================================
           ANIMATIONS
           ============================================ */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	
	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-60px);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(60px);
	}
	
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleIn {
	from {
		opacity: 0;
		transform: scale(.9);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

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

@keyframes gridMove {
	0% {
		background-position: 0 0;
	}
	
	100% {
		background-position: 60px 60px;
	}
}

.llb-wrapper .llb-animate-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: all .8s var(--llb-ease-out-expo);
}

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

/* ============================================
           HEADER / NAVIGATION
           ============================================ */
.llb-wrapper .llb-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 0;
	transition: all .4s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-header.llb-scrolled {
	background: rgba(11, 28, 42, .95);
	backdrop-filter: blur(20px);
	padding: 12px 0;
	box-shadow: 0 4px 30px rgba(0, 0, 0, .2);
}

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

.llb-wrapper .llb-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--llb-font-display);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--llb-white);
}

.llb-wrapper .llb-logo__icon {
	display: flex;
	align-items: center;
}

.llb-wrapper .llb-logo__icon img {
	height: 40px;
	width: auto;
}

.llb-wrapper .llb-nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.llb-wrapper .llb-nav__links {
	display: flex;
	align-items: center;
	gap: 32px;
}

.llb-wrapper .llb-nav__link {
	font-size: .95rem;
	font-weight: 500;
	color: rgba(255, 255, 255, .7);
	transition: color .3s ease;
	position: relative;
}

.llb-wrapper .llb-nav__link::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--llb-red);
	transition: width .3s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-nav__link:hover {
	color: var(--llb-white);
}

.llb-wrapper .llb-nav__link:hover::after {
	width: 100%;
}

.llb-wrapper .llb-nav__cta {
	padding: 12px 24px;
	font-size: .9rem;
}

.llb-wrapper .llb-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 28px;
	cursor: pointer;
}

.llb-wrapper .llb-mobile-toggle span {
	width: 100%;
	height: 2px;
	background: var(--llb-white);
	transition: all .3s ease;
}

/* ============================================
           HERO SECTION
           ============================================ */
.llb-wrapper .llb-hero {
	min-height: 100vh;
	background: var(--llb-navy);
	color: var(--llb-white);
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 140px 0 100px;
}

.llb-wrapper .llb-hero__bg-image {
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><rect fill=\"%230B1C2A\" width=\"100\" height=\"100\"/><g fill-opacity=\"0.1\"><polygon fill=\"%23D82A50\" points=\"50,0 100,50 50,100 0,50\"/></g></svg>");
	background-size: 200px;
	opacity: .3;
}

.llb-wrapper .llb-hero__grid-bg {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(216, 42, 80, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(216, 42, 80, .03) 1px, transparent 1px);
	background-size: 60px 60px;
}

.llb-wrapper .llb-hero__gradient {
	position: absolute;
	width: 800px;
	height: 800px;
	border-radius: 50%;
	filter: blur(150px);
	opacity: .12;
	pointer-events: none;
}

.llb-wrapper .llb-hero__gradient--1 {
	top: -300px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--llb-red);
}

.llb-wrapper .llb-hero__gradient--2 {
	bottom: -400px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--llb-red-dark);
}

.llb-wrapper .llb-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 1;
}

.llb-wrapper .llb-hero__content {
	max-width: 900px;
	animation: fadeInUp 1s var(--llb-ease-out-expo) forwards;
}

.llb-wrapper .llb-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
	padding: 12px 24px;
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 50px;
	font-size: .9rem;
	font-weight: 500;
	animation: fadeInUp .8s var(--llb-ease-out-expo) .1s both;
}

.llb-wrapper .llb-hero__badge::before {
	content: "";
	width: 8px;
	height: 8px;
	background: var(--llb-red);
	border-radius: 50%;
	box-shadow: 0 0 10px var(--llb-red);
}

.llb-wrapper .llb-hero__title {
	margin-bottom: 28px;
	animation: fadeInUp .8s var(--llb-ease-out-expo) .2s both;
}

.llb-wrapper .llb-hero__subtitle {
	font-size: 1.2rem;
	color: var(--llb-gray-300);
	margin-bottom: 32px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
	animation: fadeInUp .8s var(--llb-ease-out-expo) .3s both;
}

.llb-wrapper .llb-hero__social-proof {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 32px;
	animation: fadeInUp .8s var(--llb-ease-out-expo) .35s both;
}

.llb-wrapper .llb-hero__avatars {
	display: flex;
	align-items: center;
}

.llb-wrapper .llb-hero__avatars img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 3px solid var(--llb-navy);
	object-fit: cover;
	margin-left: -12px;
	transition: transform .3s ease;
}

.llb-wrapper .llb-hero__avatars img:first-child {
	margin-left: 0;
}

.llb-wrapper .llb-hero__avatars img:hover {
	transform: scale(1.15);
	z-index: 10;
}

.llb-wrapper .llb-hero__social-proof-text {
	font-size: .95rem;
	color: var(--llb-gray-400);
}

.llb-wrapper .llb-hero__social-proof-text strong {
	color: var(--llb-white);
	font-weight: 600;
}

.llb-wrapper .llb-hero__ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 80px;
	animation: fadeInUp .8s var(--llb-ease-out-expo) .4s both;
}

.llb-wrapper .llb-hero__stats {
	display: flex;
	gap: 16px;
	justify-content: center;
	animation: fadeInUp .8s var(--llb-ease-out-expo) .5s both;
}

.llb-wrapper .llb-stat {
	text-align: center;
	padding: 24px 32px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
	min-width: 160px;
	transition: all .3s ease;
}

.llb-wrapper .llb-stat:hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(216, 42, 80, .3);
	transform: translateY(-4px);
}

.llb-wrapper .llb-stat__icon {
	width: 40px;
	height: 40px;
	margin: 0 auto 12px;
	color: var(--llb-red);
}

.llb-wrapper .llb-stat__icon svg {
	width: 100%;
	height: 100%;
	stroke-width: 1.5;
}

.llb-wrapper .llb-stat__number {
	font-family: var(--llb-font-display);
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--llb-white);
	margin-bottom: 4px;
}

.llb-wrapper .llb-stat__label {
	font-size: .85rem;
	color: var(--llb-gray-400);
}

/* ============================================
           RESPONSIVE - HERO
           ============================================ */
@media (max-width: 1024px) {
	.llb-wrapper .llb-hero__stats {
		flex-wrap: wrap;
	}
	
	.llb-wrapper .llb-stat {
		min-width: 140px;
		padding: 20px 24px;
	}
	
	.llb-wrapper .llb-nav__links {
		display: none;
	}
	
	.llb-wrapper .llb-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.llb-wrapper .llb-hero__stats {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		width: 100%;
		max-width: 400px;
	}
	
	.llb-wrapper .llb-stat {
		min-width: unset;
	}
}

@media (max-width: 640px) {
	.llb-wrapper .llb-hero {
		padding: 120px 0 80px;
	}
	
	.llb-wrapper .llb-hero__badge {
		font-size: .8rem;
		padding: 10px 18px;
	}
	
	.llb-wrapper .llb-stat {
		padding: 16px;
	}
	
	.llb-wrapper .llb-stat__number {
		font-size: 1.4rem;
	}
	
	.llb-wrapper .llb-stat__icon {
		width: 32px;
		height: 32px;
	}
	
	.llb-wrapper .llb-hero__social-proof {
		flex-direction: column;
		gap: 12px;
	}
	
	.llb-wrapper .llb-hero__avatars img {
		width: 36px;
		height: 36px;
		margin-left: -10px;
	}
	
	.llb-wrapper .llb-hero__social-proof-text {
		font-size: .85rem;
	}
	
	.llb-wrapper .llb-hero__ctas {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
	}
	
	.llb-wrapper .llb-btn {
		width: 100%;
	}
}

/* ============================================
           FEATURES SECTION
           ============================================ */
.llb-wrapper .llb-features {
	background: var(--llb-white);
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px;
}

.llb-wrapper .llb-features__header {
	text-align: center;
	margin-bottom: 48px;
}

.llb-wrapper .llb-features__header .llb-subheadline {
	margin: 16px auto 0;
}

.llb-wrapper .llb-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.llb-wrapper .llb-feature-card {
	padding: 32px;
	background: var(--llb-gray-100);
	border-radius: 16px;
	border: 1px solid transparent;
	transition: all .4s var(--llb-ease-out-expo);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-feature-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--llb-red), var(--llb-red-light));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-feature-card:hover {
	background: var(--llb-white);
	border-color: var(--llb-gray-200);
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(11, 28, 42, .08);
}

.llb-wrapper .llb-feature-card:hover::before {
	transform: scaleX(1);
}

.llb-wrapper .llb-feature-card__icon {
	width: 48px;
	height: 48px;
	background: var(--llb-navy);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: all .4s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-feature-card:hover .llb-feature-card__icon {
	background: var(--llb-red);
	transform: scale(1.1) rotate(-5deg);
}

.llb-wrapper .llb-feature-card__icon svg {
	width: 24px;
	height: 24px;
	color: var(--llb-white);
}

.llb-wrapper .llb-feature-card__title {
	font-family: var(--llb-font-display);
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--llb-navy);
}

.llb-wrapper .llb-feature-card__desc {
	font-size: .95rem;
	color: var(--llb-gray-500);
	line-height: 1.6;
}

.llb-wrapper .llb-feature-card__badge {
	display: inline-block;
	padding: 4px 10px;
	background: rgba(216, 42, 80, .1);
	color: var(--llb-red);
	font-size: .75rem;
	font-weight: 600;
	border-radius: 4px;
	margin-top: 16px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

@media (max-width: 1200px) {
	.llb-wrapper .llb-features__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.llb-wrapper .llb-features__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
           TWO WIDGETS SECTION
           ============================================ */
.llb-wrapper .llb-widgets {
	background: var(--llb-white);
	color: var(--llb-navy);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-widgets__header {
	text-align: center;
	margin-bottom: 48px;
}

.llb-wrapper .llb-widgets__header .llb-subheadline {
	margin: 16px auto 0;
	color: var(--llb-gray-500);
}

/* Tab Switcher */
.llb-wrapper .llb-widgets__tabs {
	display: flex;
	justify-content: center;
	margin-bottom: 56px;
}

.llb-wrapper .llb-widgets__tabs-container {
	display: inline-flex;
	background: var(--llb-gray-100);
	border-radius: 50px;
	padding: 6px;
	gap: 4px;
	border: 1px solid var(--llb-gray-200);
}

.llb-wrapper .llb-widgets__tab {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	font-family: var(--llb-font-display);
	font-size: .95rem;
	font-weight: 600;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all .3s var(--llb-ease-out-expo);
	background: transparent;
	color: var(--llb-gray-500);
}

.llb-wrapper .llb-widgets__tab svg {
	width: 18px;
	height: 18px;
}

.llb-wrapper .llb-widgets__tab:hover:not(.llb-active) {
	color: var(--llb-navy);
	background: var(--llb-gray-200);
}

.llb-wrapper .llb-widgets__tab.llb-active {
	background: var(--llb-red);
	color: var(--llb-white);
	box-shadow: 0 4px 12px rgba(216, 42, 80, .3);
}

/* Widget Content */
.llb-wrapper .llb-widgets__content {
	display: none;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .4s ease, transform .4s ease;
}

.llb-wrapper .llb-widgets__content.llb-active {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
	opacity: 1;
	transform: translateY(0);
}

.llb-wrapper .llb-widgets__content-text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.llb-wrapper .llb-widgets__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(59, 130, 246, .2);
	color: #60a5fa;
	font-size: .85rem;
	font-weight: 600;
	border-radius: 50px;
	width: fit-content;
}

.llb-wrapper .llb-widgets__badge svg {
	width: 16px;
	height: 16px;
}

.llb-wrapper .llb-widgets__content-title {
	font-family: var(--llb-font-display);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--llb-navy);
}

.llb-wrapper .llb-widgets__content-description {
	font-size: 1.05rem;
	color: var(--llb-gray-600);
	line-height: 1.7;
}

.llb-wrapper .llb-widgets__checklist {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 8px;
}

.llb-wrapper .llb-widgets__checklist-item {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 1rem;
	color: var(--llb-navy);
}

.llb-wrapper .llb-widgets__checklist-item svg {
	width: 20px;
	height: 20px;
	color: #22c55e;
	flex-shrink: 0;
}

/* Image Card */
.llb-wrapper .llb-widgets__image-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	aspect-ratio: 4/3;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
}

.llb-wrapper .llb-widgets__image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.llb-wrapper .llb-widgets__image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 32px 24px 24px;
	background: linear-gradient(to top, rgba(11, 28, 42, .9) 0%, rgba(11, 28, 42, .6) 50%, transparent 100%);
	color: var(--llb-white);
}

.llb-wrapper .llb-widgets__image-category {
	font-size: .85rem;
	color: var(--llb-gray-300);
	margin-bottom: 6px;
	font-weight: 500;
}

.llb-wrapper .llb-widgets__image-title {
	font-family: var(--llb-font-display);
	font-size: 1.35rem;
	font-weight: 700;
}

@media (max-width: 900px) {
	.llb-wrapper .llb-widgets__content.llb-active {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.llb-wrapper .llb-widgets__content-text {
		order: 2;
	}
	
	.llb-wrapper .llb-widgets__image-card {
		order: 1;
	}
	
	.llb-wrapper .llb-widgets__tabs-container {
		flex-direction: column;
		width: 100%;
		max-width: 320px;
	}
	
	.llb-wrapper .llb-widgets__tab {
		justify-content: center;
	}
}

/* ============================================
           LAYOUTS SECTION - INTERACTIVE DEMO
           ============================================ */
.llb-wrapper .llb-layouts {
	background: var(--llb-gray-100);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-layouts__header {
	text-align: center;
	margin-bottom: 48px;
}

.llb-wrapper .llb-layouts__header .llb-subheadline {
	margin: 16px auto 0;
}

/* Grid Filter Tabs */
.llb-wrapper .llb-layouts__tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 48px;
}

.llb-wrapper .llb-layouts__tab {
	padding: 10px 20px;
	font-family: var(--llb-font-display);
	font-size: .85rem;
	font-weight: 600;
	color: var(--llb-gray-500);
	background: var(--llb-white);
	border: 2px solid var(--llb-gray-200);
	border-radius: 100px;
	cursor: pointer;
	transition: all .3s var(--llb-ease-out-expo);
	white-space: nowrap;
	height: 44px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.llb-wrapper .llb-layouts__tab:hover {
	color: var(--llb-navy);
	border-color: var(--llb-gray-300);
}

.llb-wrapper .llb-layouts__tab.llb-active {
	color: var(--llb-white);
	background: var(--llb-navy);
	border-color: var(--llb-navy);
}

/* Filter rows */
.llb-wrapper .llb-layouts__tabs-row {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 12px;
}

.llb-wrapper .llb-layouts__tabs-row:last-child {
	margin-bottom: 0;
}

/* Demo Container */
.llb-wrapper .llb-layouts__demo-container {
	background: var(--llb-white);
	border-radius: 16px;
	padding: 24px;
	border: 1px solid var(--llb-gray-200);
	box-shadow: 0 4px 20px rgba(11, 28, 42, .05);
}

/* Fade transition for grid switching */
.llb-wrapper .llb-layouts-demo {
	transition: opacity .3s ease-in-out;
}

.llb-wrapper .llb-layouts-demo.llb-fade-out {
	opacity: 0;
}

/* Current Grid Info */
.llb-wrapper .llb-layouts__current-info {
	text-align: center;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--llb-gray-200);
}

.llb-wrapper .llb-layouts__current-title {
	font-family: var(--llb-font-display);
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--llb-navy);
	margin-bottom: 6px;
}

.llb-wrapper .llb-layouts__current-title .llb-badge {
	display: inline-block;
	background: var(--llb-red);
	color: white;
	font-size: .65rem;
	padding: 3px 8px;
	border-radius: 4px;
	margin-left: 10px;
	vertical-align: middle;
}

.llb-wrapper .llb-layouts__current-desc {
	font-size: .95rem;
	color: var(--llb-gray-500);
}

/* ============================================
           PORTFOLIO GRID CSS (from plugin)
           ============================================ */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content:after {
	content: "";
	clear: both;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item-wrapper {
	float: left;
	margin-bottom: 0;
	width: 100%;
	overflow: hidden;
	background: transparent;
	box-sizing: border-box !important;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item-wrapper {
		width: 50%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item-wrapper img {
	display: block;
	width: 100%;
	transition: all .4s ease-in-out;
	background: #f4f4f4;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item {
	display: block;
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

/* Columns */
@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-columns-3 .llb-portfolio-item-wrapper {
		width: 33.33%;
	}
	
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-columns-4 .llb-portfolio-item-wrapper {
		width: 25%;
	}
}

/* Margin */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-margin .llb-portfolio-item-wrapper {
	padding: 0;
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
}

/* Box Style - 3 columns */
@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-style-box .llb-portfolio-item-wrapper {
		width: 33.33%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-style-box .llb-portfolio-item {
	height: 220px;
}

@media (min-width: 1200px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-style-box .llb-portfolio-item {
		height: 280px;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-style-box .llb-portfolio-item img {
	display: none;
}

/* Portfolio Item Info Wrapper */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item-infos-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(11, 28, 42, .85);
	color: #fff;
	text-align: center;
	z-index: 9;
	transition: all .4s ease-in-out;
	opacity: 0;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item-infos {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	padding: 20px;
	margin-top: -40px;
	z-index: 10;
	opacity: 0;
	transition: all .4s ease-in-out;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 4px;
	font-family: var(--llb-font-display);
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content .llb-portfolio-item-category {
	font-size: 12px;
	font-style: italic;
	opacity: .7;
}

/* HOVER EFFECT: hover10 - Text from Bottom */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-hover10 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-hover10 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1 !important;
	transform: translateY(0px) !important;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-hover10 .llb-portfolio-item-infos-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(11, 28, 42, .85);
	color: #fff;
	text-align: center;
	z-index: 9;
	transition: all .4s ease-in-out;
	opacity: 0;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-hover10 .llb-portfolio-item-infos {
	transition: all .4s ease-in-out;
	transform: translateY(40px);
}

/* ============================================
           SPECIAL GRIDS CSS (from plugin)
           ============================================ */

/* Special Grid 1 */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper {
	box-sizing: border-box;
	padding: 0px !important;
	width: 100%;
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper .llb-portfolio-item {
	height: 220px;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper {
		width: 25%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper * {
	box-sizing: border-box;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper img {
	display: none;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(3), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(6), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(9), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(12) {
	width: 100%;
	height: 440px;
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(3), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(6), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(9), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(12) {
		width: 50%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(3) .llb-portfolio-item, .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(6) .llb-portfolio-item, .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(9) .llb-portfolio-item, .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-1 .llb-portfolio-item-wrapper:nth-child(12) .llb-portfolio-item {
	height: 440px;
}

/* Special Grid 2 */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper {
	box-sizing: border-box;
	padding: 0px !important;
	width: 100%;
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper * {
	box-sizing: border-box;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper .llb-portfolio-item {
	height: 220px;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper {
		width: 25%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper img {
	display: none;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper:nth-child(3n+1) {
	height: 440px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-2 .llb-portfolio-item-wrapper:nth-child(3n+1) .llb-portfolio-item {
	height: 440px;
}

/* Special Grid 3 */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper {
	padding: 0px !important;
	width: 100%;
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper * {
	box-sizing: border-box;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper .llb-portfolio-item {
	height: 220px;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper {
		width: 25%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper img {
	display: none;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(1), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(7), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(9) {
	height: 440px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(1) .llb-portfolio-item, .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(7) .llb-portfolio-item, .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(9) .llb-portfolio-item {
	height: 440px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(3), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(5), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(11) {
	width: 100%;
	height: 440px;
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(3), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(5), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(11) {
		width: 50%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(3) .llb-portfolio-item, .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(5) .llb-portfolio-item, .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-3 .llb-portfolio-item-wrapper:nth-child(11) .llb-portfolio-item {
	height: 440px;
}

/* Special Grid 4 */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper {
	box-sizing: border-box;
	padding: 0px !important;
	width: 100%;
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper * {
	box-sizing: border-box;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper .llb-portfolio-item {
	height: 220px;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper {
		width: 25%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper img {
	display: none;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper:nth-child(2n) {
	width: 100%;
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-4 .llb-portfolio-item-wrapper:nth-child(2n) {
		width: 50%;
	}
}

/* Special Grid 5 - Justified 1 */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper {
	padding: 5px !important;
	margin-bottom: 5px;
	width: 100%;
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper * {
	box-sizing: border-box;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper .llb-portfolio-item {
	height: 220px;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper {
		width: 25%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper img {
	display: none;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(3), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(4), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(9), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(10) {
	width: 100%;
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(3), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(4), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(9), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-5 .llb-portfolio-item-wrapper:nth-child(10) {
		width: 50%;
	}
}

/* Special Grid 6 - Justified 2 */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-6 .llb-portfolio-item-wrapper {
	padding: 5px !important;
	margin-bottom: 5px;
	width: 33.33%;
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-6 .llb-portfolio-item-wrapper * {
	box-sizing: border-box;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-6 .llb-portfolio-item-wrapper .llb-portfolio-item {
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-6 .llb-portfolio-item-wrapper img {
	display: none;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-6 .llb-portfolio-item-wrapper:nth-child(4), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-6 .llb-portfolio-item-wrapper:nth-child(9), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-6 .llb-portfolio-item-wrapper:nth-child(11) {
	width: 66.66%;
}

/* Special Grid 7 - Alternate Rows */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper {
	box-sizing: border-box;
	padding: 5px;
	margin-bottom: 5px;
	width: 100%;
	height: 220px;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper * {
	box-sizing: border-box;
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper .llb-portfolio-item {
	height: 220px;
}

@media (min-width: 768px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper {
		width: 33.33%;
	}
	
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper:nth-child(6n+4) {
		width: 60%;
		margin-left: 20%;
		margin-right: 20%;
	}
	
	.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper:nth-child(6n+5), .llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper:nth-child(6n) {
		width: 50%;
	}
}

.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content.llb-elpt-portfolio-special-grid-7 .llb-portfolio-item-wrapper img {
	display: none;
}

/* Hide margin class padding for special grids */
.llb-wrapper .llb-layouts-demo .llb-elpt-portfolio-content[class*="llb-elpt-portfolio-special-grid"].llb-elpt-portfolio-margin .llb-portfolio-item-wrapper {
	padding-left: 5px;
	padding-right: 5px;
	padding-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.llb-wrapper .llb-layouts__tabs {
		gap: 8px;
	}
	
	.llb-wrapper .llb-layouts__tab {
		padding: 8px 14px;
		font-size: .8rem;
	}
	
	.llb-wrapper .llb-layouts__demo-container {
		padding: 16px;
	}
}

/* ============================================
           GRID BUILDER SECTION
           ============================================ */
.llb-wrapper .llb-grid-builder {
	background: var(--llb-navy);
	color: var(--llb-white);
	position: relative;
}

.llb-wrapper .llb-grid-builder__header {
	text-align: center;
	margin-bottom: 48px;
}

.llb-wrapper .llb-grid-builder__header .llb-headline-lg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px;
}

.llb-wrapper .llb-grid-builder__header .llb-subheadline {
	margin: 16px auto 0;
	text-align: center;
	color: var(--llb-gray-300);
}

.llb-wrapper .llb-grid-builder__container {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 32px;
	align-items: start;
}

@media (max-width: 1024px) {
	.llb-wrapper .llb-grid-builder__container {
		grid-template-columns: 1fr;
	}
}

/* Grid Preview Area */
.llb-wrapper .llb-grid-builder__preview {
	background: rgba(255, 255, 255, .03);
	border-radius: 16px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, .1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
}

.llb-wrapper .llb-grid-builder__preview-title {
	font-family: var(--llb-font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--llb-white);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.llb-wrapper .llb-grid-builder__preview-title svg {
	width: 20px;
	height: 20px;
	color: var(--llb-red);
}

.llb-wrapper .llb-grid-builder__grid {
	position: relative;
	min-height: 400px;
}

.llb-wrapper .llb-grid-builder__item {
	position: absolute;
	cursor: pointer;
	box-sizing: border-box;
	padding: 5px;
}

.llb-wrapper .llb-grid-builder__item-inner {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .05);
	border-radius: 8px;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
	border: 2px solid rgba(255, 255, 255, .1);
	position: relative;
}

.llb-wrapper .llb-grid-builder__item:hover .llb-grid-builder__item-inner {
	border-color: var(--llb-red);
}

.llb-wrapper .llb-grid-builder__item.llb-selected .llb-grid-builder__item-inner {
	border-color: var(--llb-red);
	box-shadow: 0 0 0 3px rgba(216, 42, 80, .2);
}

.llb-wrapper .llb-grid-builder__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.llb-wrapper .llb-grid-builder__item-number {
	position: absolute;
	top: 8px;
	left: 8px;
	background: var(--llb-red);
	color: white;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	font-size: .75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

/* Grid sizer for Isotope */
.llb-wrapper .llb-grid-builder__sizer {
	width: 10px;
}

/* Controls Panel */
.llb-wrapper .llb-grid-builder__controls {
	background: rgba(255, 255, 255, .05);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, .1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.llb-wrapper .llb-grid-builder__controls-header {
	background: var(--llb-red);
	color: white;
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.llb-wrapper .llb-grid-builder__controls-header svg {
	width: 20px;
	height: 20px;
}

.llb-wrapper .llb-grid-builder__controls-header span {
	font-family: var(--llb-font-display);
	font-weight: 700;
	font-size: .95rem;
}

.llb-wrapper .llb-grid-builder__controls-body {
	padding: 20px;
	flex: 1;
	overflow-y: auto;
}

.llb-wrapper .llb-grid-builder__item-control {
	background: rgba(255, 255, 255, .05);
	border-radius: 10px;
	padding: 14px;
	margin-bottom: 12px;
	border: 2px solid rgba(255, 255, 255, .1);
	transition: all .2s ease;
	cursor: pointer;
}

.llb-wrapper .llb-grid-builder__item-control:last-child {
	margin-bottom: 0;
}

.llb-wrapper .llb-grid-builder__item-control:hover {
	border-color: rgba(255, 255, 255, .25);
}

.llb-wrapper .llb-grid-builder__item-control.llb-active {
	border-color: var(--llb-red);
	background: rgba(216, 42, 80, .15);
}

.llb-wrapper .llb-grid-builder__item-control-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.llb-wrapper .llb-grid-builder__item-control-title {
	font-family: var(--llb-font-display);
	font-weight: 700;
	font-size: .85rem;
	color: var(--llb-white);
	display: flex;
	align-items: center;
	gap: 8px;
}

.llb-wrapper .llb-grid-builder__item-control-title span {
	background: var(--llb-red);
	color: white;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	font-size: .7rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.llb-wrapper .llb-grid-builder__item-control-fields {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.llb-wrapper .llb-grid-builder__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

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

.llb-wrapper .llb-grid-builder__field label {
	font-size: .7rem;
	font-weight: 600;
	color: rgba(255, 255, 255, .6);
	text-transform: uppercase;
	letter-spacing: .5px;
}

.llb-wrapper .llb-grid-builder__field-value {
	font-size: .75rem;
	font-weight: 700;
	color: var(--llb-white);
	background: rgba(255, 255, 255, .15);
	padding: 2px 8px;
	border-radius: 4px;
}

.llb-wrapper .llb-grid-builder__field input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	background: rgba(255, 255, 255, .2);
	border-radius: 3px;
	outline: none;
	cursor: pointer;
}

.llb-wrapper .llb-grid-builder__field input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	background: var(--llb-red);
	border-radius: 50%;
	cursor: pointer;
	transition: all .2s ease;
	box-shadow: 0 2px 6px rgba(216, 42, 80, .3);
}

.llb-wrapper .llb-grid-builder__field input[type="range"]::-webkit-slider-thumb:hover {
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(216, 42, 80, .5);
}

.llb-wrapper .llb-grid-builder__field input[type="range"]::-moz-range-thumb {
	width: 18px;
	height: 18px;
	background: var(--llb-red);
	border-radius: 50%;
	cursor: pointer;
	border: none;
	box-shadow: 0 2px 6px rgba(216, 42, 80, .3);
}

/* PRO Badge in header */
.llb-wrapper .llb-grid-builder__pro-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--llb-red);
	color: white;
	padding: 6px 12px;
	border-radius: 100px;
	font-size: .75rem;
	font-weight: 700;
	vertical-align: middle;
}

.llb-wrapper .llb-grid-builder__pro-badge svg {
	width: 14px;
	height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
	.llb-wrapper .llb-grid-builder__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.llb-wrapper .llb-grid-builder__item[data-width="3"], .llb-wrapper .llb-grid-builder__item[data-width="4"] {
		grid-column: span 2;
	}
}

/* ============================================
           HOVER EFFECTS SECTION - CAROUSEL
           ============================================ */
.llb-wrapper .llb-hover-effects {
	background: var(--llb-white);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-hover-effects__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 48px;
	gap: 40px;
	flex-wrap: wrap;
}

.llb-wrapper .llb-hover-effects__header-content {
	max-width: 600px;
}

.llb-wrapper .llb-hover-effects__header-content h2 {
	font-family: var(--llb-font-display);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	color: var(--llb-navy);
	margin-bottom: 12px;
	line-height: 1.2;
}

.llb-wrapper .llb-hover-effects__header-content p {
	font-size: 1.05rem;
	color: var(--llb-gray-500);
	line-height: 1.6;
}

.llb-wrapper .llb-hover-effects__filters {
	display: flex;
	gap: 8px;
}

.llb-wrapper .llb-hover-effects__filter-btn {
	padding: 10px 24px;
	border-radius: 8px;
	font-family: var(--llb-font-display);
	font-size: .9rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .3s ease;
	border: 1px solid var(--llb-gray-200);
	background: var(--llb-white);
	color: var(--llb-gray-500);
}

.llb-wrapper .llb-hover-effects__filter-btn:hover {
	border-color: var(--llb-gray-300);
	color: var(--llb-navy);
}

.llb-wrapper .llb-hover-effects__filter-btn.llb-active {
	background: var(--llb-navy);
	border-color: var(--llb-navy);
	color: var(--llb-white);
}

.llb-wrapper .llb-hover-effects__filter-btn--pro.llb-active {
	background: var(--llb-red);
	border-color: var(--llb-red);
}

/* ============================================
           POWERFOLIO PLUGIN CSS - EXACT COPY
           These styles match the plugin exactly
           ============================================ */

/* Carousel Container */
.llb-wrapper .llb-hover-effects__carousel-wrapper {
	position: relative;
	margin: 0 -24px;
	padding: 0 24px;
}

.llb-wrapper .llb-hover-effects__carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	padding: 20px 0 40px;
	-webkit-overflow-scrolling: touch;
}

.llb-wrapper .llb-hover-effects__carousel::-webkit-scrollbar {
	display: none;
}

.llb-wrapper .llb-hover-effects__carousel.llb-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.llb-wrapper .llb-hover-effects__carousel.llb-dragging * {
	pointer-events: none;
}

/* Effect Demo Card Container */
.llb-wrapper .llb-effect-demo {
	flex: 0 0 280px;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	background: var(--llb-gray-100);
	user-select: none;
}

.llb-wrapper .llb-effect-demo__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 5px 12px;
	border-radius: 6px;
	font-family: var(--llb-font-display);
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	z-index: 20;
}

.llb-wrapper .llb-effect-demo__badge--free {
	background: var(--llb-white);
	color: var(--llb-navy);
	box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.llb-wrapper .llb-effect-demo__badge--pro {
	background: var(--llb-red);
	color: var(--llb-white);
}

.llb-wrapper .llb-effect-demo__label {
	flex-shrink: 0;
	padding: 12px 16px;
	background: var(--llb-navy);
	color: var(--llb-white);
	font-family: var(--llb-font-display);
	font-size: .85rem;
	font-weight: 600;
	text-align: center;
}

/* Portfolio Item Styles from Plugin (scoped to .effect-demo) */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content {
	flex: 1;
	padding: 0;
	min-height: 320px;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-portfolio-item-wrapper {
	float: none;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: transparent;
	box-sizing: border-box;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-portfolio-item-wrapper img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .4s ease-in-out;
	background: #f4f4f4;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-portfolio-item {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-portfolio-item-infos-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .8);
	color: #fff;
	text-align: center;
	z-index: 9;
	transition: all .4s ease-in-out;
	opacity: 0;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-portfolio-item-infos {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	padding: 20px;
	margin-top: -40px;
	z-index: 10;
	opacity: 0;
	transition: all .4s ease-in-out;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-portfolio-item-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 4px;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-portfolio-item-category {
	font-size: 11px;
	font-style: italic;
	display: inline-block;
	opacity: .7;
	line-height: 1;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content .llb-elpt-portfolio-cat {
	display: inline-block;
	padding: 3px;
}

/* ============================================
           HOVER EFFECT: simple
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-simple .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-simple .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover1 - From Bottom
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover1 .llb-portfolio-item-infos-wrapper {
	transform: translateY(40%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover1 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
	transform: translateY(0);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover1 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover2 - From Top
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover2 .llb-portfolio-item-infos-wrapper {
	transform: translateY(-40%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover2 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
	transform: translateY(0);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover2 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover3 - From Right
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover3 .llb-portfolio-item-infos-wrapper {
	transform: translateX(-40%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover3 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
	transform: translateX(0);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover3 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover4 - From Left
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover4 .llb-portfolio-item-infos-wrapper {
	transform: translateX(40%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover4 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
	transform: translateX(0);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover4 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover5 - Diagonal
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover5 .llb-portfolio-item-infos-wrapper {
	transform: translate(30px, -30px);
	visibility: hidden;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover5 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
	visibility: visible;
	transform: translate(0, 0);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover5 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover7 - Text from Left
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover7 .llb-portfolio-item-infos {
	transform: translateX(-60px);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover7 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover7 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
	transform: translateX(0);
}

/* ============================================
           HOVER EFFECT: hover8 - Text from Right
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover8 .llb-portfolio-item-infos {
	transform: translateX(60px);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover8 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover8 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
	transform: translateX(0);
}

/* ============================================
           HOVER EFFECT: hover9 - Text from Top
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover9 .llb-portfolio-item-infos {
	transform: translateY(-60px);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover9 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover9 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
           HOVER EFFECT: hover10 - Text from Bottom
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover10 .llb-portfolio-item-infos {
	transform: translateY(60px);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover10 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover10 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
           HOVER EFFECT: hover11 - Zoom Out
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover11 .llb-portfolio-item {
	transform: scale(1);
	box-shadow: 0px 4px 14px -1px rgba(0, 0, 0, 0);
	transition: all .4s ease-in-out;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover11 .llb-portfolio-item:hover {
	transform: scale(.92);
	box-shadow: 0px 4px 14px -1px rgba(0, 0, 0, .24);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover11 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: .95;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover11 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover12 - Card from Left
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover12 .llb-portfolio-item-infos-wrapper {
	width: 50%;
	background: #111;
	transform: translateX(-100%);
	opacity: .9;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover12 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
	transform: translateX(0);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover12 .llb-portfolio-item:hover img {
	transform: translateX(50px);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover12 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover13 - Card from Right
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover13 .llb-portfolio-item-infos-wrapper {
	width: 50%;
	left: 100%;
	background: rgba(0, 0, 0, .8);
	opacity: .9;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover13 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
	left: 50%;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover13 .llb-portfolio-item:hover img {
	transform: translateX(-20px);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover13 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover14 - Card from Bottom
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover14 .llb-portfolio-item-infos-wrapper {
	top: 100%;
	height: 50%;
	opacity: .9;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover14 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
	top: 50%;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover14 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover14b - Card from Bottom Slim
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover14b .llb-portfolio-item-infos-wrapper {
	top: auto;
	bottom: -70px;
	height: 70px;
	opacity: .9;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover14b .llb-portfolio-item-infos {
	opacity: 1;
	position: relative;
	top: 0 !important;
	margin-top: 0 !important;
	padding: 15px;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover14b .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
	bottom: 0;
}

/* ============================================
           HOVER EFFECT: hover15 - Black and White
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover15 .llb-portfolio-item-infos-wrapper {
	height: 50%;
	top: 50%;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover15 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
	filter: grayscale(100%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover15 .llb-portfolio-item:hover img {
	filter: grayscale(100%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover15 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* ============================================
           HOVER EFFECT: hover16 - Content Visible 1
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover16 .llb-portfolio-item-infos-wrapper {
	background: rgba(0, 0, 0, 0) !important;
	opacity: 1;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover16 .llb-portfolio-item-infos {
	opacity: 1;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover16 .llb-portfolio-item-title-span, .llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover16 .llb-portfolio-item-category {
	display: inline-block;
	padding: 3px 6px;
	background: #000;
}

/* ============================================
           HOVER EFFECT: hover17 - Content Visible 2
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover17 .llb-portfolio-item-infos-wrapper {
	top: auto;
	bottom: 0;
	height: 70px;
	opacity: .9;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover17 .llb-portfolio-item-infos {
	opacity: 1;
	position: relative;
	top: 0 !important;
	margin-top: 0 !important;
	padding: 15px;
}

/* ============================================
           HOVER EFFECT: hover18 - Zoom Out + Fade Info
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover18 .llb-portfolio-item {
	transition: all .4s ease-in-out;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover18 .llb-portfolio-item:hover {
	transform: scale(.92);
	box-shadow: 0px 4px 14px -1px rgba(0, 0, 0, .24);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover18 .llb-portfolio-item-infos-wrapper {
	top: auto;
	bottom: 0;
	height: auto;
	padding: 20px;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover18 .llb-portfolio-item-infos {
	position: relative;
	top: auto !important;
	margin-top: 0 !important;
	transform: translateY(50%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover18 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover18 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
           HOVER EFFECT: hover19 - Zoom In + Info from Right
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover19 .llb-portfolio-item {
	transition: all .4s ease-in-out;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover19 .llb-portfolio-item:hover {
	transform: scale(1.05);
	box-shadow: 0px 4px 14px -1px rgba(0, 0, 0, .24);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover19 .llb-portfolio-item-infos-wrapper {
	left: auto;
	right: 0;
	width: 70%;
	padding: 20px;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover19 .llb-portfolio-item-infos {
	position: relative;
	top: auto !important;
	margin-top: 0 !important;
	transform: translateX(100%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover19 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover19 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
	transform: translateX(0);
}

/* ============================================
           HOVER EFFECT: hover20 - Zoom + Tilt + Grayscale
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover20 .llb-portfolio-item-infos-wrapper {
	transform: rotate(20deg);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover20 .llb-portfolio-item-infos {
	transform: scale(.7);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover20 .llb-portfolio-item:hover img {
	filter: grayscale(100%);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover20 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
	transform: rotate(0) scale(1);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover20 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
	transform: scale(1);
}

/* ============================================
           HOVER EFFECT: hover21 - Border Effect (Scale from center)
           ============================================ */
.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover21 .llb-portfolio-item-infos-wrapper {
	top: 50%;
	left: 50%;
	width: 80%;
	height: 80%;
	transform: translate(-50%, -50%) scale(.5);
	border: 2px solid rgba(255, 255, 255, .8);
	background: rgba(0, 0, 0, .7);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover21 .llb-portfolio-item-infos {
	top: 50%;
	transform: translateY(-50%);
	margin-top: 0;
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover21 .llb-portfolio-item:hover .llb-portfolio-item-infos-wrapper {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.llb-wrapper .llb-effect-demo .llb-elpt-portfolio-content.llb-hover21 .llb-portfolio-item:hover .llb-portfolio-item-infos {
	opacity: 1;
}

/* Carousel Navigation Arrows */
.llb-wrapper .llb-hover-effects__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--llb-white);
	border: 1px solid var(--llb-gray-200);
	box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all .3s ease;
}

.llb-wrapper .llb-hover-effects__nav:hover {
	background: var(--llb-navy);
	border-color: var(--llb-navy);
	color: var(--llb-white);
	box-shadow: 0 6px 20px rgba(11, 28, 42, .25);
}

.llb-wrapper .llb-hover-effects__nav:active {
	transform: translateY(-50%) scale(.95);
}

.llb-wrapper .llb-hover-effects__nav--prev {
	left: -24px;
}

.llb-wrapper .llb-hover-effects__nav--next {
	right: -24px;
}

.llb-wrapper .llb-hover-effects__nav svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.llb-wrapper .llb-hover-effects__nav:disabled {
	opacity: .3;
	cursor: not-allowed;
	pointer-events: none;
}

/* Pagination Dots */
.llb-wrapper .llb-hover-effects__pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin-top: 32px;
}

.llb-wrapper .llb-hover-effects__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--llb-gray-200);
	border: none;
	cursor: pointer;
	transition: all .3s ease;
	padding: 0;
}

.llb-wrapper .llb-hover-effects__dot:hover {
	background: var(--llb-gray-400);
	transform: scale(1.2);
}

.llb-wrapper .llb-hover-effects__dot.llb-active {
	background: var(--llb-red);
	transform: scale(1.2);
}

/* Carousel Navigation Hint */
.llb-wrapper .llb-hover-effects__scroll-hint {
	text-align: center;
	margin-top: 16px;
	font-size: .85rem;
	color: var(--llb-gray-400);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.llb-wrapper .llb-hover-effects__scroll-hint svg {
	width: 20px;
	height: 20px;
	animation: scrollHint 1.5s ease-in-out infinite;
}

@keyframes scrollHint {
	0%, 100% {
		transform: translateX(0);
	}
	
	50% {
		transform: translateX(8px);
	}
}

@media (max-width: 768px) {
	.llb-wrapper .llb-hover-effects__nav {
		display: none;
	}
	
	.llb-wrapper .llb-hover-effects__pagination {
		margin-top: 24px;
	}
	
	.llb-wrapper .llb-hover-effects__dot {
		width: 8px;
		height: 8px;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.llb-wrapper .llb-hover-effects__header {
		flex-direction: column;
		gap: 20px;
	}
	
	.llb-wrapper .llb-hover-effects__filters {
		width: 100%;
	}
	
	.llb-wrapper .llb-hover-effects__filter-btn {
		flex: 1;
		text-align: center;
	}
	
	.llb-wrapper .llb-effect-demo {
		flex: 0 0 260px;
	}
}

/* ============================================
           DEMOS SECTION
           ============================================ */
.llb-wrapper .llb-demos {
	background: var(--llb-navy);
	color: var(--llb-white);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-demos__header {
	text-align: center;
	margin-bottom: 60px;
}

.llb-wrapper .llb-demos__header .llb-subheadline {
	margin: 16px auto 0;
	color: var(--llb-gray-300);
}

.llb-wrapper .llb-demos__carousel {
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-demos__track {
	display: flex;
	gap: 24px;
	transition: transform .5s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-demo-card {
	flex: 0 0 calc(( 100% - 48px ) / 3);
	display: block;
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 16px;
	overflow: hidden;
	transition: all .4s var(--llb-ease-out-expo);
	cursor: pointer;
}

.llb-wrapper .llb-demo-card:hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(216, 42, 80, .4);
	transform: translateY(-8px);
}

.llb-wrapper .llb-demo-card__preview {
	height: 220px;
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-demo-card__preview img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-demo-card:hover .llb-demo-card__preview img {
	transform: scale(1.08);
}

.llb-wrapper .llb-demo-card__info {
	padding: 20px;
}

.llb-wrapper .llb-demo-card__title {
	font-family: var(--llb-font-display);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 6px;
}

.llb-wrapper .llb-demo-card__desc {
	font-size: .85rem;
	color: var(--llb-gray-400);
}

.llb-wrapper .llb-demos__controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 40px;
}

.llb-wrapper .llb-demos__nav-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .15);
	background: rgba(255, 255, 255, .05);
	color: var(--llb-white);
	cursor: pointer;
	transition: all .3s var(--llb-ease-out-expo);
	display: flex;
	align-items: center;
	justify-content: center;
}

.llb-wrapper .llb-demos__nav-btn:hover {
	background: var(--llb-red);
	border-color: var(--llb-red);
}

.llb-wrapper .llb-demos__nav-btn svg {
	width: 20px;
	height: 20px;
}

.llb-wrapper .llb-demos__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.llb-wrapper .llb-demos__dot {
	width: 10px;
	height: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .2);
	border: none;
	cursor: pointer;
	transition: all .3s ease;
	padding: 0;
}

.llb-wrapper .llb-demos__dot.llb-active {
	width: 32px;
	background: var(--llb-red);
}

.llb-wrapper .llb-demos__dot:hover:not(.llb-active) {
	background: rgba(255, 255, 255, .4);
}

@media (max-width: 1024px) {
	.llb-wrapper .llb-demo-card {
		flex: 0 0 calc(( 100% - 24px ) / 2);
	}
}

@media (max-width: 640px) {
	.llb-wrapper .llb-demo-card {
		flex: 0 0 100%;
	}
	
	.llb-wrapper .llb-demo-card__preview {
		height: 180px;
	}
	
	.llb-wrapper .llb-demos__nav-btn {
		width: 40px;
		height: 40px;
	}
}

/* ============================================
           COMPATIBILITY SECTION
           ============================================ */
.llb-wrapper .llb-compatibility {
	background: var(--llb-gray-100);
	position: relative;
}

.llb-wrapper .llb-compatibility__header {
	text-align: center;
	margin-bottom: 60px;
}

.llb-wrapper .llb-compatibility__header .llb-subheadline {
	margin: 16px auto 0;
}

.llb-wrapper .llb-compatibility__main {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}

.llb-wrapper .llb-compat-card {
	background: var(--llb-white);
	border-radius: 16px;
	padding: 32px;
	text-align: center;
	border: 1px solid var(--llb-gray-200);
	transition: all .4s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-compat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(11, 28, 42, .08);
}

.llb-wrapper .llb-compat-card__icon {
	width: 80px;
	height: 80px;
	background: var(--llb-navy);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.llb-wrapper .llb-compat-card__icon svg {
	width: 40px;
	height: 40px;
	color: var(--llb-white);
}

.llb-wrapper .llb-compat-card__title {
	font-family: var(--llb-font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--llb-navy);
}

.llb-wrapper .llb-compat-card__features {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.llb-wrapper .llb-compat-card__features span {
	font-size: .9rem;
	color: var(--llb-gray-500);
}

.llb-wrapper .llb-compatibility__extras {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.llb-wrapper .llb-compat-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: var(--llb-white);
	border: 1px solid var(--llb-gray-200);
	border-radius: 100px;
	font-size: .85rem;
	color: var(--llb-gray-500);
	transition: all .3s ease;
}

.llb-wrapper .llb-compat-badge:hover {
	border-color: var(--llb-red);
	color: var(--llb-red);
}

.llb-wrapper .llb-compat-badge svg {
	width: 16px;
	height: 16px;
	color: var(--llb-red);
}

@media (max-width: 900px) {
	.llb-wrapper .llb-compatibility__main {
		grid-template-columns: 1fr;
	}
}

/* ============================================
           PRICING SECTION
           ============================================ */
.llb-wrapper .llb-pricing {
	background: var(--llb-navy);
	color: var(--llb-white);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-pricing__header {
	text-align: center;
	margin-bottom: 60px;
}

.llb-wrapper .llb-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 40px;
}

.llb-wrapper .llb-pricing-card {
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 20px;
	padding: 32px;
	transition: all .4s var(--llb-ease-out-expo);
	position: relative;
}

.llb-wrapper .llb-pricing-card:hover {
	background: rgba(255, 255, 255, .06);
	transform: translateY(-8px);
}

.llb-wrapper .llb-pricing-card--featured {
	background: linear-gradient(135deg, rgba(216, 42, 80, .2) 0%, rgba(216, 42, 80, .05) 100%);
	border-color: rgba(216, 42, 80, .4);
	transform: scale(1.05);
}

.llb-wrapper .llb-pricing-card--featured:hover {
	transform: scale(1.05) translateY(-8px);
}

.llb-wrapper .llb-pricing-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	padding: 6px 16px;
	background: var(--llb-red);
	color: var(--llb-white);
	font-size: .75rem;
	font-weight: 700;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.llb-wrapper .llb-pricing-card__name {
	font-family: var(--llb-font-display);
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.llb-wrapper .llb-pricing-card__price {
	margin-bottom: 8px;
}

.llb-wrapper .llb-pricing-card__price-value {
	font-family: var(--llb-font-display);
	font-size: 3rem;
	font-weight: 800;
}

.llb-wrapper .llb-pricing-card__price-period {
	font-size: 1rem;
	color: var(--llb-gray-400);
}

.llb-wrapper .llb-pricing-card__license {
	font-size: .9rem;
	color: var(--llb-gray-400);
	margin-bottom: 16px;
}

.llb-wrapper .llb-pricing-card__desc {
	font-size: .95rem;
	color: var(--llb-gray-300);
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.llb-wrapper .llb-pricing-card__features {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.llb-wrapper .llb-pricing-card__feature {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .9rem;
	color: var(--llb-gray-200);
}

.llb-wrapper .llb-pricing-card__feature svg {
	width: 18px;
	height: 18px;
	color: var(--llb-red);
	flex-shrink: 0;
	margin-top: 2px;
}

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

.llb-wrapper .llb-pricing__guarantee {
	text-align: center;
	padding: 20px;
	background: rgba(255, 255, 255, .03);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.llb-wrapper .llb-pricing__guarantee svg {
	width: 24px;
	height: 24px;
	color: #22c55e;
}

.llb-wrapper .llb-pricing__guarantee p {
	font-size: .95rem;
	color: var(--llb-gray-300);
}

/* Comparison Table inside Pricing */
.llb-wrapper .llb-pricing__comparison {
	margin-top: 64px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.llb-wrapper .llb-pricing__comparison-title {
	font-family: var(--llb-font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--llb-white);
	text-align: center;
	margin-bottom: 24px;
}

.llb-wrapper .llb-pricing__comparison-table-wrapper {
	background: rgba(255, 255, 255, .03);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .08);
}

.llb-wrapper .llb-pricing__comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: .85rem;
}

.llb-wrapper .llb-pricing__comparison-table thead {
	background: rgba(255, 255, 255, .05);
}

.llb-wrapper .llb-pricing__comparison-table th {
	padding: 12px 16px;
	text-align: left;
	font-weight: 600;
	color: var(--llb-white);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.llb-wrapper .llb-pricing__comparison-table th:not(:first-child) {
	text-align: center;
	width: 80px;
}

.llb-wrapper .llb-pricing__comparison-table td {
	padding: 10px 16px;
	color: var(--llb-gray-300);
	border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.llb-wrapper .llb-pricing__comparison-table td:not(:first-child) {
	text-align: center;
}

.llb-wrapper .llb-pricing__comparison-table tr:last-child td {
	border-bottom: none;
}

.llb-wrapper .llb-pricing__comparison-table tr.llb-section-header td {
	background: rgba(255, 255, 255, .03);
	font-weight: 600;
	color: var(--llb-white);
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .5px;
	padding: 8px 16px;
}

.llb-wrapper .llb-pricing__comparison-table .llb-check-icon {
	color: #22c55e;
}

.llb-wrapper .llb-pricing__comparison-table .llb-x-icon {
	color: var(--llb-gray-500);
}

@media (max-width: 1024px) {
	.llb-wrapper .llb-pricing__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.llb-wrapper .llb-pricing-card--featured {
		transform: none;
		order: -1;
	}
	
	.llb-wrapper .llb-pricing-card--featured:hover {
		transform: translateY(-8px);
	}
}

/* ============================================
           TESTIMONIALS SECTION
           ============================================ */
.llb-wrapper .llb-testimonials {
	background: var(--llb-navy);
	color: var(--llb-white);
	position: relative;
	overflow: hidden;
}

.llb-wrapper .llb-testimonials__header {
	text-align: center;
	margin-bottom: 56px;
}

.llb-wrapper .llb-testimonials__header .llb-subheadline {
	margin: 16px auto 0;
	color: var(--llb-gray-300);
}

.llb-wrapper .llb-testimonials__wrapper {
	position: relative;
	margin: 0 -24px;
}

.llb-wrapper .llb-testimonials__track {
	display: flex;
	gap: 24px;
	padding: 0 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-snap-type: x mandatory;
}

.llb-wrapper .llb-testimonials__track::-webkit-scrollbar {
	display: none;
}

.llb-wrapper .llb-testimonial-card {
	flex: 0 0 380px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 20px;
	padding: 32px;
	scroll-snap-align: start;
	transition: all .4s var(--llb-ease-out-expo);
	position: relative;
}

.llb-wrapper .llb-testimonial-card::before {
	content: "\"";
	position: absolute;
	top: 20px;
	right: 28px;
	font-family: Georgia, serif;
	font-size: 80px;
	line-height: 1;
	color: var(--llb-red);
	opacity: .15;
	pointer-events: none;
}

.llb-wrapper .llb-testimonial-card:hover {
	background: rgba(255, 255, 255, .06);
	border-color: rgba(216, 42, 80, .3);
	transform: translateY(-4px);
}

.llb-wrapper .llb-testimonial-card__stars {
	display: flex;
	gap: 4px;
	margin-bottom: 20px;
}

.llb-wrapper .llb-testimonial-card__stars svg {
	width: 18px;
	height: 18px;
	fill: #fbbf24;
	color: #fbbf24;
}

.llb-wrapper .llb-testimonial-card__quote {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--llb-gray-300);
	margin-bottom: 28px;
	position: relative;
	z-index: 1;
}

.llb-wrapper .llb-testimonial-card__author {
	display: flex;
	align-items: center;
	gap: 16px;
}

.llb-wrapper .llb-testimonial-card__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--llb-red) 0%, #ff6b8a 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--llb-font-display);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--llb-white);
	text-transform: uppercase;
	flex-shrink: 0;
}

.llb-wrapper .llb-testimonial-card__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.llb-wrapper .llb-testimonial-card__name {
	font-family: var(--llb-font-display);
	font-weight: 700;
	font-size: 1rem;
	color: var(--llb-white);
}

.llb-wrapper .llb-testimonial-card__role {
	font-size: .85rem;
	color: var(--llb-gray-400);
}

.llb-wrapper .llb-testimonials__nav {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.llb-wrapper .llb-testimonials__nav-btn {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .15);
	background: rgba(255, 255, 255, .05);
	color: var(--llb-white);
	cursor: pointer;
	transition: all .3s var(--llb-ease-out-expo);
	display: flex;
	align-items: center;
	justify-content: center;
}

.llb-wrapper .llb-testimonials__nav-btn:hover {
	background: var(--llb-red);
	border-color: var(--llb-red);
	transform: scale(1.08);
}

.llb-wrapper .llb-testimonials__nav-btn:active {
	transform: scale(.95);
}

.llb-wrapper .llb-testimonials__nav-btn svg {
	width: 22px;
	height: 22px;
}

.llb-wrapper .llb-testimonials__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 32px;
}

.llb-wrapper .llb-testimonials__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .2);
	border: none;
	cursor: pointer;
	transition: all .3s ease;
	padding: 0;
}

.llb-wrapper .llb-testimonials__dot.llb-active {
	background: var(--llb-red);
	transform: scale(1.2);
}

.llb-wrapper .llb-testimonials__dot:hover:not(.llb-active) {
	background: rgba(255, 255, 255, .4);
}

@media (max-width: 768px) {
	.llb-wrapper .llb-testimonial-card {
		flex: 0 0 320px;
		padding: 24px;
	}
	
	.llb-wrapper .llb-testimonial-card__quote {
		font-size: .95rem;
	}
	
	.llb-wrapper .llb-testimonials__nav-btn {
		width: 44px;
		height: 44px;
	}
}

@media (max-width: 480px) {
	.llb-wrapper .llb-testimonial-card {
		flex: 0 0 calc(100vw - 64px);
	}
}

/* ============================================
           FAQ SECTION
           ============================================ */
.llb-wrapper .llb-faq {
	background: var(--llb-gray-100);
	position: relative;
}

.llb-wrapper .llb-faq__header {
	text-align: center;
	margin-bottom: 60px;
}

.llb-wrapper .llb-faq__grid {
	max-width: 800px;
	margin: 0 auto;
}

.llb-wrapper .llb-faq-item {
	background: var(--llb-white);
	border: 1px solid var(--llb-gray-200);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all .3s ease;
}

.llb-wrapper .llb-faq-item:hover {
	border-color: var(--llb-gray-300);
}

.llb-wrapper .llb-faq-item__question {
	width: 100%;
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-family: var(--llb-font-display);
	font-size: 1rem;
	font-weight: 600;
	color: var(--llb-navy);
	text-align: left;
	cursor: pointer;
	transition: all .3s ease;
}

.llb-wrapper .llb-faq-item__question:hover {
	color: var(--llb-red);
}

.llb-wrapper .llb-faq-item__icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: transform .3s ease;
}

.llb-wrapper .llb-faq-item.llb-active .llb-faq-item__icon {
	transform: rotate(45deg);
}

.llb-wrapper .llb-faq-item__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s var(--llb-ease-out-expo);
}

.llb-wrapper .llb-faq-item.llb-active .llb-faq-item__answer {
	max-height: 300px;
}

.llb-wrapper .llb-faq-item__answer-content {
	padding: 0 24px 20px;
	font-size: .95rem;
	color: var(--llb-gray-500);
	line-height: 1.7;
}

/* ============================================
           FINAL CTA SECTION
           ============================================ */
.llb-wrapper .llb-final-cta {
	background: linear-gradient(135deg, var(--llb-navy) 0%, var(--llb-navy-light) 100%);
	color: var(--llb-white);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.llb-wrapper .llb-final-cta__content {
	position: relative;
	z-index: 1;
}

.llb-wrapper .llb-final-cta h2 {
	color: inherit;
	margin-bottom: 16px;
}

.llb-wrapper .llb-final-cta .llb-subheadline {
	margin: 0 auto 40px;
	color: var(--llb-gray-300);
}

.llb-wrapper .llb-final-cta__buttons {
	display: flex;
	gap: 16px;
	justify-content: center;
	margin-bottom: 40px;
}

.llb-wrapper .llb-final-cta__trust {
	display: flex;
	gap: 32px;
	justify-content: center;
	flex-wrap: wrap;
}

.llb-wrapper .llb-final-cta__trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .9rem;
	color: var(--llb-gray-400);
}

.llb-wrapper .llb-final-cta__trust-item svg {
	width: 18px;
	height: 18px;
	color: var(--llb-red);
}

@media (max-width: 640px) {
	.llb-wrapper .llb-final-cta__buttons {
		flex-direction: column;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
}

/* ============================================
           FOOTER
           ============================================ */
.llb-wrapper .llb-footer {
	background: var(--llb-navy);
	color: var(--llb-white);
	padding: 80px 0 40px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.llb-wrapper .llb-footer__grid {
	display: grid;
	grid-template-columns: 2fr repeat(4, 1fr);
	gap: 48px;
	margin-bottom: 60px;
}

.llb-wrapper .llb-footer__brand {
	max-width: 280px;
}

.llb-wrapper .llb-footer__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--llb-font-display);
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 16px;
}

.llb-wrapper .llb-footer__logo-icon {
	display: flex;
	align-items: center;
}

.llb-wrapper .llb-footer__logo-icon img {
	height: 36px;
	width: auto;
}

.llb-wrapper .llb-footer__brand p {
	font-size: .9rem;
	color: var(--llb-gray-400);
	line-height: 1.6;
}

.llb-wrapper .llb-footer__column h4 {
	font-family: var(--llb-font-display);
	font-size: .9rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	margin-bottom: 20px;
	color: var(--llb-white);
}

.llb-wrapper .llb-footer__links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.llb-wrapper .llb-footer__link {
	font-size: .9rem;
	color: var(--llb-gray-400);
	transition: color .3s ease;
}

.llb-wrapper .llb-footer__link:hover {
	color: var(--llb-red);
}

.llb-wrapper .llb-footer__bottom {
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.llb-wrapper .llb-footer__copy {
	font-size: .85rem;
	color: var(--llb-gray-500);
}

.llb-wrapper .llb-footer__copy a {
	color: var(--llb-red);
}

.llb-wrapper .llb-footer__copy a:hover {
	text-decoration: underline;
}

@media (max-width: 1024px) {
	.llb-wrapper .llb-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.llb-wrapper .llb-footer__brand {
		grid-column: span 2;
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.llb-wrapper .llb-footer__grid {
		grid-template-columns: 1fr;
	}
	
	.llb-wrapper .llb-footer__brand {
		grid-column: span 1;
	}
	
	.llb-wrapper .llb-footer__bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   WIDGET: Fix fixed-position headers without background

   Headers with position:fixed are often designed to be transparent and overlay
   a hero section. When used as standalone widgets, they need a default background.
   ========================================================================== */
.llb-wrapper > header[class*="header"],
.llb-wrapper > [class*="header"]:first-child {
    background: var(--llb-navy, #0B1C2A);
}

/* When scrolled, the header already has its own background - this ensures the
   default doesn't override it */
.llb-wrapper > header[class*="scrolled"],
.llb-wrapper > [class*="header"][class*="scrolled"] {
    background: rgba(11, 28, 42, .95);
}


