/* =============================================================
   LocalBacklinks Agency — Main Stylesheet
   Sky Blue (#0EA5E9) + Yellow (#FACC15) + White
   ============================================================= */

/* === CSS Variables === */
:root {
	--lb-primary: #0EA5E9;
	--lb-primary-dark: #0284C7;
	--lb-primary-darker: #075985;
	--lb-primary-light: #E0F2FE;
	--lb-primary-lighter: #F0F9FF;
	--lb-accent: #FACC15;
	--lb-accent-dark: #EAB308;
	--lb-accent-light: #FEF9C3;
	--lb-whatsapp: #25D366;
	--lb-whatsapp-dark: #128C7E;
	--lb-bg: #FFFFFF;
	--lb-bg-soft: #F8FAFC;
	--lb-bg-muted: #F1F5F9;
	--lb-text: #0F172A;
	--lb-text-soft: #334155;
	--lb-text-muted: #64748B;
	--lb-border: #E2E8F0;
	--lb-border-soft: #F1F5F9;
	--lb-casino-bg: #0A1628;
	--lb-casino-bg-light: #1E293B;
	--lb-shadow-sm: 0 1px 2px rgba(15,23,42,.06);
	--lb-shadow: 0 4px 12px rgba(15,23,42,.08);
	--lb-shadow-lg: 0 12px 32px rgba(14,165,233,.12);
	--lb-shadow-xl: 0 24px 60px rgba(14,165,233,.18);
	--lb-radius-sm: 8px;
	--lb-radius: 12px;
	--lb-radius-lg: 16px;
	--lb-radius-xl: 24px;
	--lb-font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--lb-font-display: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
	--lb-transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	font-family: var(--lb-font);
	font-size: 16px;
	line-height: 1.6;
	color: var(--lb-text);
	background: var(--lb-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--lb-primary); text-decoration: none; transition: color var(--lb-transition); }
a:hover { color: var(--lb-primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--lb-font-display); font-weight: 800; line-height: 1.2; color: var(--lb-text); }
ul, ol { list-style: none; }

/* === Skip Link === */
.lb-skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--lb-primary); color: #fff; padding: 12px 20px; z-index: 9999;
}
.lb-skip-link:focus { left: 12px; top: 12px; }

/* === Container === */
.lb-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; width: 100%; }
.lb-container--narrow { max-width: 880px; }

/* === Text Helpers === */
.lb-text-accent { color: var(--lb-primary); position: relative; }
.lb-text-accent::after {
	content: ''; position: absolute; left: 0; bottom: 4px; right: 0; height: 8px;
	background: var(--lb-accent); opacity: .35; z-index: -1; border-radius: 2px;
}

/* === Buttons === */
.lb-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 12px 22px;
	border-radius: var(--lb-radius);
	font-weight: 700; font-size: 15px; font-family: var(--lb-font);
	text-decoration: none; cursor: pointer;
	transition: all var(--lb-transition);
	white-space: nowrap; line-height: 1;
	border: 2px solid transparent;
}
.lb-btn--sm { padding: 8px 14px; font-size: 13px; }
.lb-btn--lg { padding: 16px 28px; font-size: 16px; }
.lb-btn--xl { padding: 20px 36px; font-size: 18px; }
.lb-btn--full { width: 100%; }

.lb-btn--primary {
	background: var(--lb-primary); color: #fff;
	box-shadow: 0 4px 12px rgba(14,165,233,.3);
}
.lb-btn--primary:hover { background: var(--lb-primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(14,165,233,.4); }

.lb-btn--whatsapp {
	background: var(--lb-whatsapp); color: #fff;
	box-shadow: 0 4px 12px rgba(37,211,102,.3);
}
.lb-btn--whatsapp:hover { background: var(--lb-whatsapp-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,.4); }

.lb-btn--outline {
	background: transparent; color: var(--lb-text);
	border: 2px solid var(--lb-border);
}
.lb-btn--outline:hover { background: var(--lb-primary); color: #fff; border-color: var(--lb-primary); }

.lb-btn--accent {
	background: var(--lb-accent); color: var(--lb-text);
	box-shadow: 0 4px 12px rgba(250,204,21,.3);
}
.lb-btn--accent:hover { background: var(--lb-accent-dark); transform: translateY(-2px); }

/* === Header === */
.lb-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--lb-border-soft); }

.lb-topbar { background: linear-gradient(90deg, var(--lb-primary) 0%, var(--lb-primary-darker) 100%); color: #fff; font-size: 13px; }
.lb-topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; flex-wrap: wrap; gap: 12px; }
.lb-topbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lb-topbar-pill { background: rgba(255,255,255,.15); padding: 3px 10px; border-radius: 100px; font-weight: 600; }
.lb-topbar-dot { opacity: .5; }
.lb-topbar-text { font-weight: 500; }
.lb-topbar-wa { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-weight: 600; }
.lb-topbar-wa:hover { color: var(--lb-accent); }

.lb-navbar { background: #fff; }
.lb-navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }

.lb-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.lb-logo-icon { display: inline-flex; }
.lb-logo-text { display: flex; flex-direction: column; line-height: 1; }
.lb-logo-main { font-family: var(--lb-font-display); font-weight: 800; font-size: 18px; color: var(--lb-text); }
.lb-logo-accent { color: var(--lb-primary); }
.lb-logo-sub { font-size: 11px; color: var(--lb-text-muted); font-weight: 600; margin-top: 2px; }

.lb-nav { display: flex; align-items: center; }
.lb-menu { display: flex; list-style: none; gap: 4px; align-items: center; }
.lb-menu a {
	display: inline-block; padding: 10px 16px; color: var(--lb-text-soft);
	font-weight: 600; font-size: 15px; border-radius: var(--lb-radius-sm);
	transition: all var(--lb-transition);
}
.lb-menu a:hover, .lb-menu .current-menu-item > a { background: var(--lb-primary-lighter); color: var(--lb-primary); }

.lb-cta-btn--header {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 10px 18px; background: var(--lb-whatsapp); color: #fff;
	border-radius: var(--lb-radius); font-weight: 700; font-size: 14px;
	box-shadow: 0 4px 12px rgba(37,211,102,.3); transition: all var(--lb-transition);
}
.lb-cta-btn--header:hover { background: var(--lb-whatsapp-dark); color: #fff; transform: translateY(-2px); }

.lb-menu-toggle {
	display: none; width: 40px; height: 40px;
	flex-direction: column; justify-content: center; gap: 5px;
	padding: 0; background: transparent;
}
.lb-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--lb-text); border-radius: 2px; transition: all var(--lb-transition); }
.lb-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lb-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lb-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Hero === */
.lb-hero { position: relative; padding: 64px 0 80px; overflow: hidden; background: var(--lb-bg-soft); }
.lb-hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.lb-hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .4; }
.lb-hero-blob-1 { top: -100px; left: -100px; width: 500px; height: 500px; background: var(--lb-primary); }
.lb-hero-blob-2 { bottom: -150px; right: -100px; width: 500px; height: 500px; background: var(--lb-accent); }
.lb-hero-grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(rgba(14,165,233,.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(14,165,233,.07) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 70%);
}

.lb-hero-slider { position: relative; z-index: 2; }
.lb-hero-slides { position: relative; }
.lb-hero-slide { display: none; }
.lb-hero-slide.is-active { display: block; animation: lbFadeIn .5s ease; }
@keyframes lbFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.lb-hero-grid-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }

.lb-hero-pill {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 6px 14px; background: #fff; border: 1px solid var(--lb-border);
	border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--lb-text-soft);
	margin-bottom: 24px; box-shadow: var(--lb-shadow-sm);
}
.lb-hero-pill--casino { background: var(--lb-casino-bg); color: var(--lb-accent); border-color: var(--lb-casino-bg-light); }
.lb-pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lb-whatsapp); animation: lbPulse 2s infinite; }
@keyframes lbPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 8px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

.lb-hero-title {
	font-family: var(--lb-font-display);
	font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800;
	letter-spacing: -.02em; line-height: 1.05;
	margin-bottom: 20px;
}
.lb-hero-title-accent { color: var(--lb-primary); display: inline-block; position: relative; }
.lb-hero-title-accent::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 6px; height: 14px;
	background: var(--lb-accent); opacity: .35; z-index: -1; border-radius: 4px;
}

.lb-hero-desc { font-size: 18px; color: var(--lb-text-soft); margin-bottom: 32px; max-width: 580px; }
.lb-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.lb-hero-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 540px; }
.lb-trust-item { display: flex; flex-direction: column; }
.lb-trust-item strong { font-family: var(--lb-font-display); font-size: 22px; color: var(--lb-primary); font-weight: 800; }
.lb-trust-item span { font-size: 13px; color: var(--lb-text-muted); }

/* Hero visual */
.lb-hero-visual { position: relative; height: 440px; }
.lb-hero-card {
	position: absolute; display: flex; align-items: center; gap: 12px;
	padding: 16px 18px; background: #fff; border: 1px solid var(--lb-border);
	border-radius: var(--lb-radius-lg); box-shadow: var(--lb-shadow-lg);
	min-width: 260px;
}
.lb-hero-card-1 { top: 20px; left: 20px; animation: lbFloat 6s ease-in-out infinite; }
.lb-hero-card-2 { top: 50%; left: 50%; transform: translate(-50%, -50%); animation: lbFloat 7s ease-in-out infinite reverse; z-index: 2; }
.lb-hero-card-3 { bottom: 20px; right: 0; animation: lbFloat 8s ease-in-out infinite; }
@keyframes lbFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.lb-hero-card-2 { transform: translate(-50%, -50%); }
.lb-hero-card-2 { animation: lbFloat2 7s ease-in-out infinite; }
@keyframes lbFloat2 { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 12px)); } }

.lb-hero-card-flag { font-size: 32px; }
.lb-hero-card-info { flex: 1; }
.lb-hero-card-info strong { display: block; font-weight: 700; font-size: 14px; color: var(--lb-text); }
.lb-hero-card-info span { font-size: 12px; color: var(--lb-text-muted); }
.lb-hero-card-price { background: var(--lb-primary-lighter); color: var(--lb-primary); padding: 6px 10px; border-radius: 8px; font-weight: 700; font-size: 13px; }
.lb-hero-card-price--hot { background: var(--lb-accent); color: var(--lb-text); }

/* Casino slide visual */
.lb-hero-visual--casino { display: flex; align-items: center; justify-content: center; }
.lb-casino-stack { display: flex; flex-direction: column; gap: 12px; }
.lb-casino-tag {
	background: linear-gradient(135deg, var(--lb-casino-bg) 0%, var(--lb-casino-bg-light) 100%);
	color: var(--lb-accent); padding: 14px 22px; border-radius: var(--lb-radius);
	font-weight: 700; font-size: 16px; box-shadow: var(--lb-shadow-lg);
	border: 1px solid rgba(250,204,21,.2);
}

