/**
 * Local Lift SEO — Marketing design system
 * 8px grid · WCAG 2.1 AA contrast · mobile-first
 */

*,
*::before,
*::after {
	box-sizing: border-box;
}

:root {
	--ll-primary: #0066ff;
	--ll-primary-dark: #0052cc;
	--ll-navy: #020c2a;
	--ll-surface: #e8eef8;
	--ll-surface-light: #f4f7fc;
	--ll-success: #00a32a;
	--ll-warning: #dba617;
	--ll-error: #d63638;
	--ll-radius: 10px;
	--ll-radius-lg: 12px;
	--ll-shadow: 0 4px 24px rgba(2, 12, 42, 0.08);
	--ll-shadow-hover: 0 8px 32px rgba(2, 12, 42, 0.12);
	--ll-hero-gradient: linear-gradient(135deg, #0066ff 0%, #004ecc 48%, #020c2a 100%);
	--ll-max: 1200px;
	--ll-header-bg: #fefefe;
}

/* ── Layout ── */
.ll-section { padding-block: clamp(3rem, 6vw, 5rem); }
.ll-section--tight { padding-block: clamp(1rem, 4vw, 1rem); }
.ll-container { max-width: var(--ll-max); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); box-sizing: border-box; width: 100%; }
@media (max-width: 640px) {
	.ll-section { padding-block: clamp(2.25rem, 7vw, 2.75rem); }
	.ll-section--tight { padding-block: 0.875rem; }
	.ll-container { padding-inline: 1rem; }
	.ll-btn-row,
	.ll-section-cta,
	.ll-how-it-works__actions,
	.ll-compare-teaser__footer .ll-btn-row,
	.ll-cta-band .ll-btn-row,
	.ll-free-features__actions,
	.ll-pro-features__actions,
	.ll-faq-section__links,
	.ll-performance__footer .ll-btn {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}
	.ll-btn-row .ll-btn,
	.ll-section-cta .ll-btn,
	.ll-how-it-works__actions .ll-btn,
	.ll-compare-teaser__footer .ll-btn-row .ll-btn,
	.ll-cta-band .ll-btn-row .ll-btn,
	.ll-free-features__actions .ll-btn,
	.ll-pro-features__actions .ll-btn,
	.ll-faq-section__links .ll-btn,
	.ll-performance__footer .ll-btn {
		display: flex;
		width: 100%;
		margin: 0 !important;
		justify-content: center;
	}
}
.ll-text-center { text-align: center; }
.ll-text-muted { color: var(--wp--preset--color--muted); }

/* Classic theme: gutters live on .ll-container, not body (avoids header overflow). */
html,
body {
	--wp--style--root--padding-left: 0;
	--wp--style--root--padding-right: 0;
	max-width: 100%;
	overflow-x: clip;
}
body {
	padding-inline: 0;
}

