/* Links Growth — small additions on top of the compiled design-system CSS */

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

.lg-prose { max-width: 760px; }
.lg-prose h2 { font-size: 1.5rem; font-weight: 800; margin: 2.5rem 0 1rem; color: var(--foreground); }
.lg-prose h3 { font-size: 1.15rem; font-weight: 700; margin: 1.75rem 0 .75rem; color: var(--foreground); }
.lg-prose p { margin: 0 0 1.1rem; line-height: 1.7; color: var(--muted-foreground); }
.lg-prose ul, .lg-prose ol { margin: 0 0 1.1rem 1.25rem; color: var(--muted-foreground); line-height: 1.7; }
.lg-prose li { margin-bottom: .4rem; }
.lg-prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.lg-prose strong { color: var(--foreground); }

/* Contact / quote forms */
.lg-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--foreground); margin-bottom: .4rem; }
.lg-field input,
.lg-field select,
.lg-field textarea {
	width: 100%;
	border: 1px solid var(--border);
	border-radius: .75rem;
	padding: .7rem .9rem;
	font-size: .9rem;
	font-family: inherit;
	background: #fff;
	color: var(--foreground);
}
.lg-field input:focus,
.lg-field select:focus,
.lg-field textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 20%, transparent);
}

/* FAQ accordion */
[data-faq-panel].hidden { display: none; }
[data-faq-toggle] svg { transition: transform .2s ease; }
[data-faq-toggle].lg-faq-open svg { transform: rotate(45deg); }

/* Random placeholder image framing */
.lg-img-card { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); }
.lg-img-card img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 767px) {
	#lg-mobile-menu.hidden { display: none; }
}

/* Tabs */
[data-tab-btn] { cursor: pointer; }
[data-tab-btn].lg-tab-active { background: var(--foreground); color: #fff; }
[data-tab-panel].hidden { display: none; }

/* Sticky mobile CTA bar */
#lg-sticky-cta {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 60;
	background: var(--foreground);
	color: #fff;
	transform: translateY(100%);
	transition: transform .3s ease;
	box-shadow: 0 -8px 24px -8px rgba(0,0,0,.25);
}
#lg-sticky-cta.lg-sticky-visible { transform: translateY(0); }
#lg-sticky-cta.lg-sticky-hidden { display: none; }
@media (min-width: 768px) {
	#lg-sticky-cta { display: none; }
}

/* Comparison table */
.lg-compare-table th, .lg-compare-table td { vertical-align: middle; }
.lg-compare-check { color: var(--brand); }
.lg-compare-cross { color: var(--muted-foreground); opacity: .45; }
.lg-swipe-hint { display: block; }
@media (min-width: 640px) {
	.lg-swipe-hint { display: none; }
}
.gap-0\.5 { gap: .125rem; }

/* Rating badge */
.lg-rating-stars svg { display: inline-block; }

/* Logo strip */
.lg-logo-strip span { opacity: .55; transition: opacity .2s ease; }
.lg-logo-strip span:hover { opacity: 1; }

/* Benefit / feature cards */
.lg-benefit-icon { transition: transform .3s ease; }
.lg-benefit-card:hover .lg-benefit-icon { transform: translateY(-3px) scale(1.05); }

/* Back to top button */
#lg-back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 46px;
	height: 46px;
	border-radius: 9999px;
	background: var(--brand);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px -4px rgba(0,0,0,.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
	z-index: 55;
	cursor: pointer;
}
#lg-back-to-top.lg-visible { opacity: 1; visibility: visible; transform: translateY(0); }
#lg-back-to-top:hover { background: var(--brand-dark); }
@media (max-width: 767px) {
	#lg-back-to-top { bottom: 76px; width: 42px; height: 42px; }
}

.lg-logo { height: 46px; width: auto; display: block; }
.lg-logo-footer { height: 46px; }
@media (max-width: 480px) {
	.lg-logo { height: 36px; }
}
.lg-topbar { background: var(--foreground); display: none; }
.lg-topbar-inner { height: 38px; display: flex; align-items: center; justify-content: flex-end; }
.lg-topbar-divider { display: none; width: 1px; height: 14px; background: rgba(255,255,255,.2); }
header.lg-main-header { top: 0; }
@media (min-width: 640px) {
	.lg-topbar { display: block; }
}
@media (min-width: 768px) {
	.lg-topbar-divider { display: block; }
}