/* Pricing preview card */
.lb-pricing-preview { background: #fff; border: 2px solid var(--lb-primary); border-radius: var(--lb-radius-xl); padding: 32px; box-shadow: var(--lb-shadow-lg); max-width: 380px; margin: 0 auto; }
.lb-pricing-preview-head { text-align: center; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px dashed var(--lb-border); }
.lb-pricing-preview-label { display: inline-block; background: var(--lb-accent); color: var(--lb-text); padding: 4px 12px; border-radius: 100px; font-weight: 700; font-size: 11px; letter-spacing: .05em; margin-bottom: 12px; }
.lb-pricing-preview-price { display: flex; align-items: baseline; justify-content: center; gap: 4px; font-family: var(--lb-font-display); }
.lb-currency { font-size: 28px; color: var(--lb-text-muted); font-weight: 700; }
.lb-amount { font-size: 72px; font-weight: 800; color: var(--lb-primary); line-height: 1; }
.lb-pricing-preview-unit { display: block; color: var(--lb-text-muted); font-size: 14px; margin-top: 6px; }
.lb-pricing-preview-list { list-style: none; padding: 0; }
.lb-pricing-preview-list li { padding: 8px 0; font-size: 14px; color: var(--lb-text-soft); }

/* Hero dots */
.lb-hero-dots { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.lb-hero-dot { width: 36px; height: 4px; background: var(--lb-border); border-radius: 2px; transition: all var(--lb-transition); }
.lb-hero-dot.is-active { background: var(--lb-primary); width: 64px; }

/* === Stats === */
.lb-stats { padding: 40px 0; background: var(--lb-text); color: #fff; }
.lb-stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.lb-stat-card { text-align: center; padding: 16px; border-right: 1px solid rgba(255,255,255,.1); }
.lb-stat-card:last-child { border-right: none; }
.lb-stat-num { font-family: var(--lb-font-display); font-size: 36px; font-weight: 800; color: var(--lb-accent); line-height: 1; margin-bottom: 8px; }
.lb-stat-num sup { font-size: 18px; }
.lb-stat-label { font-size: 13px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }

/* === Sections === */
.lb-section { padding: 80px 0; }
.lb-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.lb-section-tag {
	display: inline-block; padding: 6px 14px;
	background: var(--lb-primary-lighter); color: var(--lb-primary);
	border-radius: 100px; font-size: 13px; font-weight: 700;
	letter-spacing: .03em; margin-bottom: 16px; text-transform: uppercase;
}
.lb-section-title {
	font-family: var(--lb-font-display);
	font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
	line-height: 1.15; margin-bottom: 16px; letter-spacing: -.02em;
}
.lb-section-desc { font-size: 17px; color: var(--lb-text-soft); }
.lb-section-cta { text-align: center; margin-top: 40px; }

/* === Countries Grid === */
.lb-countries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.lb-country-card {
	display: block; padding: 24px; background: #fff;
	border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg);
	text-decoration: none; transition: all var(--lb-transition);
	position: relative; overflow: hidden;
}
.lb-country-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
	background: var(--lb-primary); opacity: 0; transition: opacity var(--lb-transition);
}
.lb-country-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); border-color: var(--lb-primary); }
.lb-country-card:hover::before { opacity: 1; }

.lb-country-card--featured { background: linear-gradient(135deg, #fff 0%, var(--lb-primary-lighter) 100%); }
.lb-country-card--casino { border-color: var(--lb-accent); }
.lb-country-card--casino::before { background: var(--lb-accent); }

.lb-country-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.lb-country-flag { font-size: 36px; line-height: 1; }
.lb-country-badge { background: var(--lb-primary); color: #fff; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.lb-country-badge--casino { background: var(--lb-accent); color: var(--lb-text); }

.lb-country-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; color: var(--lb-text); }
.lb-country-tld { display: inline-block; background: var(--lb-bg-muted); color: var(--lb-text-soft); padding: 3px 10px; border-radius: 6px; font-family: 'Courier New', monospace; font-weight: 700; font-size: 13px; margin-bottom: 16px; }

.lb-country-meta { display: flex; gap: 20px; margin-bottom: 16px; padding-top: 16px; border-top: 1px dashed var(--lb-border); }
.lb-country-meta-item { display: flex; flex-direction: column; }
.lb-meta-num { font-weight: 800; font-size: 18px; color: var(--lb-text); font-family: var(--lb-font-display); }
.lb-meta-label { font-size: 12px; color: var(--lb-text-muted); }

.lb-country-link {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--lb-primary); font-weight: 700; font-size: 14px;
}
.lb-country-card:hover .lb-country-link { gap: 10px; }

/* === Casino Section === */
.lb-casino-section { padding: 80px 0; background: var(--lb-casino-bg); color: #fff; position: relative; overflow: hidden; }
.lb-casino-bg { position: absolute; inset: 0; pointer-events: none; }
.lb-casino-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(250,204,21,.15), transparent 70%); }
.lb-casino-pattern {
	position: absolute; inset: 0;
	background-image: radial-gradient(rgba(250,204,21,.05) 1px, transparent 1px);
	background-size: 30px 30px;
}
.lb-casino-section .lb-container { position: relative; z-index: 2; }
.lb-casino-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.lb-casino-tag-label {
	display: inline-block; padding: 6px 14px;
	background: rgba(250,204,21,.15); color: var(--lb-accent);
	border-radius: 100px; font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.lb-casino-title { font-family: var(--lb-font-display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; color: #fff; margin-bottom: 16px; }
.lb-casino-title-accent { color: var(--lb-accent); }
.lb-casino-desc { font-size: 17px; color: rgba(255,255,255,.75); }

.lb-casino-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.lb-casino-card {
	display: block; padding: 28px; background: var(--lb-casino-bg-light);
	border: 1px solid rgba(250,204,21,.15); border-radius: var(--lb-radius-lg);
	color: #fff; text-decoration: none; transition: all var(--lb-transition);
	position: relative; overflow: hidden;
}
.lb-casino-card::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--lb-accent), transparent);
	opacity: 0; transition: opacity var(--lb-transition);
}
.lb-casino-card:hover { transform: translateY(-4px); border-color: var(--lb-accent); color: #fff; box-shadow: 0 12px 40px rgba(250,204,21,.15); }
.lb-casino-card:hover::before { opacity: 1; }
.lb-casino-card--country { background: linear-gradient(135deg, var(--lb-casino-bg-light) 0%, rgba(14,165,233,.15) 100%); }
.lb-casino-card--cta { background: linear-gradient(135deg, var(--lb-accent) 0%, var(--lb-accent-dark) 100%); color: var(--lb-text); border-color: var(--lb-accent); }
.lb-casino-card--cta h3, .lb-casino-card--cta .lb-casino-card-meta, .lb-casino-card--cta .lb-casino-card-list li, .lb-casino-card--cta .lb-casino-card-cta { color: var(--lb-text); }
.lb-casino-card-icon { font-size: 40px; margin-bottom: 16px; }
.lb-casino-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lb-casino-card-meta { color: var(--lb-accent); font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.lb-casino-card-list { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 16px; }
.lb-casino-card-list li { padding: 4px 0; color: rgba(255,255,255,.7); font-size: 14px; }
.lb-casino-card-cta { color: var(--lb-accent); font-weight: 700; font-size: 14px; }

/* === Why Us === */
.lb-why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.lb-why-card { padding: 32px; background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); transition: all var(--lb-transition); }
.lb-why-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); border-color: var(--lb-primary); }
.lb-why-icon { width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center; background: var(--lb-primary-lighter); color: var(--lb-primary); border-radius: var(--lb-radius); margin-bottom: 20px; font-size: 28px; }
.lb-why-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.lb-why-card p { color: var(--lb-text-soft); font-size: 15px; }

/* === Pricing === */
.lb-pricing { background: var(--lb-bg-soft); }
.lb-pricing-card-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; max-width: 1100px; margin: 0 auto; align-items: start; }

.lb-pricing-card {
	background: #fff; border: 2px solid var(--lb-primary);
	border-radius: var(--lb-radius-xl); padding: 40px;
	box-shadow: var(--lb-shadow-xl); position: relative;
}
.lb-pricing-card-head { text-align: center; padding-bottom: 28px; border-bottom: 1px dashed var(--lb-border); margin-bottom: 28px; }
.lb-pricing-badge { display: inline-block; background: var(--lb-accent); color: var(--lb-text); padding: 6px 14px; border-radius: 100px; font-weight: 800; font-size: 11px; letter-spacing: .08em; margin-bottom: 16px; }
.lb-pricing-card h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.lb-pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; font-family: var(--lb-font-display); margin-bottom: 12px; }
.lb-pricing-currency { font-size: 32px; color: var(--lb-text-muted); font-weight: 700; }
.lb-pricing-num { font-size: 96px; font-weight: 800; color: var(--lb-primary); line-height: 1; }
.lb-pricing-unit { font-size: 18px; color: var(--lb-text-muted); font-weight: 600; }
.lb-pricing-tagline { color: var(--lb-text-soft); font-size: 15px; }
.lb-pricing-features { list-style: none; padding: 0; margin-bottom: 32px; }
.lb-pricing-features li { padding: 10px 0; border-bottom: 1px solid var(--lb-border-soft); color: var(--lb-text-soft); }
.lb-pricing-features li:last-child { border-bottom: none; }

.lb-pricing-side { display: flex; flex-direction: column; gap: 20px; }
.lb-pricing-bulk, .lb-payment-methods { background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 24px; }
.lb-pricing-bulk h4, .lb-payment-methods h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--lb-border); }
.lb-pricing-tier { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--lb-border-soft); }
.lb-pricing-tier:last-child { border-bottom: none; }
.lb-pricing-tier--featured { background: var(--lb-accent-light); margin: 8px -10px; padding: 14px 10px; border-radius: 8px; border-bottom: none; }
.lb-tier-qty { font-weight: 600; color: var(--lb-text); font-size: 14px; }
.lb-tier-tag { display: inline-block; background: var(--lb-primary); color: #fff; padding: 2px 6px; border-radius: 4px; font-size: 10px; font-weight: 700; margin-left: 4px; }
.lb-tier-price { font-weight: 800; color: var(--lb-primary); font-size: 16px; }

.lb-payment-list { display: flex; flex-direction: column; gap: 8px; }
.lb-payment-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: var(--lb-bg-soft); border-radius: 8px; }
.lb-payment-name { font-weight: 700; }
.lb-payment-meta { font-size: 12px; color: var(--lb-text-muted); }

/* === How It Works === */
.lb-how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.lb-how-card { padding: 32px; background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); position: relative; }
.lb-how-num { font-family: var(--lb-font-display); font-size: 48px; font-weight: 800; color: var(--lb-primary); line-height: 1; margin-bottom: 16px; opacity: .8; }
.lb-how-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.lb-how-card p { color: var(--lb-text-soft); font-size: 14px; }