/* ── Header ── */
.locallift-header {
	position: sticky;
	top: 0;
	z-index: 100;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	background: var(--ll-header-bg);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	padding: 10px 0;
}
.locallift-header.is-scrolled {
	border-bottom-color: var(--ll-surface);
	box-shadow: 0 10px 30px rgba(2, 12, 42, 0.06);
}
.locallift-header.is-menu-open {
	overflow-y: auto;
	overflow-x: clip;
	z-index: 110;
	max-height: 100dvh;
	-webkit-overflow-scrolling: touch;
	border-bottom-color: var(--ll-surface);
	box-shadow: 0 10px 30px rgba(2, 12, 42, 0.06);
}
.ll-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	max-width: var(--ll-max);
	min-width: 0;
	min-height: 75px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
}
.ll-header__brand {
	display: flex;
	align-items: center;
	flex-shrink: 1;
	min-width: 0;
}
.ll-brand {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	min-width: 0;
	text-decoration: none;
	color: var(--ll-navy);
}
.ll-brand:hover {
	opacity: 0.85;
}
.ll-brand--logo .ll-brand__logo {
	display: block;
	height: 48px;
	width: auto;
	max-width: min(100%, 280px);
	object-fit: contain;
	object-position: left center;
}
.ll-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-shrink: 0;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--ll-surface);
	border-radius: 12px;
	background: #fff;
	color: var(--ll-navy);
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ll-header__toggle:hover {
	border-color: rgba(0, 102, 255, 0.35);
	box-shadow: 0 4px 14px rgba(0, 102, 255, 0.12);
}
.ll-header__toggle:focus-visible {
	outline: 2px solid var(--ll-primary);
	outline-offset: 2px;
}
.ll-header__toggle-bar {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.locallift-header.is-menu-open .ll-header__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.locallift-header.is-menu-open .ll-header__toggle-bar:nth-child(2) {
	opacity: 0;
}
.locallift-header.is-menu-open .ll-header__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
.ll-header__actions {
	display: flex;
	align-items: center;
	gap: 2rem;
}
.ll-primary-nav-wrap {
	display: flex;
	align-items: center;
}
.ll-primary-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ll-primary-nav li {
	margin: 0;
}
.ll-primary-nav a {
	font-size: 0.9375rem;
	font-weight: 500;
	color: #5b6b7c;
	text-decoration: none;
	transition: color 0.2s ease;
}
.ll-primary-nav a:hover,
.ll-primary-nav .current-menu-item > a,
.ll-primary-nav .current_page_item > a {
	color: var(--ll-navy);
}
.ll-header__cta {
	font-size: 0.875rem;
}
.ll-header__cart {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.ll-header__cart .wp-block-edd-cart,
.ll-header__cart .edd-blocks__cart {
	margin: 0;
}
.ll-header__cart .edd-blocks__cart-mini a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.65rem;
	border-radius: var(--ll-radius);
	color: var(--ll-navy);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}
.ll-header__cart .edd-blocks__cart-mini a:hover {
	background: var(--ll-surface-light);
	color: var(--ll-primary);
}
.ll-header__cart .edd-blocks__cart-mini svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}
.ll-header__cart .edd-blocks-cart__mini-quantity {
	line-height: 1;
}
@media (max-width: 960px) {
	.ll-header__inner {
		flex-wrap: nowrap;
		min-height: auto;
		padding-block: 0.75rem;
		padding-inline: 1rem;
		gap: 0.75rem;
	}
	.ll-header__toggle {
		display: inline-flex;
		margin-left: auto;
	}
	.ll-header__actions {
		display: none;
	}
	.locallift-header.is-menu-open .ll-header__inner {
		flex-wrap: wrap;
		align-content: flex-start;
	}
	.locallift-header.is-menu-open .ll-header__brand {
		flex: 1 1 auto;
		min-width: 0;
	}
	.locallift-header.is-menu-open .ll-header__toggle {
		flex-shrink: 0;
		margin-left: auto;
	}
	.locallift-header.is-menu-open .ll-header__actions {
		display: flex;
		position: static;
		order: 3;
		flex: 1 1 100%;
		width: 100%;
		margin-top: 0.75rem;
		flex-direction: column;
		align-items: stretch;
		gap: 1.25rem;
		padding: 1.25rem;
		background: var(--ll-header-bg);
		border: 1px solid var(--ll-surface);
		border-radius: var(--ll-radius-lg);
		box-shadow: var(--ll-shadow);
	}
	.ll-primary-nav-wrap {
		width: 100%;
	}
	.ll-primary-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}
	.ll-primary-nav li {
		width: 100%;
		border-bottom: 1px solid var(--ll-surface);
	}
	.ll-primary-nav li:last-child {
		border-bottom: 0;
	}
	.ll-primary-nav a {
		display: block;
		width: 100%;
		padding: 0.875rem 0;
		font-size: 1rem;
	}
	.ll-header__cta {
		width: 100%;
		justify-content: center;
	}
	.ll-brand--logo .ll-brand__logo {
		height: 40px;
		max-width: min(72vw, 240px);
	}
}