/* Social icons */
.lg-social-icon { background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); }
.lg-social-icon:hover { background: var(--brand); color: #fff; }
footer .lg-social-icon { background: rgba(255,255,255,.06); }

/* Testimonial marquee */
.lg-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.lg-marquee-track { display: flex; gap: 1.5rem; width: max-content; animation: lg-marquee-scroll 60s linear infinite; }
.lg-marquee:hover .lg-marquee-track { animation-play-state: paused; }
.lg-marquee.lg-marquee-paused .lg-marquee-track { animation-play-state: paused; }
.lg-marquee { cursor: pointer; }
.lg-marquee-card { width: 320px; flex-shrink: 0; }
@media (min-width: 768px) {
	.lg-marquee-card { width: 380px; }
}
@keyframes lg-marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.lg-marquee-track { animation: none; overflow-x: auto; }
}

/* FAQ font sizing */
.lg-faq-q { font-size: 1.125rem; }
.lg-faq-a { font-size: 1.125rem; line-height: 1.7; }
@media (min-width: 768px) {
	.lg-faq-q { font-size: 1.25rem; }
	.lg-faq-a { font-size: 1.25rem; }
}

/* Contact page map */
.lg-map-frame { border: 0; width: 100%; height: 100%; min-height: 340px; }
.min-h-\[340px\] { min-height: 340px; }
.items-stretch { align-items: stretch; }

/* Smooth in-page anchor scrolling (jump-nav, #contact, #pricing, etc.) */
html { scroll-behavior: smooth; }

/* Long-form city article */
.lg-hook-box {
	position: relative;
	background: var(--card);
	border-left: 4px solid var(--brand);
	border-radius: 0 1.25rem 1.25rem 0;
	padding: 2rem 2rem 2rem 2.5rem;
}
.lg-hook-icon { color: var(--brand); opacity: .3; margin-bottom: .75rem; }
.lg-hook-box p { font-size: 1.15rem; line-height: 1.65; color: var(--foreground); margin: 0; }