/* === Testimonials === */
.lb-testimonials { background: var(--lb-bg-soft); }
.lb-testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.lb-testimonial { padding: 28px; background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); }
.lb-testimonial-stars { color: var(--lb-accent); font-size: 18px; margin-bottom: 12px; letter-spacing: 3px; }
.lb-testimonial p { color: var(--lb-text); font-size: 15px; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.lb-testimonial-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--lb-border-soft); }
.lb-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 14px; }
.lb-av-1 { background: linear-gradient(135deg, #0EA5E9, #0284C7); }
.lb-av-2 { background: linear-gradient(135deg, #FACC15, #EAB308); color: var(--lb-text); }
.lb-av-3 { background: linear-gradient(135deg, #25D366, #128C7E); }
.lb-av-4 { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.lb-av-5 { background: linear-gradient(135deg, #EF4444, #B91C1C); }
.lb-av-6 { background: linear-gradient(135deg, #06B6D4, #0E7490); }
.lb-testimonial-author strong { display: block; font-size: 14px; font-weight: 700; }
.lb-testimonial-author span { font-size: 12px; color: var(--lb-text-muted); }

/* === FAQ === */
.lb-faq-list { max-width: 880px; margin: 0 auto; }
.lb-faq-item {
	background: #fff; border: 1px solid var(--lb-border);
	border-radius: var(--lb-radius); margin-bottom: 12px;
	overflow: hidden; transition: all var(--lb-transition);
}
.lb-faq-item[open] { border-color: var(--lb-primary); box-shadow: var(--lb-shadow); }
.lb-faq-item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 20px 24px; cursor: pointer; font-weight: 700; font-size: 16px;
	list-style: none; color: var(--lb-text);
}
.lb-faq-item summary::-webkit-details-marker { display: none; }
.lb-faq-icon { transition: transform var(--lb-transition); color: var(--lb-primary); flex-shrink: 0; }
.lb-faq-item[open] .lb-faq-icon { transform: rotate(180deg); }
.lb-faq-answer { padding: 0 24px 20px; color: var(--lb-text-soft); line-height: 1.7; }
.lb-faq-cta { text-align: center; margin-top: 48px; padding: 32px; background: #fff; border-radius: var(--lb-radius-lg); border: 1px solid var(--lb-border); }
.lb-faq-cta h3 { font-size: 22px; margin-bottom: 8px; }
.lb-faq-cta p { color: var(--lb-text-soft); margin-bottom: 20px; }

/* === Country Hero === */
.lb-country-hero { padding: 48px 0 64px; background: var(--lb-bg-soft); position: relative; overflow: hidden; }
.lb-country-hero--casino { background: var(--lb-casino-bg); color: #fff; }
.lb-country-hero--casino .lb-country-hero-title, .lb-country-hero--casino .lb-cstat strong { color: #fff; }
.lb-country-hero--casino .lb-country-hero-desc, .lb-country-hero--casino .lb-cstat span, .lb-country-hero--casino .lb-breadcrumbs { color: rgba(255,255,255,.7); }
.lb-country-hero--casino .lb-breadcrumbs a { color: var(--lb-accent); }

.lb-breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--lb-text-muted); margin-bottom: 24px; flex-wrap: wrap; }
.lb-breadcrumbs a { color: var(--lb-primary); font-weight: 600; }

.lb-country-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
.lb-country-hero-flag { font-size: 64px; display: block; margin-bottom: 16px; }
.lb-country-hero-title {
	font-family: var(--lb-font-display); font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -.02em;
}
.lb-country-hero-tld {
	display: inline-block; background: var(--lb-accent); color: var(--lb-text);
	padding: 4px 12px; border-radius: 10px; font-family: 'Courier New', monospace;
	font-size: 24px; vertical-align: middle; margin: 0 4px;
}
.lb-country-hero-desc { font-size: 17px; color: var(--lb-text-soft); margin-bottom: 28px; max-width: 580px; }
.lb-country-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.lb-cstat { display: flex; flex-direction: column; }
.lb-cstat strong { font-family: var(--lb-font-display); font-size: 22px; color: var(--lb-primary); font-weight: 800; }
.lb-cstat span { font-size: 12px; color: var(--lb-text-muted); }
.lb-country-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* === Domain Table === */
.lb-table-filter { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.lb-filter-input, .lb-filter-select {
	padding: 12px 16px; border: 1px solid var(--lb-border);
	border-radius: var(--lb-radius); background: #fff; font-size: 14px;
	transition: border-color var(--lb-transition);
}
.lb-filter-input { flex: 1; min-width: 240px; }
.lb-filter-input:focus, .lb-filter-select:focus { outline: none; border-color: var(--lb-primary); }
.lb-filter-count { font-size: 13px; color: var(--lb-text-muted); margin-left: auto; }
.lb-filter-count span { color: var(--lb-primary); font-weight: 700; }

.lb-domain-table-wrap { background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); overflow: auto; box-shadow: var(--lb-shadow-sm); }
.lb-domain-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.lb-domain-table thead { background: var(--lb-bg-soft); position: sticky; top: 0; z-index: 1; }
.lb-domain-table th { padding: 14px 16px; text-align: left; font-weight: 700; font-size: 13px; color: var(--lb-text-soft); text-transform: uppercase; letter-spacing: .03em; border-bottom: 1px solid var(--lb-border); }
.lb-domain-table td { padding: 14px 16px; border-bottom: 1px solid var(--lb-border-soft); font-size: 14px; }
.lb-domain-table tr:last-child td { border-bottom: none; }
.lb-domain-table tr:hover { background: var(--lb-primary-lighter); }
.lb-domain-blur { font-family: 'Courier New', monospace; font-weight: 700; color: var(--lb-text); letter-spacing: .03em; filter: blur(.5px); }
.lb-domain-lock { margin-left: 6px; opacity: .6; }
.lb-tld-badge { background: var(--lb-bg-muted); color: var(--lb-text-soft); padding: 3px 8px; border-radius: 6px; font-family: 'Courier New', monospace; font-size: 11px; font-weight: 700; }
.lb-dr-badge { display: inline-block; padding: 3px 10px; border-radius: 6px; font-weight: 800; font-size: 13px; }
.lb-dr-high { background: var(--lb-whatsapp); color: #fff; }
.lb-dr-mid { background: var(--lb-primary); color: #fff; }
.lb-dr-low { background: var(--lb-bg-muted); color: var(--lb-text-soft); }
.lb-domain-niche { color: var(--lb-text-soft); font-size: 13px; max-width: 280px; }

.lb-table-cta { margin-top: 32px; background: var(--lb-primary-lighter); border: 1px solid var(--lb-primary); border-radius: var(--lb-radius-lg); padding: 32px; }
.lb-table-cta-inner { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.lb-table-cta h3 { font-size: 22px; margin-bottom: 8px; }
.lb-table-cta p { color: var(--lb-text-soft); }

/* === Footer === */
.lb-footer { background: var(--lb-text); color: rgba(255,255,255,.85); }
.lb-footer-cta { padding: 60px 0 0; }
.lb-footer-cta-card {
	background: linear-gradient(135deg, var(--lb-primary) 0%, var(--lb-primary-darker) 100%);
	color: #fff; padding: 48px; border-radius: var(--lb-radius-xl);
	display: flex; gap: 32px; align-items: center; justify-content: space-between;
	flex-wrap: wrap; box-shadow: var(--lb-shadow-xl); margin-bottom: 60px;
}
.lb-footer-cta-text h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 8px; }
.lb-footer-cta-text p { color: rgba(255,255,255,.85); }

.lb-footer-main { padding: 40px 0 60px; border-top: 1px solid rgba(255,255,255,.08); }
.lb-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.lb-footer-brand-col { max-width: 360px; }
.lb-footer .lb-logo-main, .lb-footer .lb-logo-sub { color: #fff; }
.lb-footer-tagline { color: rgba(255,255,255,.7); font-size: 14px; margin: 16px 0 24px; line-height: 1.6; }
.lb-footer-payment-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 10px; font-weight: 700; }
.lb-payment-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.lb-pay-badge { display: inline-block; padding: 6px 14px; border-radius: 8px; font-weight: 700; font-size: 12px; }
.lb-pay-binance { background: #F0B90B; color: #000; }
.lb-pay-payoneer { background: #FF4F17; color: #fff; }
.lb-pay-fiverr { background: #1DBF73; color: #fff; }

.lb-footer-title { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px; }
.lb-footer-list { list-style: none; }
.lb-footer-list li { padding: 4px 0; }
.lb-footer-list a { color: rgba(255,255,255,.7); font-size: 14px; transition: color var(--lb-transition); display: inline-flex; align-items: center; gap: 8px; }
.lb-footer-list a:hover { color: var(--lb-accent); }
.lb-footer-meta { color: rgba(255,255,255,.6); font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }

.lb-footer-bottom { padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); }
.lb-footer-bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.5); }

/* === Floating WhatsApp === */
.lb-whatsapp-float {
	position: fixed; bottom: 24px; right: 24px; z-index: 99;
	width: 60px; height: 60px; border-radius: 50%; background: var(--lb-whatsapp);
	color: #fff; display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: all var(--lb-transition);
}
.lb-whatsapp-float:hover { transform: scale(1.1); color: #fff; box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.lb-whatsapp-float-pulse {
	position: absolute; inset: -4px; border-radius: 50%; border: 3px solid var(--lb-whatsapp);
	animation: lbFloatPulse 2s infinite; pointer-events: none;
}
@keyframes lbFloatPulse {
	0% { transform: scale(.9); opacity: 1; }
	100% { transform: scale(1.3); opacity: 0; }
}
.lb-whatsapp-float-tip {
	position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
	background: var(--lb-text); color: #fff; padding: 8px 14px; border-radius: 8px;
	font-size: 13px; font-weight: 600; white-space: nowrap;
	opacity: 0; transition: opacity var(--lb-transition); pointer-events: none;
}
.lb-whatsapp-float:hover .lb-whatsapp-float-tip { opacity: 1; }
.lb-whatsapp-float-tip::after { content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); border-left: 6px solid var(--lb-text); border-top: 6px solid transparent; border-bottom: 6px solid transparent; }

/* === Page Heroes (FAQ, Pricing, Contact, Countries) === */
.lb-page-hero { padding: 56px 0 48px; background: var(--lb-bg-soft); position: relative; overflow: hidden; text-align: center; }
.lb-page-title-xl { font-family: var(--lb-font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 16px; position: relative; z-index: 2; }
.lb-page-desc { font-size: 18px; color: var(--lb-text-soft); max-width: 640px; margin: 0 auto; position: relative; z-index: 2; }
.lb-page-hero .lb-breadcrumbs { justify-content: center; position: relative; z-index: 2; }

/* === Casino Hero (dedicated) === */
.lb-casino-hero { padding: 80px 0; background: var(--lb-casino-bg); color: #fff; position: relative; overflow: hidden; text-align: center; }
.lb-casino-hero-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.lb-casino-hero-title { font-family: var(--lb-font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; line-height: 1.05; color: #fff; margin-bottom: 20px; letter-spacing: -.02em; }
.lb-casino-hero-accent { color: var(--lb-accent); display: block; }
.lb-casino-hero-desc { font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 32px; }
.lb-casino-hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 600px; margin: 0 auto 32px; }
.lb-casino-hero-stats .lb-cstat strong { color: var(--lb-accent); }
.lb-casino-hero-stats .lb-cstat span { color: rgba(255,255,255,.7); }
.lb-casino-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Contact Page === */
.lb-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px; }
.lb-contact-options { display: flex; flex-direction: column; gap: 16px; }
.lb-contact-card { display: flex; gap: 16px; align-items: center; padding: 20px; background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); text-decoration: none; color: var(--lb-text); transition: all var(--lb-transition); }
.lb-contact-card:hover { border-color: var(--lb-primary); transform: translateY(-2px); color: var(--lb-text); }
.lb-contact-card--whatsapp { background: linear-gradient(135deg, var(--lb-whatsapp), var(--lb-whatsapp-dark)); color: #fff; border-color: var(--lb-whatsapp); }
.lb-contact-card--whatsapp:hover { color: #fff; }
.lb-contact-icon { width: 56px; height: 56px; border-radius: var(--lb-radius); display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.15); flex-shrink: 0; }
.lb-contact-card:not(.lb-contact-card--whatsapp) .lb-contact-icon { background: var(--lb-primary-lighter); }
.lb-contact-card h3 { font-size: 18px; margin-bottom: 2px; }
.lb-contact-card p { font-weight: 600; font-size: 15px; }
.lb-contact-meta { font-size: 12px; opacity: .8; }

.lb-contact-form-wrap { background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 32px; }
.lb-contact-form-wrap h3 { font-size: 22px; margin-bottom: 4px; }
.lb-contact-form-wrap > p { color: var(--lb-text-muted); margin-bottom: 24px; }
.lb-contact-form { display: flex; flex-direction: column; gap: 16px; }
.lb-form-row label { display: flex; flex-direction: column; gap: 6px; font-weight: 600; font-size: 14px; color: var(--lb-text-soft); }
.lb-form-row input, .lb-form-row textarea {
	padding: 12px 16px; border: 1px solid var(--lb-border);
	border-radius: var(--lb-radius); background: #fff; font-size: 15px;
	transition: border-color var(--lb-transition); color: var(--lb-text);
}
.lb-form-row input:focus, .lb-form-row textarea:focus { outline: none; border-color: var(--lb-primary); }
.lb-form-row textarea { resize: vertical; font-family: inherit; }
.lb-form-note { font-size: 12px; color: var(--lb-text-muted); text-align: center; margin-top: 8px; }

/* === 404 === */
.lb-404 { text-align: center; padding: 120px 0; }
.lb-404-num { font-family: var(--lb-font-display); font-size: 180px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, var(--lb-primary), var(--lb-accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; }
.lb-404 h1 { font-size: 36px; margin-bottom: 12px; }
.lb-404 p { font-size: 17px; color: var(--lb-text-soft); margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.lb-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* === Blog / Single === */
.lb-page-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.lb-page-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
.lb-posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.lb-post-card { background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); overflow: hidden; transition: all var(--lb-transition); }
.lb-post-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); }
.lb-post-thumb img { width: 100%; height: 200px; object-fit: cover; }
.lb-post-body { padding: 24px; }
.lb-post-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.lb-post-title a { color: var(--lb-text); }
.lb-post-title a:hover { color: var(--lb-primary); }
.lb-post-meta { font-size: 12px; color: var(--lb-text-muted); margin-bottom: 12px; }
.lb-post-excerpt { color: var(--lb-text-soft); font-size: 15px; margin-bottom: 16px; }

.lb-single-post { padding-top: 24px; }
.lb-single-head { text-align: center; margin-bottom: 32px; }
.lb-single-meta { font-size: 13px; color: var(--lb-text-muted); margin-bottom: 12px; }
.lb-single-title { font-size: clamp(2rem, 4vw, 2.6rem); }
.lb-single-thumb { margin-bottom: 32px; border-radius: var(--lb-radius-lg); overflow: hidden; }
.lb-single-content { font-size: 17px; line-height: 1.8; }
.lb-single-content h2, .lb-single-content h3 { margin: 32px 0 16px; }
.lb-single-content p { margin-bottom: 16px; }
.lb-single-content a { text-decoration: underline; }
.lb-single-content blockquote { border-left: 4px solid var(--lb-primary); padding: 16px 24px; margin: 24px 0; background: var(--lb-bg-soft); border-radius: 0 var(--lb-radius) var(--lb-radius) 0; font-style: italic; color: var(--lb-text-soft); }
.lb-single-content code { background: var(--lb-bg-muted); padding: 2px 6px; border-radius: 4px; font-size: .9em; }
.lb-single-content img { border-radius: var(--lb-radius); margin: 16px 0; }
.lb-single-tags { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--lb-border); font-size: 13px; color: var(--lb-text-muted); }
.lb-single-tags a { display: inline-block; padding: 4px 10px; background: var(--lb-primary-lighter); color: var(--lb-primary); border-radius: 6px; font-weight: 600; margin: 0 4px 4px 0; text-decoration: none; }

.lb-pagination { margin-top: 48px; text-align: center; }
.lb-pagination .page-numbers { display: inline-block; padding: 8px 14px; margin: 0 2px; border: 1px solid var(--lb-border); border-radius: 8px; color: var(--lb-text-soft); font-weight: 600; }
.lb-pagination .current { background: var(--lb-primary); color: #fff; border-color: var(--lb-primary); }

.lb-no-results { text-align: center; padding: 80px 0; }
.lb-no-results h2 { font-size: 28px; margin-bottom: 12px; }
.lb-no-results p { color: var(--lb-text-soft); margin-bottom: 24px; }

/* === Responsive === */
@media (max-width: 1024px) {
	.lb-hero-grid-layout { grid-template-columns: 1fr; gap: 32px; }
	.lb-hero-visual { height: 380px; }
	.lb-country-hero-grid { grid-template-columns: 1fr; gap: 32px; }
	.lb-pricing-card-wrap { grid-template-columns: 1fr; }
	.lb-contact-grid { grid-template-columns: 1fr; }
	.lb-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.lb-stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 16px; }
	.lb-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.lb-footer-brand-col { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 768px) {
	.lb-section { padding: 56px 0; }
	.lb-container { padding: 0 16px; }

	.lb-menu-toggle { display: flex; align-items: center; }
	.lb-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; border-top: 1px solid var(--lb-border);
		box-shadow: var(--lb-shadow-lg);
		max-height: 0; overflow: hidden; transition: max-height .3s ease;
	}
	.lb-nav.is-open { max-height: 600px; padding: 16px 24px; }
	.lb-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.lb-menu a { padding: 12px 0; border-bottom: 1px solid var(--lb-border-soft); border-radius: 0; }
	.lb-cta-btn--header span { display: none; }
	.lb-cta-btn--header { padding: 10px 14px; }
	.lb-navbar-inner { position: relative; }
	.lb-topbar-inner { font-size: 11px; padding: 6px 16px; }
	.lb-topbar-pill, .lb-topbar-dot { display: none; }

	.lb-hero { padding: 40px 0 56px; }
	.lb-hero-visual { height: 320px; }
	.lb-hero-trust { grid-template-columns: repeat(2, 1fr); }
	.lb-hero-card { min-width: 220px; padding: 12px 14px; }

	.lb-stats-grid { grid-template-columns: 1fr; }
	.lb-stat-num { font-size: 28px; }

	.lb-section-title, .lb-casino-title, .lb-country-hero-title { font-size: 1.8rem; }

	.lb-countries-grid, .lb-casino-cards, .lb-why-grid, .lb-how-grid, .lb-testimonials-grid { grid-template-columns: 1fr; }

	.lb-country-hero-stats { grid-template-columns: repeat(2, 1fr); }

	.lb-pricing-num { font-size: 64px; }
	.lb-pricing-card { padding: 28px 20px; }

	.lb-footer-cta-card { padding: 28px; }
	.lb-footer-grid { grid-template-columns: 1fr; gap: 24px; }
	.lb-footer-brand-col { max-width: 100%; }

	.lb-domain-table-wrap { font-size: 13px; }
	.lb-domain-table { min-width: 600px; }
	.lb-table-cta-inner { flex-direction: column; align-items: stretch; text-align: center; }

	.lb-whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
	.lb-whatsapp-float svg { width: 24px; height: 24px; }
	.lb-whatsapp-float-tip { display: none; }
}

@media (max-width: 480px) {
	.lb-hero-title { font-size: 1.8rem; }
	.lb-hero-actions { flex-direction: column; }
	.lb-hero-actions .lb-btn { width: 100%; }
	.lb-casino-hero-stats { grid-template-columns: repeat(2, 1fr); }
	.lb-country-hero-actions { flex-direction: column; }
	.lb-country-hero-actions .lb-btn { width: 100%; }
}

/* === Sticky Header Scrolled State === */
.lb-header.is-scrolled { box-shadow: 0 4px 20px rgba(15,23,42,.08); }
.lb-header.is-scrolled .lb-topbar { padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; }

/* === Mobile-First Refinements === */
@media (max-width: 768px) {
	/* Mobile-friendly domain table: convert to cards on tiny screens */
	.lb-domain-table thead { display: none; }
	.lb-domain-table, .lb-domain-table tbody, .lb-domain-table tr, .lb-domain-table td { display: block; width: 100%; min-width: 0; }
	.lb-domain-table { min-width: 0; }
	.lb-domain-table tr {
		background: #fff; border: 1px solid var(--lb-border); border-radius: var(--lb-radius);
		padding: 14px; margin-bottom: 12px;
		display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
	}
	.lb-domain-table tr:hover { background: #fff; }
	.lb-domain-table td { padding: 4px 0; border: none; font-size: 13px; }
	.lb-domain-table td:nth-child(1) { display: none; }
	.lb-domain-table td:nth-child(2) { grid-column: 1 / -1; padding-bottom: 8px; border-bottom: 1px dashed var(--lb-border); font-size: 16px; }
	.lb-domain-table td:nth-child(3)::before { content: 'TLD: '; color: var(--lb-text-muted); font-size: 11px; }
	.lb-domain-table td:nth-child(4)::before { content: 'DR: '; color: var(--lb-text-muted); font-size: 11px; margin-right: 4px; }
	.lb-domain-table td:nth-child(5)::before { content: 'DA: '; color: var(--lb-text-muted); font-size: 11px; }
	.lb-domain-table td:nth-child(6) { grid-column: 1 / -1; padding: 8px 0; border-top: 1px dashed var(--lb-border); }
	.lb-domain-table td:nth-child(6)::before { content: 'Niche: '; color: var(--lb-text-muted); font-size: 11px; display: block; margin-bottom: 4px; }
	.lb-domain-table td:nth-child(7) { font-size: 16px; }
	.lb-domain-table td:nth-child(7)::before { content: 'Price: '; color: var(--lb-text-muted); font-size: 11px; font-weight: 400; }
	.lb-domain-table td:nth-child(8) { grid-column: 1 / -1; padding-top: 8px; }
	.lb-domain-table td:nth-child(8) .lb-btn { width: 100%; }

	.lb-filter-input { width: 100%; min-width: 0; }
	.lb-filter-select { flex: 1; min-width: 140px; }
	.lb-filter-count { margin-left: 0; width: 100%; text-align: center; padding-top: 4px; }

	/* Casino dedicated hero stats */
	.lb-casino-hero { padding: 56px 0; }
	.lb-country-hero { padding: 32px 0 48px; }
	.lb-country-hero-flag { font-size: 48px; }
	.lb-country-hero-tld { font-size: 18px; }

	/* Tighter section heads */
	.lb-section-head { margin-bottom: 36px; }
	.lb-section-desc, .lb-page-desc { font-size: 15px; }

	/* Pricing card spacing */
	.lb-pricing-features li { padding: 8px 0; font-size: 14px; }
	.lb-pricing-currency { font-size: 24px; }
	.lb-pricing-unit { font-size: 15px; }

	/* Hero card layout — smaller */
	.lb-hero-card-flag { font-size: 28px; }
	.lb-hero-card-info strong { font-size: 13px; }
	.lb-hero-card-info span { font-size: 11px; }

	/* Pricing preview adjust */
	.lb-pricing-preview { padding: 24px; }
	.lb-amount { font-size: 56px; }

	/* Footer CTA */
	.lb-footer-cta-card { padding: 28px 20px; text-align: center; flex-direction: column; }
	.lb-footer-cta-card .lb-btn { width: 100%; }
	.lb-footer-cta-text h2 { font-size: 1.4rem; }

	/* Trust items on mobile */
	.lb-trust-item strong { font-size: 18px; }
	.lb-trust-item span { font-size: 11px; }

	/* Header */
	.lb-navbar-inner { padding: 12px 16px; gap: 12px; }
	.lb-logo-main { font-size: 16px; }
	.lb-logo-sub { font-size: 10px; }
	.lb-logo-icon svg { width: 32px; height: 32px; }
	.lb-cta-btn--header { display: none; }

	/* Country card tweaks */
	.lb-country-card { padding: 20px; }
	.lb-country-flag { font-size: 32px; }
	.lb-country-name { font-size: 18px; }

	/* Casino cards */
	.lb-casino-card { padding: 22px; }

	/* Page hero */
	.lb-page-hero { padding: 40px 0 32px; }

	/* Form inputs comfy on touch */
	.lb-form-row input, .lb-form-row textarea, .lb-filter-input, .lb-filter-select { font-size: 16px; /* prevents iOS zoom */ }

	/* Contact card stacking */
	.lb-contact-form-wrap { padding: 24px 20px; }

	/* 404 */
	.lb-404 { padding: 80px 0; }
	.lb-404-num { font-size: 120px; }
	.lb-404 h1 { font-size: 28px; }

	/* Hero pill smaller */
	.lb-hero-pill { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 480px) {
	.lb-section { padding: 44px 0; }
	.lb-hero { padding: 32px 0 44px; }
	.lb-hero-title { font-size: 1.7rem; }
	.lb-section-title { font-size: 1.5rem; }
	.lb-casino-title, .lb-casino-hero-title, .lb-country-hero-title, .lb-page-title-xl { font-size: 1.6rem; }
	.lb-pricing-num { font-size: 56px; }

	.lb-topbar-text { display: none; }
	.lb-topbar-pill { display: inline-block; font-size: 10px; }
	.lb-topbar-wa { font-size: 11px; }

	.lb-hero-visual { height: 280px; }
	.lb-hero-card { min-width: 200px; padding: 10px 12px; }
	.lb-casino-tag { font-size: 13px; padding: 10px 16px; }

	.lb-stat-num { font-size: 24px; }
	.lb-section-tag { font-size: 11px; padding: 4px 10px; }

	.lb-hero-trust { gap: 12px; }
	.lb-country-hero-stats { gap: 12px; }

	.lb-btn--lg { padding: 14px 22px; font-size: 14px; }
	.lb-btn--xl { padding: 16px 24px; font-size: 15px; }

	/* Smaller floating WA */
	.lb-whatsapp-float { width: 48px; height: 48px; bottom: 14px; right: 14px; }
	.lb-whatsapp-float svg { width: 22px; height: 22px; }
}

/* Tiny screens (small Android phones) */
@media (max-width: 360px) {
	.lb-container { padding: 0 14px; }
	.lb-hero-title { font-size: 1.5rem; }
	.lb-section-title { font-size: 1.3rem; }
	.lb-domain-table tr { grid-template-columns: 1fr; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
	.lb-hero-card-1, .lb-hero-card-2, .lb-hero-card-3 { animation: none !important; }
}

/* Touch-friendly tap targets */
@media (hover: none) and (pointer: coarse) {
	.lb-btn { min-height: 44px; }
	.lb-menu a { min-height: 44px; }
	.lb-faq-item summary { min-height: 60px; }
}

/* ============================================================
   v2.0.0 AGENCY COMPONENTS
   ============================================================ */

/* --- Shared helpers --- */
.lb-bg-soft { background: var(--lb-bg-soft); }
.lb-section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }
.lb-section-sub { color: var(--lb-text-muted); font-size: 1.05rem; line-height: 1.6; margin-top: 12px; }
.lb-section-tag--light { background: rgba(255,255,255,.15); color: #fff; }
.lb-empty { text-align: center; color: var(--lb-text-muted); padding: 48px 0; font-size: 1.05rem; }

/* Buttons that may be missing */
.lb-btn--outline { background: transparent; color: var(--lb-primary); border: 2px solid var(--lb-primary); }

/* --- Prose (article/page body) --- */
.lb-prose { color: var(--lb-text-soft); font-size: 1.06rem; line-height: 1.75; }
.lb-prose > * + * { margin-top: 1.1em; }
.lb-prose h2 { font-family: var(--lb-font-display); font-size: 1.6rem; color: var(--lb-text); margin-top: 1.6em; line-height: 1.25; }
.lb-prose h3 { font-family: var(--lb-font-display); font-size: 1.25rem; color: var(--lb-text); margin-top: 1.4em; }
.lb-prose p { margin: 0 0 1em; }
.lb-prose a { color: var(--lb-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.lb-prose ul, .lb-prose ol { margin: 0 0 1em 1.25em; }
.lb-prose li { margin: .4em 0; }
.lb-prose img { max-width: 100%; height: auto; border-radius: var(--lb-radius); }
.lb-prose blockquote { border-left: 4px solid var(--lb-primary); padding: 4px 18px; color: var(--lb-text-muted); font-style: italic; background: var(--lb-bg-soft); border-radius: 0 var(--lb-radius-sm) var(--lb-radius-sm) 0; }
.lb-prose code { background: var(--lb-bg-muted); padding: 2px 6px; border-radius: 6px; font-size: .9em; }

/* --- Stats bar (About) --- */
.lb-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: var(--lb-text); border-radius: var(--lb-radius-lg); padding: 32px 20px; box-shadow: var(--lb-shadow-lg); }
.lb-stats-bar .lb-stat { text-align: center; padding: 8px; }
.lb-stats-bar .lb-stat-num { display: block; font-family: var(--lb-font-display); font-size: 2.2rem; font-weight: 800; color: var(--lb-accent); line-height: 1; }
.lb-stats-bar .lb-stat-label { display: block; margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }

/* --- Feature cards (Why choose us) --- */
.lb-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lb-feature-card { background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 24px; box-shadow: var(--lb-shadow-sm); transition: var(--lb-transition); }
.lb-feature-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); border-color: var(--lb-primary-light); }
.lb-feature-card h3 { font-family: var(--lb-font-display); font-size: 1.15rem; margin: 0 0 8px; color: var(--lb-text); }
.lb-feature-card p { margin: 0; color: var(--lb-text-muted); line-height: 1.6; }

/* --- Services grid + cards --- */
.lb-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lb-service-card { display: flex; flex-direction: column; background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 28px; box-shadow: var(--lb-shadow-sm); transition: var(--lb-transition); }
.lb-service-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); border-color: var(--lb-primary-light); }
.lb-service-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: var(--lb-radius); background: var(--lb-primary-lighter); color: var(--lb-primary); margin-bottom: 16px; }
.lb-service-icon svg { width: 26px; height: 26px; }
.lb-service-name { font-family: var(--lb-font-display); font-size: 1.2rem; margin: 0 0 8px; color: var(--lb-text); }
.lb-service-name a { color: inherit; text-decoration: none; }
.lb-service-name a:hover { color: var(--lb-primary); }
.lb-service-desc { color: var(--lb-text-muted); line-height: 1.6; margin: 0 0 18px; flex: 1; }
.lb-service-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--lb-border-soft); }
.lb-service-price { font-weight: 700; color: var(--lb-text); font-size: .95rem; }
.lb-service-price span { color: var(--lb-text-muted); font-weight: 500; font-size: .85rem; }
.lb-service-arrow { display: inline-flex; align-items: center; gap: 6px; color: var(--lb-primary); font-weight: 700; text-decoration: none; font-size: .95rem; }
.lb-service-arrow:hover { gap: 10px; }

/* Service single */
.lb-service-hero { padding: 56px 0 40px; background: var(--lb-bg-soft); position: relative; overflow: hidden; }
.lb-service-hero-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: var(--lb-radius); background: var(--lb-primary); color: #fff; margin-bottom: 18px; }
.lb-service-hero-icon svg { width: 32px; height: 32px; }
.lb-service-hero h1 { font-family: var(--lb-font-display); font-size: 2.4rem; line-height: 1.15; margin: 0 0 12px; color: var(--lb-text); }
.lb-service-hero-short, .lb-service-hero-sub { font-size: 1.15rem; color: var(--lb-text-muted); max-width: 640px; line-height: 1.6; }
.lb-service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.lb-service-hero-price { margin-top: 18px; font-weight: 700; color: var(--lb-text); }
.lb-service-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.lb-service-main { min-width: 0; }
.lb-service-aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; }
.lb-service-benefits { background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 24px; box-shadow: var(--lb-shadow-sm); }
.lb-service-benefits h3 { font-family: var(--lb-font-display); font-size: 1.15rem; margin: 0 0 16px; }
.lb-service-benefits ul { list-style: none; margin: 0; padding: 0; }
.lb-service-benefits li { position: relative; display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; color: var(--lb-text-soft); line-height: 1.5; }
.lb-service-benefits li svg { flex-shrink: 0; margin-top: 2px; color: var(--lb-primary); }

/* --- Team grid + cards --- */
.lb-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lb-team-grid--leaders { grid-template-columns: repeat(auto-fit, minmax(240px, 280px)); justify-content: center; }
.lb-team-card { background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); overflow: hidden; box-shadow: var(--lb-shadow-sm); transition: var(--lb-transition); text-align: center; }
.lb-team-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); }
.lb-team-photo { position: relative; aspect-ratio: 1 / 1; background: var(--lb-primary-lighter); display: grid; place-items: center; overflow: hidden; }
.lb-team-photo img { width: 100%; height: 100%; object-fit: cover; }
.lb-team-initials { font-family: var(--lb-font-display); font-size: 3rem; font-weight: 800; color: var(--lb-primary); }
.lb-team-body { padding: 20px; }
.lb-team-name { font-family: var(--lb-font-display); font-size: 1.15rem; margin: 0 0 4px; color: var(--lb-text); }
.lb-team-role { font-size: .9rem; font-weight: 600; color: var(--lb-primary); margin: 0 0 10px; }
.lb-team-bio { font-size: .9rem; color: var(--lb-text-muted); line-height: 1.55; margin: 0 0 14px; }
.lb-team-socials { display: flex; justify-content: center; gap: 10px; }
.lb-team-socials a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--lb-bg-muted); color: var(--lb-text-soft); transition: var(--lb-transition); }
.lb-team-socials a:hover { background: var(--lb-primary); color: #fff; }

/* --- Reviews / testimonials --- */
.lb-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lb-review-card { background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 24px; box-shadow: var(--lb-shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.lb-review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.lb-stars { display: inline-flex; gap: 2px; }
.lb-star { width: 18px; height: 18px; color: var(--lb-border); }
.lb-star.is-on { color: var(--lb-accent); }
.lb-review-verified { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 700; color: var(--lb-whatsapp); }
.lb-review-verified svg { width: 15px; height: 15px; }
.lb-review-text { color: var(--lb-text-soft); line-height: 1.65; margin: 0; flex: 1; }
.lb-review-author { display: flex; align-items: center; gap: 12px; }
.lb-review-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: var(--lb-primary-lighter); display: grid; place-items: center; font-weight: 800; color: var(--lb-primary); flex-shrink: 0; }
.lb-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lb-review-meta { min-width: 0; line-height: 1.3; }
.lb-review-meta strong { display: block; font-weight: 700; color: var(--lb-text); font-size: .95rem; }
.lb-review-meta > span { font-size: .82rem; color: var(--lb-text-muted); }
.lb-review-name { font-weight: 700; color: var(--lb-text); font-size: .95rem; }
.lb-review-flag { margin-left: 4px; }
.lb-review-role { font-size: .82rem; color: var(--lb-text-muted); }
.lb-reviews-agg { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.lb-reviews-agg-score { font-family: var(--lb-font-display); font-size: 1.8rem; font-weight: 800; color: var(--lb-text); }
.lb-reviews-agg-text { color: var(--lb-text-muted); font-size: .95rem; }

/* Video review */
.lb-review-card--video { padding: 0; overflow: hidden; }
.lb-review-video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.lb-review-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lb-review-card--video .lb-review-body { padding: 20px; }
.lb-review-video-meta { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px; }
.lb-review-video-meta strong { font-weight: 700; color: var(--lb-text); font-size: .95rem; }

/* Auto-scroll marquee carousel */
.lb-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.lb-marquee-track { display: flex; gap: 24px; width: max-content; animation: lb-marquee-scroll 48s linear infinite; }
.lb-marquee-track .lb-review-card { width: 360px; flex-shrink: 0; }
.lb-marquee:hover .lb-marquee-track { animation-play-state: paused; }
@keyframes lb-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Case studies --- */
.lb-cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lb-cs-card { display: flex; flex-direction: column; background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); overflow: hidden; box-shadow: var(--lb-shadow-sm); transition: var(--lb-transition); }
.lb-cs-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); }
.lb-cs-thumb { aspect-ratio: 16 / 9; background: var(--lb-bg-muted); overflow: hidden; }
.lb-cs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-cs-chart { padding: 16px 16px 0; }
.lb-cs-thumb-chart { padding: 16px 16px 0; width: 100%; }
.lb-cs-thumb-chart svg { width: 100%; height: auto; display: block; }
.lb-spark { width: 100%; height: auto; display: block; }
.lb-cs-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.lb-cs-client { font-size: .8rem; font-weight: 700; color: var(--lb-primary); text-transform: uppercase; letter-spacing: .04em; }
.lb-cs-title { font-family: var(--lb-font-display); font-size: 1.2rem; margin: 0; color: var(--lb-text); }
.lb-cs-title a { color: inherit; text-decoration: none; }
.lb-cs-title a:hover { color: var(--lb-primary); }
.lb-cs-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--lb-border-soft); }
.lb-cs-metric { text-align: center; }
.lb-cs-metric strong, .lb-cs-metric-value { display: block; font-family: var(--lb-font-display); font-weight: 800; font-size: 1.15rem; color: var(--lb-text); }
.lb-cs-metric span, .lb-cs-metric-label { display: block; font-size: .72rem; color: var(--lb-text-muted); text-transform: uppercase; letter-spacing: .03em; margin-top: 2px; }
.lb-cs-link { display: inline-flex; align-items: center; gap: 6px; color: var(--lb-primary); font-weight: 700; text-decoration: none; font-size: .92rem; }
.lb-cs-link:hover { gap: 10px; }

/* Case study single */
.lb-cs-hero { padding: 56px 0 40px; background: var(--lb-text); color: #fff; }
.lb-cs-hero .lb-breadcrumbs, .lb-cs-hero .lb-breadcrumbs span { color: rgba(255,255,255,.65); }
.lb-cs-hero .lb-breadcrumbs a { color: var(--lb-accent); }
.lb-cs-hero-client { font-size: .85rem; font-weight: 700; color: var(--lb-accent); text-transform: uppercase; letter-spacing: .05em; }
.lb-cs-hero h1 { font-family: var(--lb-font-display); font-size: 2.4rem; line-height: 1.15; margin: 10px 0 24px; }
.lb-cs-hero-metrics { display: flex; flex-wrap: wrap; gap: 32px; }
.lb-cs-metric--lg .lb-cs-metric-value { font-size: 2rem; color: var(--lb-accent); }
.lb-cs-metric--lg .lb-cs-metric-label { color: rgba(255,255,255,.7); }
.lb-cs-hero-metrics .lb-cs-metric { text-align: left; }
.lb-cs-hero-metrics .lb-cs-metric strong { display: block; font-family: var(--lb-font-display); font-weight: 800; font-size: 2rem; color: var(--lb-accent); line-height: 1; }
.lb-cs-hero-metrics .lb-cs-metric span { display: block; margin-top: 4px; font-size: .8rem; text-transform: uppercase; letter-spacing: .03em; color: rgba(255,255,255,.7); }
.lb-cs-chart-block { background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 28px; box-shadow: var(--lb-shadow-sm); }
.lb-cs-chart-block h2 { font-family: var(--lb-font-display); font-size: 1.3rem; margin: 0 0 18px; }
.lb-cs-beforeafter { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lb-cs-beforeafter figure { margin: 0; }
.lb-cs-beforeafter figcaption { font-weight: 700; margin-bottom: 10px; color: var(--lb-text); }
.lb-cs-beforeafter img { width: 100%; border-radius: var(--lb-radius); border: 1px solid var(--lb-border); }
.lb-cs-pdf { display: inline-flex; align-items: center; gap: 10px; }

/* --- Blog / archive --- */
.lb-archive-hero { padding: 48px 0 36px; background: var(--lb-bg-soft); text-align: center; }
.lb-archive-title { font-family: var(--lb-font-display); font-size: 2.2rem; margin: 12px 0; color: var(--lb-text); }
.lb-archive-sub { color: var(--lb-text-muted); font-size: 1.05rem; max-width: 620px; margin: 0 auto 20px; }
.lb-archive-search { max-width: 480px; margin: 0 auto; }
.lb-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.lb-post-card { display: flex; flex-direction: column; background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); overflow: hidden; box-shadow: var(--lb-shadow-sm); transition: var(--lb-transition); }
.lb-post-card:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); }
.lb-post-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--lb-bg-muted); }
.lb-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-post-thumb-fallback { width: 100%; height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--lb-primary-lighter), var(--lb-primary-light)); color: var(--lb-primary); font-family: var(--lb-font-display); font-weight: 800; font-size: 1.4rem; }
.lb-post-body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lb-post-cat { font-size: .76rem; font-weight: 700; color: var(--lb-primary); text-transform: uppercase; letter-spacing: .04em; }
.lb-post-title { font-family: var(--lb-font-display); font-size: 1.2rem; line-height: 1.3; margin: 0; }
.lb-post-title a { color: var(--lb-text); text-decoration: none; }
.lb-post-title a:hover { color: var(--lb-primary); }
.lb-post-excerpt { color: var(--lb-text-muted); line-height: 1.6; font-size: .95rem; margin: 0; flex: 1; }
.lb-post-meta { font-size: .82rem; color: var(--lb-text-muted); display: flex; gap: 10px; flex-wrap: wrap; padding-top: 10px; border-top: 1px solid var(--lb-border-soft); }