/* ── Buttons (hero sizing is the site default) ── */
.ll-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.55rem 1.35rem;
	border-radius: var(--ll-radius);
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.2;
	text-decoration: none;
	transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
	cursor: pointer;
	border: 2px solid transparent;
	box-sizing: border-box;
}
.ll-btn-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.85rem;
}
.ll-btn-row--start { justify-content: flex-start; }
.ll-btn-row--stretch { width: 100%; }
.ll-btn:focus-visible {
	outline: 2px solid var(--ll-primary);
	outline-offset: 2px;
}
.ll-btn--primary {
	background: var(--ll-primary);
	color: #fff !important;
}
.ll-btn--primary:hover {
	background: var(--ll-primary-dark);
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: var(--ll-shadow-hover);
}
.ll-btn--free {
	background: var(--ll-success);
	color: #fff !important;
	border-color: transparent;
}
.ll-btn--free:hover {
	background: #008a24;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(0, 163, 42, 0.28);
}
.ll-btn--free:focus-visible {
	outline-color: var(--ll-success);
}
.ll-btn--secondary {
	background: transparent;
	color: var(--ll-navy) !important;
	border-color: var(--ll-navy);
}
.ll-btn--secondary:hover {
	background: var(--ll-surface-light);
}
.ll-btn--ghost-white {
	background: rgba(255,255,255,0.12);
	color: #fff !important;
	border-color: rgba(255,255,255,0.4);
}
.ll-btn--ghost-white:hover {
	background: rgba(255,255,255,0.2);
}
.locallift-header .ll-header__cta.ll-btn {
	min-height: 44px;
	padding: 0.55rem 1.35rem;
	font-size: 0.9375rem;
	line-height: 1.2;
}
.wp-block-button.is-style-ll-secondary .wp-block-button__link {
	background: transparent !important;
	color: var(--ll-navy) !important;
	border: 2px solid var(--ll-navy);
	border-radius: var(--ll-radius);
	min-height: 44px;
	padding: 0.55rem 1.35rem;
	font-size: 0.9375rem;
	line-height: 1.2;
}
.wp-block-button.is-style-ll-ghost-white .wp-block-button__link {
	background: rgba(255,255,255,0.12) !important;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,0.4);
	border-radius: var(--ll-radius);
	min-height: 44px;
	padding: 0.55rem 1.35rem;
	font-size: 0.9375rem;
	line-height: 1.2;
}