.lg-jumpnav-card {
	display: flex;
	align-items: center;
	gap: .9rem;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: 1rem 1.1rem;
	text-decoration: none !important;
	transition: border-color .2s ease, transform .2s ease;
}
.lg-jumpnav-card:hover { border-color: var(--brand); transform: translateX(2px); }
.lg-jumpnav-icon {
	width: 2.25rem;
	height: 2.25rem;
	border-radius: .7rem;
	background: color-mix(in srgb, var(--brand) 10%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lg-jumpnav-label { flex: 1; font-size: .9rem; font-weight: 600; color: var(--foreground); }
.lg-jumpnav-arrow { color: var(--muted-foreground); opacity: 0; transition: opacity .2s ease, transform .2s ease; flex-shrink: 0; }
.lg-jumpnav-card:hover .lg-jumpnav-arrow { opacity: 1; transform: translateX(2px); color: var(--brand); }

.lg-longform-section { scroll-margin-top: 24px; }
.lg-section-num {
	font-family: 'Fraunces', serif;
	font-size: 2.25rem;
	line-height: 1;
	color: var(--brand);
	opacity: .3;
	flex-shrink: 0;
}
.lg-section-icon {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: .85rem;
	background: color-mix(in srgb, var(--brand) 10%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lg-longform-p { color: var(--muted-foreground); line-height: 1.75; margin: 0 0 1.15rem; font-size: 1.02rem; }
.lg-longform-p:last-child { margin-bottom: 0; }
.lg-longform-p strong, .lg-longform-p em { color: var(--foreground); font-style: normal; font-weight: 600; }

.lg-tier-row {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 1.5rem;
	transition: border-color .25s ease;
}
.lg-tier-row:hover { border-color: var(--brand); }
.lg-tier-icon {
	width: 3rem;
	height: 3rem;
	border-radius: .85rem;
	background: color-mix(in srgb, var(--brand) 10%, transparent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lg-tier-content { min-width: 0; }
.lg-tier-content h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin: 0 0 .5rem; }
.lg-tier-content p { font-size: .9rem; line-height: 1.65; color: var(--muted-foreground); margin: 0; }
.lg-tier-content p em { color: var(--foreground); font-style: normal; font-weight: 600; }

.lg-split-cta {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	margin-top: .5rem;
	font-weight: 600;
	font-size: .9rem;
	color: var(--brand);
	text-decoration: none !important;
}
.lg-split-cta:hover { text-decoration: underline !important; }

.lg-pullquote-text {
	font-family: 'Fraunces', serif;
	font-size: 1.5rem;
	font-style: italic;
	line-height: 1.5;
	color: var(--background);
	margin: 0;
}

.lg-casestudy-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}
.lg-casestudy-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0;
	width: 4px;
	background: var(--brand);
}
.lg-casestudy-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; color: var(--brand); margin-bottom: .9rem; display: flex; align-items: center; gap: .35rem; }
.lg-casestudy-check { flex-shrink: 0; }
.lg-casestudy-quote { font-style: italic; font-size: 1.05rem; color: var(--foreground); margin: 0 0 1.5rem; line-height: 1.65; }
.lg-casestudy-footer { display: flex; align-items: center; gap: .9rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.lg-casestudy-avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: linear-gradient(135deg, var(--brand), var(--accent-color));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: .95rem;
	flex-shrink: 0;
}
.lg-casestudy-name { font-weight: 600; font-size: .875rem; color: var(--foreground); }
.lg-casestudy-context { font-size: .75rem; color: var(--muted-foreground); }

.lg-longform-cta {
	padding: 1.75rem 2rem;
	border-radius: 1.5rem;
	background: color-mix(in srgb, var(--brand) 8%, transparent);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}
.lg-longform-cta p { margin: 0; font-weight: 600; color: var(--foreground); }
.lg-longform-cta a {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: var(--brand);
	color: #fff !important;
	font-weight: 600;
	font-size: .875rem;
	padding: .7rem 1.4rem;
	border-radius: 9999px;
	text-decoration: none !important;
	white-space: nowrap;
}
.lg-longform-cta a:hover { opacity: .9; }

.lg-city-search { position: relative; }
.lg-city-search svg { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.lg-city-search input { padding-left: 44px; }
.lg-city-card.lg-city-hidden { display: none; }

/* Sitewide CTA button hover polish — scoped to real clickable pill/rounded-xl
   buttons only (never decorative badges, nav pills, social icons, or the
   header's already-custom gradient CTA, which has its own glow effect). */
a.rounded-full:not(.lg-social-icon):not(.lg-nav-pill):not(.lg-btn-glow):not(.lg-jumpnav-card):hover,
button.rounded-full:not(.lg-social-icon):hover,
button.rounded-xl:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 22px -8px rgba(0,0,0,.25);
}
a.rounded-full:not(.lg-social-icon):not(.lg-nav-pill):not(.lg-btn-glow):not(.lg-jumpnav-card):active,
button.rounded-full:not(.lg-social-icon):active,
button.rounded-xl:active {
	transform: translateY(0);
	box-shadow: none;
}


/* Main nav pills */
.lg-nav-pill {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .4rem .9rem;
	border-radius: 9999px;
	background: var(--card);
	border: 1px solid var(--border);
	color: var(--muted-foreground);
	text-decoration: none !important;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.lg-nav-pill:hover { border-color: var(--brand); color: var(--foreground); }
.lg-nav-pill-active { border-color: var(--brand); color: var(--foreground); font-weight: 600; background: color-mix(in srgb, var(--brand) 8%, var(--card)); }

/* ===================================================================
   Utility polyfills — the compiled Tailwind bundle only contains the
   exact classes the original design used. These are additional
   standard-Tailwind-equivalent utilities introduced by later additions
   that weren't in that original set, defined here by hand (same class
   names as Tailwind would generate) so no markup has to change.
   =================================================================== */
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.opacity-10 { opacity: .1; }
.ml-auto { margin-left: auto; }
.ml-1 { margin-left: .25rem; }
.mx-1\.5 { margin-inline: .375rem; }
.pb-4 { padding-bottom: 1rem; }
.pr-5 { padding-right: 1.25rem; }
.pb-5 { padding-bottom: 1.25rem; }
.py-6 { padding-block: 1.5rem; }
.py-8 { padding-block: 2rem; }
.py-32 { padding-block: 8rem; }
.border-dashed { border-style: dashed; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.mt-1\.5 { margin-top: .375rem; }
.max-w-lg { max-width: 32rem; }
.text-white\/70 { color: rgba(255,255,255,.7); }
.text-white\/55 { color: rgba(255,255,255,.55); }
.text-white\/50 { color: rgba(255,255,255,.5); }
.text-white\/85 { color: rgba(255,255,255,.85); }
.bg-white\/80 { background-color: rgba(255,255,255,.8); }
.bg-white\/60 { background-color: rgba(255,255,255,.6); }
.bg-white\/15 { background-color: rgba(255,255,255,.15); }
.bg-white\/10 { background-color: rgba(255,255,255,.1); }
.bg-amber-400 { background-color: #fbbf24; }
.my-6 { margin-block: 1.5rem; }
.w-px { width: 1px; }
.self-stretch { align-self: stretch; }
.object-contain { object-fit: contain; }
.max-w-\[9rem\] { max-width: 9rem; }
@media (min-width: 1024px) {
	.lg\:flex-row { flex-direction: row; }
	.lg\:gap-6 { gap: 1.5rem; }
	.lg\:mx-0 { margin-inline: 0; }
	.lg\:block { display: block; }
}
.bg-muted-foreground\/10 { background-color: color-mix(in srgb, var(--muted-foreground) 10%, transparent); }
.h-\[300px\] { height: 300px; }
.h-\[360px\] { height: 360px; }
.h-\[420px\] { height: 420px; }
.w-\[420px\] { width: 420px; }
.leading-\[1\.08\] { line-height: 1.08; }
.min-w-\[560px\] { min-width: 560px; }
.min-w-\[720px\] { min-width: 720px; }
.-left-\[9999px\] { left: -9999px; }
.bg-\[var\(--brand\)\]\/\[0\.03\] { background-color: color-mix(in oklab, var(--brand) 3%, transparent); }
.bg-\[var\(--brand\)\]\/\[0\.04\] { background-color: color-mix(in oklab, var(--brand) 4%, transparent); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
@media (min-width: 640px) {
	.sm\:block { display: block; }
	.sm\:col-span-1 { grid-column: span 1 / span 1; }
	.sm\:h-auto { height: auto !important; }
	.sm\:w-40 { width: 10rem; }
	.sm\:items-center { align-items: center; }
}
@media (min-width: 768px) {
	.md\:gap-12 { gap: 3rem; }
	.md\:p-9 { padding: 2.25rem; }
	.md\:pb-24 { padding-bottom: 6rem; }
	.md\:pb-28 { padding-bottom: 7rem; }
	.md\:py-28 { padding-block: 7rem; }
	.md\:text-sm { font-size: .875rem; line-height: 1.42857; }
	.md\:mt-14 { margin-top: 3.5rem; }
	.md\:text-3xl { font-size: 1.875rem; line-height: 1.2; }
	.md\:py-14 { padding-block: 3.5rem; }
	.md\:h-\[400px\] { height: 400px; }
	.md\:text-lg { font-size: 1.125rem; line-height: 1.5556; }
}
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-x-1 { transform: translateX(.25rem); }
.p-2\.5 { padding: .625rem; }
.py-14 { padding-block: 3.5rem; }
.opacity-80 { opacity: .8; }
.opacity-40 { opacity: .4; }
.hover\:opacity-80:hover { opacity: .8; }
.max-w-none { max-width: none; }
.w-\[700px\] { width: 700px; }
.h-\[350px\] { height: 350px; }
.-bottom-32 { bottom: -8rem; }
.-left-32 { left: -8rem; }
.bg-background\/\[0\.06\] { background-color: color-mix(in srgb, var(--background) 6%, transparent); }
@media (min-width: 768px) {
	.md\:gap-6 { gap: 1.5rem; }
}
@media (min-width: 1024px) {
	.lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.w-\[600px\] { width: 600px; }
.w-72 { width: 18rem; }
.h-72 { height: 18rem; }
.-top-20 { top: -5rem; }
.-right-20 { right: -5rem; }
.h-\[340px\] { height: 340px; }
@media (min-width: 1024px) {
	.lg\:gap-14 { gap: 3.5rem; }
	.lg\:col-span-6 { grid-column: span 6 / span 6; }
	.lg\:order-1 { order: 1; }
	.lg\:order-2 { order: 2; }
}



/* ===================================================================
   Blog — index page, single post, newsletter, feedback widget
   =================================================================== */
.lg-hp-field { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }

.lg-newsletter-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.75rem;
	padding: 2.5rem;
}
@media (min-width: 768px) {
	.lg-newsletter-card { padding: 3rem; }
}

/* Popular articles horizontal scroll row */
.lg-popular-row {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: .5rem;
}
.lg-popular-row::-webkit-scrollbar { display: none; }
.lg-popular-card {
	flex: 0 0 auto;
	width: 260px;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 1.5rem;
	text-decoration: none !important;
	transition: border-color .2s ease;
}
.lg-popular-card:hover { border-color: var(--brand); }
.lg-popular-card h3 { color: var(--foreground); font-size: 1rem; font-weight: 700; line-height: 1.4; margin: .9rem 0 1rem; }

/* Category filter pills */
.lg-filter-pill {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .8rem;
	font-weight: 600;
	padding: .5rem 1rem;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: var(--card);
	color: var(--muted-foreground);
	cursor: pointer;
	transition: all .2s ease;
	white-space: nowrap;
}
.lg-filter-pill:hover { border-color: var(--brand); color: var(--foreground); }
.lg-filter-pill.lg-filter-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Category tag badges on cards / single post */
.lg-cat-badge {
	display: inline-flex;
	align-items: center;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .05em;
	padding: .3rem .7rem;
	border-radius: 9999px;
	background: color-mix(in srgb, var(--brand) 12%, var(--background));
	color: var(--brand);
}

/* Blog post card grid */
.lg-post-card { transition: border-color .2s ease, transform .2s ease; }
.lg-post-card:hover { border-color: var(--brand); }
.lg-post-hidden { display: none; }

/* Featured article card */
.lg-featured-post {
	background: var(--background);
	border: 1px solid var(--border);
	border-left: 5px solid var(--brand);
	border-radius: 1.5rem;
	padding: 2.5rem;
	position: relative;
	overflow: hidden;
}
@media (min-width: 768px) {
	.lg-featured-post { padding: 3rem; }
}

/* Single post FAQ / callout reuse lg-hook-box, lg-pullquote-text, lg-faq-q/a already defined */
.lg-numbered-item { display: flex; gap: 1rem; margin: 1.5rem 0; }
.lg-numbered-badge {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: .7rem;
	background: color-mix(in srgb, var(--brand) 10%, transparent);
	color: var(--brand);
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .9rem;
}

/* Feedback widget */
.lg-feedback-btn {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .55rem 1.1rem;
	border-radius: 9999px;
	border: 1px solid var(--border);
	background: var(--card);
	color: var(--foreground);
	font-size: .85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s ease;
}
.lg-feedback-btn:hover { border-color: var(--brand); }
.lg-feedback-btn.lg-feedback-chosen { background: var(--brand); border-color: var(--brand); color: #fff; }
.lg-feedback-btn.lg-feedback-disabled:not(.lg-feedback-chosen) { opacity: .4; cursor: default; }

/* Related posts */
.lg-related-card { transition: border-color .2s ease; }
.lg-related-card:hover { border-color: var(--brand); }

/* Blog page-specific polyfills */
.opacity-\[0\.08\] { opacity: .08; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.h-32 { height: 8rem; }
.pt-14 { padding-top: 3.5rem; }
.pb-8 { padding-bottom: 2rem; }
.my-10 { margin-block: 2.5rem; }
.self-start { align-self: flex-start; }
.h-\[280px\] { height: 280px; }
@media (min-width: 768px) {
	.md\:py-16 { padding-block: 4rem; }
	.md\:w-72 { width: 18rem; }
	.md\:h-\[380px\] { height: 380px; }
}

/* Blog single post — sidebar, TOC, author bio, share buttons, carousel */
.lg-sidebar-sticky { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 1.25rem; }

.lg-sidebar-cta {
	background: var(--foreground);
	border-radius: 1.5rem;
	padding: 1.75rem;
}
.lg-sidebar-cta h3 { color: var(--background); }
.lg-sidebar-cta p { color: color-mix(in srgb, var(--background) 65%, transparent); }

.lg-toc-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	padding: 1.5rem;
	max-height: 60vh;
	overflow-y: auto;
}
.lg-toc-nav { display: flex; flex-direction: column; gap: .1rem; }
.lg-toc-link {
	display: block;
	padding: .55rem .75rem;
	border-left: 2px solid var(--border);
	font-size: .85rem;
	color: var(--muted-foreground);
	text-decoration: none !important;
	transition: border-color .2s ease, color .2s ease, background .2s ease;
	line-height: 1.4;
}
.lg-toc-link:hover { color: var(--foreground); border-left-color: var(--brand); background: color-mix(in srgb, var(--brand) 5%, transparent); }
.lg-toc-link.lg-toc-active { color: var(--brand); font-weight: 600; border-left-color: var(--brand); background: color-mix(in srgb, var(--brand) 6%, transparent); }

.lg-share-btn {
	background: var(--background);
	border: 1px solid var(--border);
	color: var(--foreground);
	font-size: .8rem;
	font-weight: 600;
	padding: .5rem 1rem;
	border-radius: .6rem;
	cursor: pointer;
	transition: border-color .2s ease;
}
.lg-share-btn:hover { border-color: var(--brand); }

.lg-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 9999px;
	background: var(--background);
	border: 1px solid var(--border);
	color: var(--foreground);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: border-color .2s ease;
}
.lg-carousel-arrow:hover { border-color: var(--brand); color: var(--brand); }
.lg-carousel-arrow-left { left: -12px; }
.lg-carousel-arrow-right { right: -12px; }
@media (max-width: 640px) {
	.lg-carousel-arrow { display: none; }
}

/* City page infographics — media reach & outreach funnel graphics */
.lg-graphic-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	padding: 2rem;
}
.lg-funnel-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: .85rem 1.1rem;
	border-radius: .75rem;
	background: var(--muted);
	color: var(--foreground);
	font-size: .8rem;
	font-weight: 600;
	transition: width .4s ease;
	white-space: nowrap;
}
.lg-funnel-accent-0 { background: color-mix(in srgb, var(--brand) 18%, var(--muted)); }
.lg-funnel-accent-1 { background: color-mix(in srgb, var(--brand) 35%, var(--muted)); }
.lg-funnel-accent-2 { background: color-mix(in srgb, var(--brand) 65%, var(--muted)); color: #fff; }
.lg-funnel-brand { background: var(--brand); color: #fff; }
.lg-funnel-value { font-weight: 800; }
.lg-funnel-label { overflow: hidden; text-overflow: ellipsis; }

/* Infographic section polyfills */
.h-auto { height: auto; }
.h-0\.5 { height: .125rem; }
.top-9 { top: 2.25rem; }
.left-\[12\.5\%\] { left: 12.5%; }
.right-\[12\.5\%\] { right: 12.5%; }
.w-\[72px\] { width: 72px; }
.h-\[72px\] { height: 72px; }
.shadow-lg { box-shadow: 0 10px 24px -6px rgba(0,0,0,.18); }
@media (min-width: 768px) {
	.md\:gap-4 { gap: 1rem; }
	.md\:block { display: block; }
}

/* Homepage pain-point cards */
.lg-pain-card { transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease; }
.lg-pain-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 16px 32px -12px rgba(0,0,0,.15); }

/* Homepage "Book a Strategy Call" discovery banner */
.lg-discovery-cta {
	position: relative;
	background: #000;
	border-radius: 1.75rem;
	padding: 3.5rem 2rem;
	overflow: hidden;
}
@media (min-width: 768px) {
	.lg-discovery-cta { padding: 4.5rem 3rem; }
}
.lg-discovery-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 480px;
	height: 240px;
	transform: translate(-50%, -50%);
	background: radial-gradient(ellipse, var(--brand) 0%, transparent 70%);
	opacity: .35;
	filter: blur(40px);
	pointer-events: none;
}
.lg-discovery-glow-right {
	top: 0;
	left: auto;
	right: -80px;
	width: 320px;
	height: 320px;
	transform: none;
	background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
	opacity: .25;
}
.lg-discovery-stat {
	text-align: center;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	.lg-discovery-stat { text-align: left; }
}
.lg-discovery-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: .6rem;
	background: var(--brand);
	color: #fff;
	font-weight: 700;
	font-size: .95rem;
	padding: 1rem 2rem;
	border-radius: 9999px;
	text-decoration: none !important;
	box-shadow: 0 0 0 rgba(31,111,235,0);
	transition: box-shadow .3s ease, transform .3s ease, background .3s ease;
}
.lg-discovery-btn:hover {
	background: var(--brand-dark, var(--brand));
	box-shadow: 0 0 32px 4px color-mix(in srgb, var(--brand) 55%, transparent);
	transform: translateY(-2px);
}

/* Growth curve — SVG line draws itself in on page load */
.lg-growth-line {
	stroke-dasharray: 300;
	stroke-dashoffset: 300;
	animation: lg-draw-line 1.6s ease-out forwards;
	animation-delay: .3s;
}
.lg-growth-fill {
	opacity: 0;
	animation: lg-fade-in .8s ease-out forwards;
	animation-delay: 1.6s;
}
.lg-growth-dot {
	opacity: 0;
	transform-origin: center;
	transform: scale(0);
	animation: lg-pop-in .4s cubic-bezier(.34,1.56,.64,1) forwards;
}
.lg-growth-dot-1 { animation-delay: .3s; }
.lg-growth-dot-2 { animation-delay: 1.1s; }
.lg-growth-dot-3 { animation-delay: 1.7s; }
@keyframes lg-draw-line { to { stroke-dashoffset: 0; } }
@keyframes lg-fade-in { to { opacity: 1; } }
@keyframes lg-pop-in { to { opacity: 1; transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
	.lg-growth-line, .lg-growth-fill, .lg-growth-dot { animation: none; opacity: 1; stroke-dashoffset: 0; transform: scale(1); }
}

/* Progress / funnel bars — width animates in on scroll (JS sets the actual transition) */
.lg-animate-bar { transition: width 1.1s cubic-bezier(.4,0,.2,1); }

/* City page: "Our core specialties" and "Our methods stay white hat" badges */
.lg-specialty-badge {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .8rem;
	font-weight: 600;
	color: var(--foreground);
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 9999px;
	padding: .45rem .9rem;
}
.lg-method-badge {
	display: inline-flex;
	align-items: center;
	font-size: .75rem;
	font-weight: 600;
	color: var(--brand);
	background: color-mix(in srgb, var(--brand) 10%, transparent);
	border-radius: 9999px;
	padding: .4rem .85rem;
}

/* Trusted-by logo strip — infinite sliding marquee, right to left */
.lg-logo-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);
}
.lg-logo-marquee-track {
	display: flex;
	align-items: center;
	gap: 3rem;
	width: max-content;
	animation: lg-logo-scroll 28s linear infinite;
}
.lg-logo-marquee:hover .lg-logo-marquee-track { animation-play-state: paused; }
.lg-logo-item { opacity: .6; transition: opacity .2s ease; flex-shrink: 0; white-space: nowrap; }
.lg-logo-item:hover { opacity: 1; }
@keyframes lg-logo-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.lg-logo-marquee-track { animation: none; }
}

/* Homepage: "Not every site makes the cut" vetting-process section */
.lg-vet-card {
	background: var(--background);
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	padding: 1.5rem;
	transition: border-color .25s ease;
}
.lg-vet-card:hover { border-color: var(--brand); }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.lg-vet-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: .85rem;
	background: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lg-vet-label { display: inline-block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; margin-right: .3rem; }
.lg-vet-label-trap { color: var(--muted-foreground); }
.lg-vet-label-fix { color: var(--brand); }

.lg-vet-promise {
	position: relative;
	background: #0b1220;
	border-radius: 1.75rem;
	padding: 2.25rem;
	overflow: hidden;
}
@media (min-width: 768px) {
	.lg-vet-promise { padding: 2.75rem; }
}
.lg-vet-glow {
	position: absolute;
	top: -60px;
	right: -60px;
	width: 260px;
	height: 260px;
	border-radius: 9999px;
	background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
	opacity: .35;
	filter: blur(30px);
	pointer-events: none;
}
.lg-vet-badge {
	display: inline-flex;
	align-items: center;
	font-size: .7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: #fff;
	background: var(--brand);
	border-radius: 9999px;
	padding: .4rem .9rem;
}
.lg-vet-toggle {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: var(--brand);
	font-weight: 600;
	font-size: .875rem;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
}
.lg-vet-toggle:hover { text-decoration: underline; }
.lg-vet-toggle.lg-vet-open svg { transform: rotate(90deg); }
.lg-vet-toggle svg { transition: transform .2s ease; }

.lg-vet-verified {
	display: flex;
	align-items: center;
	gap: .75rem;
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.25rem;
	padding: 1rem 1.25rem;
	box-shadow: 0 12px 28px -10px rgba(0,0,0,.15);
	margin: -1.5rem 1.5rem 0;
	position: relative;
	z-index: 2;
}
.lg-vet-verified-check {
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 9999px;
	background: var(--brand);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lg-vet-rejected {
	position: relative;
	background: linear-gradient(135deg, var(--brand), var(--brand-dark, var(--brand)));
	border-radius: 1.75rem;
	padding: 2rem;
	margin-top: 1.5rem;
	overflow: hidden;
}
.lg-vet-rejected-glow {
	position: absolute;
	bottom: -50px;
	left: -50px;
	width: 220px;
	height: 220px;
	border-radius: 9999px;
	background: radial-gradient(circle, #fff 0%, transparent 70%);
	opacity: .12;
	filter: blur(20px);
	pointer-events: none;
}
.lg-vet-rejected-badge {
	display: inline-flex;
	align-items: center;
	font-size: .7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--brand);
	background: #fff;
	border-radius: 9999px;
	padding: .4rem .9rem;
}
.lg-vet-ring { position: relative; width: 88px; height: 88px; flex-shrink: 0; }
.lg-vet-ring-label {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 800;
	font-size: 1.1rem;
	line-height: 1.1;
}
.lg-vet-ring-label span { display: block; font-size: .6rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; opacity: .75; margin-top: .1rem; }

/* Our Team page */
.lg-team-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 1.5rem;
	padding: 1.75rem;
	transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.lg-team-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(0,0,0,.15); }
.lg-team-destination {
	display: flex;
	align-items: center;
	gap: .5rem;
	background: color-mix(in srgb, var(--brand) 6%, transparent);
	border-radius: .75rem;
	padding: .65rem .9rem;
	font-size: .8rem;
	color: var(--foreground);
}
.lg-team-destination strong { font-weight: 600; }

/* Footer: payment badges, award badge, quality-guarantee badge */
.lg-pay-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: .4rem;
	overflow: hidden;
	line-height: 0;
	box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.lg-award-badge-lg {
	height: 130px;
	width: auto;
	flex-shrink: 0;
	filter: drop-shadow(0 4px 14px rgba(0,0,0,.35));
}
.lg-award-badge-lg:hover {
	transform: translateY(-2px);
	transition: transform .2s ease;
}

/* Homepage "Latest from the blog" — horizontal scroll row */
.lg-blog-scroll-row {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding-bottom: .25rem;
}
.lg-blog-scroll-row::-webkit-scrollbar { display: none; }
.lg-blog-scroll-card {
	flex: 0 0 auto;
	width: 320px;
}
@media (max-width: 640px) {
	.lg-blog-scroll-card { width: 82vw; }
}

/* Guest posting page — hero trust pills */
.lg-hero-pill {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .8rem;
	font-weight: 600;
	color: var(--background);
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 9999px;
	padding: .5rem .9rem;
}
.lg-hero-pill-light {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	font-size: .8rem;
	font-weight: 600;
	color: var(--foreground);
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: 9999px;
	padding: .5rem .9rem;
}

/* Footer WhatsApp button */
.lg-whatsapp-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	background: #25D366;
	color: #0b1220;
	font-weight: 700;
	font-size: .85rem;
	padding: .55rem 1.1rem;
	border-radius: 9999px;
	text-decoration: none !important;
	transition: transform .2s ease, box-shadow .2s ease;
}
.lg-whatsapp-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px -6px rgba(37,211,102,.5);
}