/* --- Single post --- */
.lb-single-head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.lb-single-cat { font-size: .8rem; font-weight: 700; color: var(--lb-primary); text-transform: uppercase; letter-spacing: .05em; }
.lb-single-title { font-family: var(--lb-font-display); font-size: 2.4rem; line-height: 1.18; margin: 14px 0; color: var(--lb-text); }
.lb-single-meta { font-size: .9rem; color: var(--lb-text-muted); display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.lb-single-thumb { margin: 0 auto 36px; max-width: 920px; }
.lb-single-thumb img { width: 100%; border-radius: var(--lb-radius-lg); }
.lb-tags-label { font-weight: 700; margin-right: 8px; }
.lb-author-box { display: flex; gap: 18px; align-items: flex-start; background: var(--lb-bg-soft); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 24px; margin-top: 40px; }
.lb-author-avatar img, .lb-author-avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; }
.lb-author-info h3 { margin: 0 0 6px; font-family: var(--lb-font-display); }
.lb-author-info p { margin: 0; color: var(--lb-text-muted); line-height: 1.6; }
.lb-related { margin-top: 56px; }
.lb-related-title { font-family: var(--lb-font-display); font-size: 1.5rem; margin: 0 0 24px; text-align: center; }

/* --- Search --- */
.lb-searchform { position: relative; display: flex; align-items: center; }
.lb-search-icon { position: absolute; left: 14px; color: var(--lb-text-muted); pointer-events: none; }
.lb-search-input { width: 100%; padding: 13px 110px 13px 42px; border: 1px solid var(--lb-border); border-radius: 999px; font: inherit; background: var(--lb-bg); }
.lb-search-input:focus { outline: none; border-color: var(--lb-primary); box-shadow: 0 0 0 3px var(--lb-primary-light); }
.lb-search-btn { position: absolute; right: 5px; padding: 9px 20px; border: none; border-radius: 999px; background: var(--lb-primary); color: #fff; font-weight: 700; cursor: pointer; }
.lb-search-btn:hover { background: var(--lb-primary-dark); }
.lb-search-results { display: flex; flex-direction: column; gap: 16px; }
.lb-search-item { background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius); padding: 20px 22px; transition: var(--lb-transition); }
.lb-search-item:hover { border-color: var(--lb-primary-light); box-shadow: var(--lb-shadow-sm); }
.lb-search-item h2 { font-size: 1.2rem; margin: 0 0 6px; }
.lb-search-item h2 a { color: var(--lb-text); text-decoration: none; }
.lb-search-item h2 a:hover { color: var(--lb-primary); }
.lb-search-type { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--lb-primary); background: var(--lb-primary-lighter); padding: 3px 10px; border-radius: 999px; margin-bottom: 8px; }