/* Hero + dashboard preview → homepage-block/hero-marketing/style.css */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* Hero mobile CTA → homepage-block/hero-marketing/style.css */
.ll-section-eyebrow {
	display: block;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ll-primary);
	margin-bottom: 0.75rem;
}
.ll-section-intro {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.5rem;
}
.ll-section-intro p { color: #5b6b7c; margin: 0.75rem 0 0; }

/* Homepage blocks → homepage-block/problem-solution/style.css */
.ll-gap__tier-badge {
	display: inline-flex;
	align-items: center;
	padding: 0.12rem 0.5rem;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	line-height: 1.35;
	flex-shrink: 0;
}
.ll-gap__tier-badge--free {
	color: var(--ll-success);
	background: #e6f4ea;
	border: 1px solid #c8e6c9;
}
.ll-gap__tier-badge--pro {
	color: var(--ll-primary);
	background: #e8f0ff;
	border: 1px solid #c5d9ff;
}

.ll-section-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.85rem;
	text-align: center;
	margin-top: 2rem;
}
/* Homepage blocks → homepage-block/pricing-snapshot/style.css */
.ll-score-ring {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 8px solid var(--ll-surface);
	border-top-color: var(--ll-primary);
	border-right-color: var(--ll-success);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.25rem;
}
.ll-score-ring__num {
	font-size: 2rem;
	font-weight: 700;
	color: var(--ll-navy);
	line-height: 1;
	font-family: "DM Sans", sans-serif;
}
.ll-score-ring__label {
	font-size: 0.6875rem;
	color: var(--wp--preset--color--muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.ll-checklist { list-style: none; padding: 0; margin: 0; }
.ll-checklist li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0;
	font-size: 0.875rem;
	color: var(--ll-navy);
	border-bottom: 1px solid var(--ll-surface);
}
.ll-checklist li::before {
	content: "✓";
	color: var(--ll-success);
	font-weight: 700;
	flex-shrink: 0;
}
.ll-checklist li.ll-checklist__pending::before {
	content: "○";
	color: var(--ll-warning);
}

/* ── Cards ── */
.ll-card {
	background: #fff;
	border: 1px solid var(--ll-surface);
	border-radius: var(--ll-radius-lg);
	padding: 1.5rem;
	transition: transform 0.2s, box-shadow 0.2s;
	height: 100%;
}
.ll-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ll-shadow-hover);
}
.ll-card__icon {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: var(--ll-surface-light);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}
.ll-badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	background: var(--ll-surface-light);
	color: var(--ll-navy);
	border: 1px solid var(--ll-surface);
}
.ll-badge--pro { background: #e8f0ff; color: var(--ll-primary); border-color: #c5d9ff; }

/* Trust bar → homepage-block/trust-bar/style.css */

/* ── Grids ── */
.ll-grid-2 { display: grid; gap: 1.5rem; }
.ll-grid-3 { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .ll-grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .ll-grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Homepage blocks → homepage-block/features-free-grid/style.css + features-pro-grid/style.css */

/* ── Comparison table ── */
.ll-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ll-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}
.ll-table th,
.ll-table td {
	padding: 0.875rem 1rem;
	text-align: left;
	border-bottom: 1px solid var(--ll-surface);
}
.ll-table th { background: var(--ll-surface-light); font-weight: 600; }
.ll-table .ll-check { color: var(--ll-success); font-weight: 700; }
.ll-table .ll-dash { color: var(--wp--preset--color--muted); }
.ll-table .ll-table__highlight { background: #f4f8ff; }
.ll-table th.ll-table__highlight { background: #e8f0ff; color: var(--ll-primary); }
.ll-table--compare th.ll-table__highlight,
.ll-table--compare td.ll-table__highlight {
	position: relative;
	box-shadow: inset 3px 0 0 var(--ll-primary);
}
.ll-table--compare tbody tr:hover td {
	background: rgba(255, 255, 255, 0.6);
}
.ll-table--compare tbody tr:hover td.ll-table__highlight {
	background: #eef4ff;
}

/* Homepage blocks → homepage-block/comparison-teaser/style.css */

/* Homepage blocks → homepage-block/performance-architecture/style.css + how-it-works/style.css */


/* ── FAQ ── */
.ll-faq details {
	border: 1px solid var(--ll-surface);
	border-radius: var(--ll-radius);
	margin-bottom: 0.75rem;
	background: #fff;
}
.ll-faq summary {
	padding: 1rem 1.25rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
}
.ll-faq summary::-webkit-details-marker { display: none; }
.ll-faq summary::after {
	content: "+";
	float: right;
	font-weight: 400;
	color: var(--ll-primary);
}
.ll-faq details[open] summary::after { content: "−"; }
.ll-faq details[open] summary { border-bottom: 1px solid var(--ll-surface); }
.ll-faq .ll-faq__body { padding: 1rem 1.25rem; color: var(--wp--preset--color--muted); }

/* Homepage blocks → homepage-block/faq-home/style.css */
/* Homepage blocks → homepage-block/final-cta/style.css */

/* Inner page masthead (gradient) */
.ll-masthead-innerpage {
	position: relative;
	padding: 0;
	overflow: hidden;
}
.ll-masthead-innerpage__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(120deg, #2250cf 0%, #2566e4 80%, #143fa1 100%);
	opacity: 0.92;
}
.ll-masthead-innerpage__content {
	position: relative;
	z-index: 2;
	max-width: 740px;
	margin-inline: auto;
	padding-block: 4.5rem 3.5rem;
	text-align: center;
}
.ll-masthead-innerpage__title,
.ll-masthead-innerpage__content .wp-block-post-title {
	margin: 0 0 0.65em;
	font-family: "DM Sans", sans-serif;
	font-size: clamp(2.25rem, 5vw, 2.75rem);
	color: #fff;
}
.ll-masthead-innerpage__excerpt,
.ll-masthead-innerpage__content .wp-block-post-excerpt {
	margin: 0;
	font-size: 1.17rem;
	color: #e6efff;
}
.ll-masthead-innerpage__excerpt p,
.ll-masthead-innerpage__content .wp-block-post-excerpt p {
	margin: 0;
	color: inherit;
}
@media (max-width: 640px) {
	.ll-masthead-innerpage__content {
		padding-block: 3rem 2.5rem;
	}
	.ll-masthead-innerpage__title,
	.ll-masthead-innerpage__content .wp-block-post-title {
		font-size: clamp(1.85rem, 7vw, 2.25rem);
	}
	.ll-masthead-innerpage__excerpt,
	.ll-masthead-innerpage__content .wp-block-post-excerpt {
		font-size: 1.0625rem;
	}
}

.ll-post-excerpt {
	margin: 0 0 1.5rem;
	font-size: 1.125rem;
	line-height: 1.6;
	color: #5b6b7c;
}
.ll-post-excerpt p {
	margin: 0;
}

/* ── Pricing ── */
.ll-pricing-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .ll-pricing-grid { grid-template-columns: 1fr 1fr; max-width: 900px; margin-inline: auto; } }
.ll-pricing-card {
	border: 2px solid var(--ll-surface);
	border-radius: var(--ll-radius-lg);
	padding: 2rem;
}
.ll-pricing-card--pro {
	border-color: var(--ll-primary);
	box-shadow: var(--ll-shadow);
}
.ll-pricing-card__price {
	font-size: 2.5rem;
	font-weight: 700;
	font-family: "DM Sans", sans-serif;
	color: var(--ll-navy);
}
.ll-pricing-card--pro .ll-pricing-card__price {
	color: var(--ll-primary);
}
.ll-pro-price__period,
.ll-pricing-card__price > span {
	font-size: 1rem;
	font-weight: 600;
	color: #5b6b7c;
	letter-spacing: 0;
}

/* ── Footer ── */
.locallift-footer {
	background: var(--ll-navy);
	color: rgba(255,255,255,0.85);
	padding-block: clamp(3rem, 6vw, 4rem) clamp(2rem, 4vw, 3rem);
}
.ll-footer__inner {
	max-width: var(--ll-max);
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 2rem);
}
.ll-footer__title {
	font-size: 1.125rem;
	color: #fff;
}
.ll-footer__brand {
	display: inline-block;
	text-decoration: none;
}
.ll-footer__brand:hover {
	opacity: 0.92;
}
.ll-footer__brand .ll-footer__logo {
	display: block;
	height: 40px;
	width: auto;
	max-width: min(100%, 280px);
	object-fit: contain;
	object-position: left center;
}
.ll-footer__tagline {
	margin: 0.75rem 0 0;
	font-size: 0.875rem;
	opacity: 0.85;
}
.ll-footer__heading {
	display: block;
	margin-bottom: 0.75rem;
	color: #fff;
}
.ll-footer-nav {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.875rem;
}
.ll-footer__divider {
	border: 0;
	border-top: 1px solid rgba(255,255,255,0.15);
	margin: 2rem 0 1.5rem;
}
.ll-footer__copy {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.6);
}
.locallift-footer a { color: #fff; text-decoration: none; }
.locallift-footer a:hover { color: var(--ll-primary); }
.ll-footer-grid {
	display: grid;
	gap: 2rem;
}
@media (min-width: 768px) { .ll-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

/* ── Contact form ── */
.ll-form { max-width: 560px; }
.ll-form label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.375rem;
	font-size: 0.875rem;
}
.ll-form input,
.ll-form textarea,
.ll-form select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--ll-surface);
	border-radius: var(--ll-radius);
	font-size: 1rem;
	font-family: inherit;
	margin-bottom: 1rem;
}
.ll-form input:focus,
.ll-form textarea:focus {
	outline: 2px solid var(--ll-primary);
	outline-offset: 0;
	border-color: var(--ll-primary);
}
.ll-form .ll-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.ll-form__notice { padding: 0.75rem 1rem; border-radius: var(--ll-radius); margin-bottom: 1rem; }
.ll-form__notice--success { background: #e6f4ea; color: var(--ll-success); }
.ll-form__notice--error { background: #fce8e8; color: var(--ll-error); }

/* ── Cookie notice ── */
.ll-cookie {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100%;
	z-index: 9999;
	background: var(--ll-navy);
	color: #fff;
	padding: 1rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.ll-cookie[hidden] { display: none; }
.ll-cookie p { margin: 0; font-size: 0.875rem; flex: 1; min-width: 200px; }
.ll-cookie a { color: #fff; text-decoration: underline; }

.ll-card__meta {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ll-primary);
	margin: 0 0 0.5rem;
}
.ll-pro-note {
	max-width: 640px;
	margin: 0 auto 2rem;
	padding: 1rem 1.25rem;
	text-align: center;
	font-size: 0.9375rem;
	color: #5b6b7c;
	background: var(--ll-surface-light);
	border: 1px solid var(--ll-surface);
	border-radius: var(--ll-radius);
}
.ll-matrix-link {
	text-align: center;
	margin-top: 1.5rem;
	font-size: 0.9375rem;
}
.ll-matrix-link a { font-weight: 600; }

/* ── Product UI previews (features page) ── */
.ll-ui-preview {
	border-radius: var(--ll-radius-lg);
	overflow: hidden;
	box-shadow: var(--ll-shadow);
	border: 1px solid var(--ll-surface);
	background: #fff;
}
.ll-ui-preview__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	background: #f0f2f5;
	border-bottom: 1px solid var(--ll-surface);
}
.ll-ui-preview__bar span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ddd;
}
.ll-ui-preview__bar span:nth-child(1) { background: #ff5f57; }
.ll-ui-preview__bar span:nth-child(2) { background: #febc2e; }
.ll-ui-preview__bar span:nth-child(3) { background: #28c840; }
.ll-ui-preview__body {
	padding: 1rem;
	background: #f6f7f7;
	min-height: 200px;
	font-size: 0.75rem;
	color: var(--ll-navy);
}
.ll-ui-field {
	background: #fff;
	border: 1px solid var(--ll-surface);
	border-radius: 6px;
	padding: 0.5rem 0.75rem;
	margin-bottom: 0.5rem;
}
.ll-ui-field label {
	display: block;
	font-size: 0.625rem;
	font-weight: 600;
	color: #5b6b7c;
	margin-bottom: 0.25rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.ll-ui-field .ll-ui-value {
	font-size: 0.8125rem;
	font-weight: 500;
}
.ll-ui-status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	font-size: 0.6875rem;
	font-weight: 600;
}
.ll-ui-status--ok { background: #e6f4ea; color: var(--ll-success); }
.ll-ui-status--warn { background: #fef8e7; color: var(--ll-warning); }
.ll-ui-nap-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--ll-surface);
	font-size: 0.75rem;
}
.ll-ui-map {
	height: 80px;
	background: linear-gradient(135deg, #d4e4f7, #e8eef8);
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #5b6b7c;
	font-size: 0.6875rem;
	margin-top: 0.5rem;
}
.ll-ui-breadcrumbs {
	margin: 0.75rem 0 0;
	padding: 0.625rem 0.75rem;
	background: #fff;
	border: 1px solid var(--ll-surface);
	border-radius: 6px;
	font-size: 0.75rem;
	color: #5b6b7c;
}
.ll-ui-breadcrumbs strong { color: var(--ll-navy); }

/* Skip link */
.ll-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.ll-skip-link:focus {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0.75rem 1.5rem;
	overflow: visible;
	clip: auto;
	white-space: normal;
	background: var(--ll-primary);
	color: #fff;
}