/* --- Breadcrumbs (nav variant uses existing .lb-breadcrumbs) --- */
.lb-breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 0; padding: 0; }
.lb-breadcrumbs li { display: inline-flex; align-items: center; gap: 8px; }
.lb-bc-sep { color: var(--lb-text-muted); }

/* --- Lead form --- */
.lb-lead { width: 100%; }
.lb-lead--card { background: var(--lb-bg); border: 1px solid var(--lb-border); border-radius: var(--lb-radius-lg); padding: 28px; box-shadow: var(--lb-shadow-lg); }
.lb-lead-title { font-family: var(--lb-font-display); font-size: 1.3rem; margin: 0 0 6px; color: var(--lb-text); }
.lb-lead-intro { color: var(--lb-text-muted); margin: 0 0 18px; font-size: .95rem; line-height: 1.55; }
.lb-lead-form { display: flex; flex-direction: column; gap: 12px; }
.lb-lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lb-lead-form input, .lb-lead-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--lb-border); border-radius: var(--lb-radius-sm); font: inherit; background: var(--lb-bg); color: var(--lb-text); }
.lb-lead-form input:focus, .lb-lead-form textarea:focus { outline: none; border-color: var(--lb-primary); box-shadow: 0 0 0 3px var(--lb-primary-light); }
.lb-lead-form textarea { min-height: 96px; resize: vertical; }
.lb-lead-submit { margin-top: 4px; }
.lb-lead-status { font-size: .92rem; padding: 10px 14px; border-radius: var(--lb-radius-sm); display: none; }
.lb-lead-status.is-success { display: block; background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.lb-lead-status.is-error { display: block; background: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
/* Honeypot — must stay hidden from humans */
.lb-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* Final CTA section */
.lb-leadcta-section { background: linear-gradient(135deg, var(--lb-primary-darker), var(--lb-primary)); color: #fff; }
.lb-leadcta-grid { display: grid; grid-template-columns: 1fr 440px; gap: 48px; align-items: center; }
.lb-leadcta-text h2 { font-family: var(--lb-font-display); font-size: 2rem; line-height: 1.18; margin: 14px 0 14px; }
.lb-leadcta-text p { color: rgba(255,255,255,.85); line-height: 1.65; font-size: 1.05rem; }
.lb-leadcta-points { list-style: none; margin: 20px 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.lb-leadcta-points li { position: relative; padding-left: 28px; color: #fff; }
.lb-leadcta-points li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat; }
.lb-leadcta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* --- Location landing page --- */
.lb-loc-hero { padding: 48px 0; background: var(--lb-bg-soft); position: relative; overflow: hidden; }
.lb-loc-grid, .lb-loc-hero-grid { display: grid; grid-template-columns: 1fr 440px; gap: 40px; align-items: center; position: relative; z-index: 2; }
.lb-loc-text h1, .lb-loc-hero-text h1 { font-family: var(--lb-font-display); font-size: 2.3rem; line-height: 1.15; margin: 12px 0; color: var(--lb-text); }
.lb-loc-text p, .lb-loc-hero-text p { color: var(--lb-text-muted); font-size: 1.08rem; line-height: 1.65; }
.lb-loc-flag { font-size: 2.4rem; line-height: 1; }

/* --- HTML sitemap --- */
.lb-sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lb-sitemap-col--wide { grid-column: 1 / -1; }
.lb-sitemap-h { font-family: var(--lb-font-display); font-size: 1.15rem; margin: 0 0 14px; padding-bottom: 10px; border-bottom: 2px solid var(--lb-primary-light); color: var(--lb-text); }
.lb-sitemap-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.lb-sitemap-list--cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.lb-sitemap-list a, .lb-sitemap-list li a { color: var(--lb-text-soft); text-decoration: none; }
.lb-sitemap-list a:hover { color: var(--lb-primary); }

/* ============================================================
   v2.0.0 RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.lb-services-grid, .lb-reviews-grid, .lb-cs-grid, .lb-post-grid { grid-template-columns: repeat(2, 1fr); }
	.lb-team-grid { grid-template-columns: repeat(3, 1fr); }
	.lb-features-grid { grid-template-columns: repeat(2, 1fr); }
	.lb-service-layout, .lb-leadcta-grid, .lb-loc-grid, .lb-loc-hero-grid { grid-template-columns: 1fr; }
	.lb-service-aside { position: static; }
	.lb-sitemap-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.lb-services-grid, .lb-reviews-grid, .lb-cs-grid, .lb-post-grid, .lb-team-grid, .lb-features-grid { grid-template-columns: 1fr; }
	.lb-stats-bar { grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
	.lb-cs-beforeafter { grid-template-columns: 1fr; }
	.lb-lead-row { grid-template-columns: 1fr; }
	.lb-sitemap-grid, .lb-sitemap-list--cols { grid-template-columns: 1fr; }
	.lb-single-title, .lb-cs-hero h1, .lb-service-hero h1, .lb-loc-text h1 { font-size: 1.8rem; }
	.lb-leadcta-text h2 { font-size: 1.6rem; }
	.lb-author-box { flex-direction: column; align-items: center; text-align: center; }
	.lb-marquee-track .lb-review-card { width: 300px; }
}

/* --- Mobile sticky CTA bar --- */
.lb-sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: none; gap: 10px; padding: 10px 14px; background: var(--lb-bg); border-top: 1px solid var(--lb-border); box-shadow: 0 -6px 20px rgba(15,23,42,.1); transform: translateY(110%); transition: transform var(--lb-transition); }
.lb-sticky-cta.is-visible { transform: translateY(0); }
.lb-sticky-cta .lb-btn { flex: 1; justify-content: center; }
@media (max-width: 768px) {
	.lb-sticky-cta { display: flex; }
	body.lb-has-sticky-cta { padding-bottom: 72px; }
}

/* --- Exit intent popup --- */
.lb-exit-popup { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(15,23,42,.6); backdrop-filter: blur(2px); }
.lb-exit-popup.is-open { display: flex; }
.lb-exit-dialog { position: relative; width: 100%; max-width: 460px; background: var(--lb-bg); border-radius: var(--lb-radius-lg); padding: 32px; box-shadow: var(--lb-shadow-xl); animation: lb-pop-in 240ms cubic-bezier(.2,.8,.2,1); }
@keyframes lb-pop-in { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.lb-exit-close { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: none; background: var(--lb-bg-muted); border-radius: 50%; font-size: 18px; line-height: 1; cursor: pointer; color: var(--lb-text-soft); }
.lb-exit-close:hover { background: var(--lb-border); }
.lb-exit-title { font-family: var(--lb-font-display); font-size: 1.4rem; margin: 0 0 8px; }
.lb-exit-text { color: var(--lb-text-muted); margin: 0 0 18px; line-height: 1.55; }

/* ============================================================
   v2.1 NAVIGATION DROPDOWNS
   ============================================================ */
.lb-menu li { position: relative; }
.lb-menu .menu-item-has-children > a { display: inline-flex; align-items: center; gap: 6px; }
.lb-menu-caret { transition: transform var(--lb-transition); flex-shrink: 0; }
.lb-submenu-toggle { display: none; }

/* Submenu (desktop): hidden until hover */
.lb-menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--lb-border);
	border-radius: var(--lb-radius);
	box-shadow: var(--lb-shadow-lg);
	padding: 8px;
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--lb-transition), transform var(--lb-transition), visibility var(--lb-transition);
	z-index: 200;
}
.lb-menu .sub-menu::before { /* hover bridge so the gap doesn't close the menu */
	content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 12px;
}
.lb-menu .menu-item-has-children:hover > .sub-menu,
.lb-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1; visibility: visible; transform: translateY(0);
}
.lb-menu .menu-item-has-children:hover > a .lb-menu-caret { transform: rotate(180deg); }
.lb-menu .sub-menu li { width: 100%; }
.lb-menu .sub-menu a {
	display: flex; align-items: baseline; gap: 8px;
	padding: 9px 12px; border-radius: var(--lb-radius-sm);
	font-size: .92rem; font-weight: 600; color: var(--lb-text-soft); white-space: nowrap;
}
.lb-menu .sub-menu a:hover { background: var(--lb-primary-lighter); color: var(--lb-primary); }
.lb-menu-flag { font-size: 1rem; line-height: 1; }
.lb-menu-label { flex: 1; }
.lb-menu-meta { font-size: .72rem; font-weight: 700; color: var(--lb-text-muted); letter-spacing: .02em; }
.lb-menu .sub-menu a:hover .lb-menu-meta { color: var(--lb-primary); }

/* Mega menu (Country) — multi-column, scrollable */
.lb-menu .lb-mega > .sub-menu {
	display: grid;
	grid-template-columns: repeat(3, minmax(190px, 1fr));
	gap: 2px 10px;
	width: min(660px, 88vw);
	max-height: 70vh;
	overflow-y: auto;
}
.lb-menu .lb-mega > .sub-menu a { white-space: normal; }

/* ============================================================
   v2.1 PRICING PLANS
   ============================================================ */
.lb-plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; max-width: 1080px; margin: 0 auto; }
.lb-plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.lb-plans-1 { grid-template-columns: minmax(0, 420px); justify-content: center; }
.lb-plan {
	position: relative; display: flex; flex-direction: column;
	background: var(--lb-bg); border: 1px solid var(--lb-border);
	border-radius: var(--lb-radius-lg); padding: 28px 24px; box-shadow: var(--lb-shadow-sm);
	transition: var(--lb-transition);
}
.lb-plan:hover { transform: translateY(-4px); box-shadow: var(--lb-shadow-lg); }
.lb-plan--featured { border-color: var(--lb-primary); box-shadow: var(--lb-shadow-lg); }
.lb-plan-badge {
	position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
	background: var(--lb-primary); color: #fff; font-size: .72rem; font-weight: 800;
	text-transform: uppercase; letter-spacing: .05em; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.lb-plan-name { font-family: var(--lb-font-display); font-size: 1.25rem; margin: 0 0 10px; color: var(--lb-text); }
.lb-plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--lb-border-soft); }
.lb-plan-price strong { font-family: var(--lb-font-display); font-size: 2.1rem; font-weight: 800; color: var(--lb-text); line-height: 1; }
.lb-plan-price span { font-size: .9rem; color: var(--lb-text-muted); font-weight: 600; }
.lb-plan-features { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.lb-plan-features li { display: flex; align-items: flex-start; gap: 9px; color: var(--lb-text-soft); line-height: 1.45; font-size: .94rem; }
.lb-plan-features li svg { flex-shrink: 0; margin-top: 3px; color: var(--lb-primary); }
.lb-plan-cta { width: 100%; justify-content: center; margin-top: auto; }

/* ============================================================
   v2.1 CEO / FOUNDER SECTION
   ============================================================ */
.lb-ceo-grid { display: grid; grid-template-columns: 320px 1fr; gap: 48px; align-items: center; }
.lb-ceo-photo-wrap { position: relative; }
.lb-ceo-photo {
	aspect-ratio: 1 / 1; border-radius: var(--lb-radius-xl); overflow: hidden;
	background: linear-gradient(135deg, var(--lb-primary-lighter), var(--lb-primary-light));
	display: grid; place-items: center; box-shadow: var(--lb-shadow-lg);
}
.lb-ceo-photo img { width: 100%; height: 100%; object-fit: cover; }
.lb-ceo-initials { font-family: var(--lb-font-display); font-size: 5rem; font-weight: 800; color: var(--lb-primary); }
.lb-ceo-badge {
	position: absolute; left: 50%; bottom: -22px; transform: translateX(-50%);
	background: #fff; border: 1px solid var(--lb-border); box-shadow: var(--lb-shadow);
	border-radius: var(--lb-radius); padding: 10px 20px; text-align: center; white-space: nowrap;
}
.lb-ceo-badge strong { display: block; font-family: var(--lb-font-display); color: var(--lb-text); }
.lb-ceo-badge span { display: block; font-size: .8rem; color: var(--lb-primary); font-weight: 700; }
.lb-ceo-body { position: relative; }
.lb-ceo-quote-mark { color: var(--lb-primary-light); margin: 6px 0; }
.lb-ceo-message { font-size: 1.2rem; line-height: 1.7; color: var(--lb-text-soft); margin: 0 0 24px; }
.lb-ceo-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 20px; border-top: 1px solid var(--lb-border-soft); }
.lb-ceo-sign strong { display: block; font-family: var(--lb-font-display); font-size: 1.1rem; color: var(--lb-text); }
.lb-ceo-sign span { display: block; font-size: .9rem; color: var(--lb-text-muted); }
.lb-ceo-actions { display: flex; align-items: center; gap: 12px; }
.lb-ceo-actions a[aria-label] { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--lb-bg-muted); color: var(--lb-text-soft); transition: var(--lb-transition); }
.lb-ceo-actions a[aria-label]:hover { background: var(--lb-primary); color: #fff; }

/* ============================================================
   v2.1 RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.lb-plans-grid, .lb-plans-2 { grid-template-columns: repeat(2, 1fr); }
	.lb-ceo-grid { grid-template-columns: 260px 1fr; gap: 36px; }
}
@media (max-width: 768px) {
	/* Pricing + CEO stack */
	.lb-plans-grid, .lb-plans-2, .lb-plans-1 { grid-template-columns: 1fr; max-width: 420px; }
	.lb-ceo-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
	.lb-ceo-photo { max-width: 260px; margin: 0 auto; }
	.lb-ceo-foot { justify-content: center; }

	/* Mobile menu: accordion submenus */
	.lb-menu .menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; }
	.lb-menu .menu-item-has-children > a { flex: 1; }
	.lb-menu .menu-item-has-children > a .lb-menu-caret { display: none; }
	.lb-submenu-toggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 44px; min-height: 44px; background: transparent; border: none;
		color: var(--lb-text-soft); cursor: pointer; border-bottom: 1px solid var(--lb-border-soft);
	}
	.lb-submenu-toggle .lb-menu-caret { transition: transform var(--lb-transition); }
	.lb-menu .menu-item-has-children.is-expanded > .lb-submenu-toggle .lb-menu-caret { transform: rotate(180deg); }
	.lb-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		width: 100%; flex-basis: 100%; min-width: 0; box-shadow: none; border: none;
		border-radius: 0; padding: 0 0 8px 12px; display: none;
		max-height: none; background: transparent;
	}
	.lb-menu .lb-mega > .sub-menu { display: none; grid-template-columns: 1fr; width: 100%; }
	.lb-menu .menu-item-has-children.is-expanded > .sub-menu { display: block; }
	.lb-menu .lb-mega.is-expanded > .sub-menu { display: grid; max-height: 50vh; overflow-y: auto; }
	.lb-menu .sub-menu a { padding: 10px 8px; white-space: normal; }
}

/* ============================================================
   v2.1.1 — fit longer nav labels on mid-size screens
   ============================================================ */
.lb-menu > li > a { white-space: nowrap; }
@media (min-width: 769px) and (max-width: 1220px) {
	.lb-navbar-inner { gap: 12px; }
	.lb-menu { gap: 0; }
	.lb-menu > li > a { padding: 8px 9px; font-size: 0.9rem; }
	.lb-cta-btn--header { padding: 9px 14px; font-size: 0.85rem; }
}
@media (min-width: 769px) and (max-width: 1000px) {
	.lb-menu > li > a { padding: 7px 7px; font-size: 0.84rem; }
}

/* v2.3 — service article intro paragraph */
.lb-prose .lb-lead-para { font-size: 1.18rem; line-height: 1.7; color: var(--lb-text); font-weight: 500; }

/* v2.4.2 — footer legal links */
.lb-footer-legal{display:flex;flex-wrap:wrap;gap:4px 0;align-items:center;justify-content:center;margin:6px 0;}
.lb-footer-legal a{color:inherit;opacity:.85;text-decoration:none;}
.lb-footer-legal a:hover{opacity:1;text-decoration:underline;}
.lb-footer-legal-sep{opacity:.5;}

/* =====================================================
   v2.5.0 — Link Building country pages + logo guard
   ===================================================== */

/* Header brand safety: keep brand visible; constrain an uploaded logo. */
.lb-brand { display: inline-flex; align-items: center; }
.lb-header .custom-logo-link { display: inline-flex; align-items: center; line-height: 0; }
.lb-header .custom-logo { max-height: 44px; width: auto; height: auto; display: block; }
.lb-header .lb-logo-icon svg { display: block; }

/* 3-package grid */
.lb-pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; margin-top: 8px; }
.lb-pkg-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--lb-border, #e2e8f0); border-radius: 18px; padding: 28px 24px; box-shadow: 0 6px 24px rgba(15,23,42,.06); }
.lb-pkg-card--popular { border-color: var(--lb-primary, #0EA5E9); box-shadow: 0 14px 40px rgba(14,165,233,.18); transform: translateY(-6px); }
.lb-pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--lb-primary, #0EA5E9); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
.lb-pkg-name { font-family: var(--lb-font-display, inherit); font-size: 20px; font-weight: 800; margin: 4px 0 8px; }
.lb-pkg-price { display: flex; align-items: flex-start; gap: 2px; margin: 4px 0; }
.lb-pkg-cur { font-size: 22px; font-weight: 800; color: var(--lb-primary, #0EA5E9); margin-top: 6px; }
.lb-pkg-amount { font-family: var(--lb-font-display, inherit); font-size: 48px; line-height: 1; font-weight: 800; color: var(--lb-text, #0f172a); }
.lb-pkg-tagline { color: var(--lb-text-muted, #64748b); font-size: 14px; margin: 4px 0 16px; }
.lb-pkg-features { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 10px; }
.lb-pkg-features li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.4; }
.lb-pkg-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--lb-primary, #0EA5E9); font-weight: 800; }
.lb-pkg-card .lb-btn { margin-top: auto; }
.lb-btn--outline-wa { background: transparent; color: #128C7E; border: 2px solid #128C7E; }
.lb-btn--outline-wa:hover { background: #128C7E; color: #fff; }
.lb-pkg-note { text-align: center; color: var(--lb-text-muted, #64748b); font-size: 14px; max-width: 760px; margin: 28px auto 0; }

/* Internal-link mesh */
.lb-lb-mesh-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.lb-lb-mesh-link { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; border: 1px solid var(--lb-border, #e2e8f0); border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--lb-text, #0f172a); text-decoration: none; background: #fff; transition: all .15s ease; }
.lb-lb-mesh-link:hover { border-color: var(--lb-primary, #0EA5E9); color: var(--lb-primary, #0EA5E9); }

@media (max-width: 900px) {
  .lb-pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .lb-pkg-card--popular { transform: none; }
}

/* v2.6.0 — force header brand visibility (logo fix) */
.lb-header .lb-brand,
.lb-header .lb-logo { display: inline-flex !important; align-items: center; gap: 10px; visibility: visible !important; opacity: 1 !important; }
.lb-header .lb-logo-icon { display: inline-flex !important; flex: 0 0 auto; }
.lb-header .lb-logo-icon svg { display: block !important; width: 36px !important; height: 36px !important; }
.lb-header .lb-logo-text { display: flex !important; flex-direction: column; }

/* =====================================================
   v2.7.0 — Topic clusters (auto internal linking)
   ===================================================== */
.lb-cluster-box { margin: 40px 0 8px; display: grid; gap: 18px; }
.lb-cluster-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 22px; border-radius: 16px; background: linear-gradient(135deg, rgba(14,165,233,.10), rgba(250,204,21,.10)); border: 1px solid var(--lb-border, #e2e8f0); }
.lb-cluster-eyebrow { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--lb-primary, #0EA5E9); }
.lb-cluster-cta strong { font-family: var(--lb-font-display, inherit); font-size: 20px; }
.lb-cluster-related { padding: 18px 22px; border: 1px solid var(--lb-border, #e2e8f0); border-radius: 16px; background: #fff; }
.lb-cluster-related-title { display: block; font-weight: 700; margin-bottom: 8px; }
.lb-cluster-related ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 24px; }
.lb-cluster-related a { color: var(--lb-primary, #0EA5E9); text-decoration: none; }
.lb-cluster-related a:hover { text-decoration: underline; }

/* Money-page guide grid (also reused for results/reviews) */
.lb-cluster-guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lb-cluster-guide-card { display: flex; flex-direction: column; gap: 10px; padding: 22px; border: 1px solid var(--lb-border, #e2e8f0); border-radius: 16px; background: #fff; text-decoration: none; color: inherit; transition: all .15s ease; }
a.lb-cluster-guide-card:hover { border-color: var(--lb-primary, #0EA5E9); box-shadow: 0 10px 30px rgba(15,23,42,.08); transform: translateY(-3px); }
.lb-cluster-guide-card h3 { font-family: var(--lb-font-display, inherit); font-size: 18px; margin: 0; }
.lb-cluster-guide-card p { color: var(--lb-text-muted, #64748b); font-size: 14.5px; margin: 0; }
.lb-cluster-guide-more { margin-top: auto; color: var(--lb-primary, #0EA5E9); font-weight: 600; font-size: 14px; }

@media (max-width: 900px) {
  .lb-cluster-guide-grid { grid-template-columns: 1fr; }
  .lb-cluster-related ul { grid-template-columns: 1fr; }
}

/* =====================================================
   v3.2.0 — Country website-list (work sample) modal
   ===================================================== */
.lb-modal{position:fixed;inset:0;z-index:1000;display:flex;align-items:center;justify-content:center;padding:18px;}
.lb-modal[hidden]{display:none;}
.lb-modal-backdrop{position:absolute;inset:0;background:rgba(15,23,42,.6);backdrop-filter:blur(2px);}
.lb-modal-panel{position:relative;z-index:1;width:100%;max-width:760px;max-height:86vh;display:flex;flex-direction:column;background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 24px 70px rgba(15,23,42,.35);}
.lb-modal-head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:16px 20px;border-bottom:1px solid var(--lb-border,#e2e8f0);}
.lb-modal-head strong{font-family:var(--lb-font-display,inherit);font-size:17px;}
.lb-modal-x{border:0;background:transparent;font-size:28px;line-height:1;cursor:pointer;color:var(--lb-text-muted,#64748b);}
.lb-modal-tools{padding:12px 20px;border-bottom:1px solid var(--lb-border,#e2e8f0);}
.lb-sites-search{width:100%;padding:10px 14px;border:1px solid var(--lb-border,#e2e8f0);border-radius:10px;font-size:14px;}
.lb-modal-body{overflow:auto;padding:0 20px;flex:1;}
.lb-sites-table{width:100%;border-collapse:collapse;font-size:14px;}
.lb-sites-table thead th{position:sticky;top:0;background:#fff;text-align:left;padding:12px 8px;border-bottom:2px solid var(--lb-border,#e2e8f0);font-weight:700;}
.lb-sites-table tbody td{padding:10px 8px;border-bottom:1px solid var(--lb-border,#eef2f7);}
.lb-sites-table tbody tr:hover{background:#f8fafc;}
.lb-dr-badge{display:inline-block;min-width:34px;text-align:center;padding:2px 8px;border-radius:999px;background:rgba(14,165,233,.12);color:var(--lb-primary,#0EA5E9);font-weight:700;}
.lb-sites-empty{padding:20px 8px;color:var(--lb-text-muted,#64748b);}
.lb-modal-foot{padding:14px 20px;border-top:1px solid var(--lb-border,#e2e8f0);}
@media (max-width:600px){ .lb-sites-table td:nth-child(3){display:none;} .lb-sites-table th:nth-child(3){display:none;} }
