/* ===========================================================================
   /commercial-landscape-maintenance/ — page-landscape-maintenance.php
   + fragments/landscape-maintenance/content.php
   High-fidelity build from the Claude Design handoff (landscape-maintenance.jsx).
   Brand-green palette (home tokens), scoped to .lecm-lm so nothing leaks.
=========================================================================== */

.lecm-lm {
	--green:       #00A94F;
	--green-hov:   #008C40;
	--green-tint:  #E6F6EC;
	--green-dark:  #1F4D2E;
	--mint:        #7FD8A8;
	--ink:         #1F2A1A;
	--ink-warm:    #22301B;
	--text-2:      #3A4A2E;
	--muted:       #7A7A7A;
	--rule-soft:   #B5BCAE;
	--border:      #E5E7E0;
	--surface:     #FFFFFF;
	--bg:          #FAFAF7;

	display: block;
	color: var(--ink);
	background: var(--bg);
	font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

.lecm-lm img { max-width: 100%; display: block; }

.lecm-lm h1,
.lecm-lm h2 {
	margin: 0;
	font-family: 'Manrope', system-ui, sans-serif !important;
	font-weight: 800 !important;
	color: inherit;
}

.lecm-lm a { text-decoration: none; }

.lecm-lm__shell {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 48px;
	width: 100%;
}

.lecm-lm__eyebrow {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--green);
	line-height: 1.4;
	margin-bottom: 14px;
}
.lecm-lm__eyebrow--on-dark  { color: var(--green); margin-bottom: 22px; }
.lecm-lm__eyebrow--faint    { color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.lecm-lm__eyebrow--on-green { color: rgba(255,255,255,0.75); }
.lecm-lm__eyebrow--mint     { color: var(--mint); margin-bottom: 12px; }

/* shared buttons -------------------------------------------------------- */
.lecm-lm__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 26px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 4px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background-color .16s ease, color .16s ease, transform .16s ease;
}
/* The .lecm-lm prefix lifts these above Elementor's global kit rules
   `.elementor-kit-6 a` / `a:hover`, which otherwise repaint the anchor-based
   buttons' text (classes beat the kit's class+element+pseudo count). */
.lecm-lm .lecm-lm__btn--primary { background: var(--green); color: #fff; }
.lecm-lm .lecm-lm__btn--primary:hover,
.lecm-lm .lecm-lm__btn--primary:focus { background: var(--green-hov); color: #fff; }
.lecm-lm .lecm-lm__btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.lecm-lm .lecm-lm__btn--ghost:hover,
.lecm-lm .lecm-lm__btn--ghost:focus { background: rgba(255,255,255,0.08); color: #fff; }
.lecm-lm .lecm-lm__btn--white { padding: 12px 20px; background: #fff; color: var(--ink); font-size: 13px; }
.lecm-lm .lecm-lm__btn--white:hover,
.lecm-lm .lecm-lm__btn--white:focus { transform: translateY(-1px); color: var(--ink); }
.lecm-lm__arrow { flex-shrink: 0; }

/* =========================================================================
   1. Hero
========================================================================= */
.lecm-lm__hero {
	position: relative;
	background: linear-gradient(135deg, #1F2A1A 0%, #2D3D24 100%);
	color: #fff;
	padding: 84px 0 96px;
	overflow: hidden;
}
.lecm-lm__leaves {
	position: absolute;
	inset: 0;
	opacity: 0.11;
	color: #fff;
	pointer-events: none;
}
.lecm-lm__leaf { position: absolute; line-height: 0; }
.lecm-lm__hero-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 88% 18%, rgba(0,169,79,0.20), transparent 55%);
	pointer-events: none;
}
.lecm-lm__hero-inner { position: relative; }

.lecm-lm__hero-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 36px;
}
.lecm-lm__breadcrumb {
	font-size: 12px;
	letter-spacing: 0.04em;
	color: rgba(255,255,255,0.55);
	display: flex;
	align-items: center;
	gap: 10px;
}
/* Explicit colors on both states so the kit link rules can't tint them. */
.lecm-lm .lecm-lm__breadcrumb a { color: rgba(255,255,255,0.85); }
.lecm-lm .lecm-lm__breadcrumb a:hover,
.lecm-lm .lecm-lm__breadcrumb a:focus { color: #fff; }
.lecm-lm__breadcrumb > span:last-child { color: #fff; }
.lecm-lm__crumb-sep { opacity: 0.5; color: rgba(255,255,255,0.55); }

.lecm-lm__status {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(0,169,79,0.14);
	border: 1px solid rgba(0,169,79,0.40);
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.02em;
}
.lecm-lm__status-dot {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: var(--green);
	box-shadow: 0 0 0 4px rgba(0,169,79,0.26);
	flex-shrink: 0;
}

.lecm-lm__hero-title {
	font-size: 88px !important;
	line-height: 0.94 !important;
	letter-spacing: -0.028em;
	max-width: 1020px;
	color: #fff !important;
}
.lecm-lm__accent { color: var(--green); }

.lecm-lm__hero-intro {
	margin: 28px 0 0;
	font-size: 19px;
	line-height: 1.55;
	color: rgba(255,255,255,0.78);
	max-width: 660px;
}

.lecm-lm__hero-cta {
	margin-top: 36px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

.lecm-lm__stats {
	margin-top: 76px;
	padding-top: 28px;
	border-top: 1px solid rgba(255,255,255,0.12);
	display: grid;
	grid-template-columns: repeat(4, 1fr) 1.5fr;
	gap: 24px;
	align-items: center;
}
.lecm-lm__stat-v {
	font-size: 40px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	line-height: 1;
}
.lecm-lm__stat-l {
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	margin-top: 8px;
	letter-spacing: 0.04em;
}

.lecm-lm__managed { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 28px; }
.lecm-lm__managed-head { display: flex; align-items: baseline; gap: 10px; }
.lecm-lm__managed-v { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.lecm-lm__managed-unit { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.7); }
.lecm-lm__managed-chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.lecm-lm__managed-chip {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.18);
	font-size: 12px;
	letter-spacing: 0.01em;
	color: rgba(255,255,255,0.82);
}
.lecm-lm__managed-chip strong { font-weight: 700; color: #fff; }

.lecm-lm__certs {
	margin-top: 48px;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.lecm-lm__certs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 36px;
	color: rgba(255,255,255,0.82);
	font-size: 16px;
	font-weight: 700;
}
.lecm-lm__cert { display: flex; align-items: center; gap: 10px; }
.lecm-lm__cert svg { color: var(--green); flex-shrink: 0; }

/* =========================================================================
   2. Photo strip
========================================================================= */
.lecm-lm__strip {
	background: var(--ink);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.lecm-lm__strip-cell {
	position: relative;
	height: 380px;
	overflow: hidden;
	background: var(--ink);
	margin: 0;
}
.lecm-lm__strip-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.lecm-lm__strip-img--bottom { object-position: center bottom; }
.lecm-lm__strip-veil {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to top, rgba(15,20,10,0.82) 0%, rgba(15,20,10,0.18) 48%, transparent 78%);
}
.lecm-lm__strip-cap {
	position: absolute;
	left: 32px;
	bottom: 30px;
	right: 32px;
	pointer-events: none;
	color: #fff;
}
.lecm-lm__strip-kicker {
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	font-weight: 700;
	opacity: 0.8;
	margin-bottom: 8px;
}
.lecm-lm__strip-title {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
	text-wrap: balance;
}

/* =========================================================================
   3. Commitments
========================================================================= */
.lecm-lm__commit {
	background: var(--surface);
	padding: 104px 0;
	border-bottom: 1px solid var(--border);
}
.lecm-lm__commit-head {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 80px;
	margin-bottom: 64px;
	align-items: start;
}
.lecm-lm__commit-title {
	font-size: 48px !important;
	line-height: 1.02 !important;
	letter-spacing: -0.025em;
	color: var(--ink) !important;
}
.lecm-lm__commit-lede { padding-top: 8px; }
.lecm-lm__commit-lede p {
	margin: 0;
	font-size: 19px;
	color: var(--text-2);
	line-height: 1.6;
	font-weight: 500;
}
.lecm-lm__commit-lede .lecm-lm__commit-sub {
	margin-top: 18px !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	color: var(--muted) !important;
	line-height: 1.7 !important;
}

.lecm-lm__commit-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--border);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
}
.lecm-lm__commit-card {
	background: var(--surface);
	padding: 32px 28px 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-height: 220px;
}
.lecm-lm__commit-icon {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: var(--green-tint);
	color: var(--green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.lecm-lm__commit-num {
	font-size: 11px;
	color: var(--muted);
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 6px;
}
.lecm-lm__commit-t {
	font-size: 17px;
	font-weight: 700;
	color: var(--ink);
	letter-spacing: -0.01em;
	line-height: 1.25;
}
.lecm-lm__commit-d {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.55;
}
.lecm-lm__commit-card--result {
	background: var(--green-dark);
	color: #fff;
	justify-content: space-between;
}
.lecm-lm__result-t {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.lecm-lm__result-foot {
	margin-top: 24px;
	padding-top: 18px;
	border-top: 1px solid rgba(255,255,255,0.14);
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	letter-spacing: 0.04em;
}

/* =========================================================================
   4. Services (3×3)
========================================================================= */
.lecm-lm__services {
	background: var(--bg);
	padding: 104px 0;
}
.lecm-lm__services-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
	flex-wrap: wrap;
	gap: 24px;
}
.lecm-lm__services-title {
	font-size: 44px !important;
	line-height: 1.04 !important;
	letter-spacing: -0.022em;
	color: var(--ink) !important;
	max-width: 720px;
}
.lecm-lm__services-title-muted { color: var(--muted); }
.lecm-lm__services-lede {
	margin: 0;
	font-size: 15px;
	color: var(--muted);
	max-width: 360px;
	line-height: 1.6;
}

.lecm-lm__services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.lecm-lm__svc {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.lecm-lm__svc:hover {
	border-color: #BFE8CF;
	box-shadow: 0 14px 30px -22px rgba(31,42,26,0.35);
	transform: translateY(-2px);
}
.lecm-lm__svc-photo {
	display: block;
	position: relative;
	height: 180px;
	overflow: hidden;
	background: var(--green-tint);
}
.lecm-lm__svc-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.lecm-lm__svc:hover .lecm-lm__svc-img { transform: scale(1.04); }
.lecm-lm__svc-photo--zoom .lecm-lm__svc-img { transform: scale(1.35); }
.lecm-lm__svc:hover .lecm-lm__svc-photo--zoom .lecm-lm__svc-img { transform: scale(1.4); }
/* Frosted icon badge + veil over the photo (same treatment as the snow page). */
.lecm-lm__svc-veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to top, rgba(15,20,10,0.55) 0%, transparent 38%),
		radial-gradient(circle at 75% 25%, rgba(255,255,255,0.10), transparent 55%);
	pointer-events: none;
}
.lecm-lm__svc-badge {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: rgba(18,30,16,0.42);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255,255,255,0.30);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.lecm-lm__svc-num {
	position: absolute;
	right: 20px;
	top: 20px;
	font-size: 11px;
	color: rgba(255,255,255,0.85);
	font-weight: 800;
	letter-spacing: 0.1em;
	text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.lecm-lm__svc-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px 28px 26px;
	flex: 1;
}
/* Explicit colors on rest AND hover — the kit's a / a:hover rules tie bare
   classes and would repaint the card text kit-blue. */
.lecm-lm .lecm-lm__svc .lecm-lm__svc-t { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -0.015em; }
.lecm-lm .lecm-lm__svc .lecm-lm__svc-d { font-size: 13.5px; color: var(--muted); line-height: 1.6; flex: 1; }
.lecm-lm .lecm-lm__svc .lecm-lm__svc-link,
.lecm-lm .lecm-lm__svc:hover .lecm-lm__svc-link,
.lecm-lm .lecm-lm__svc:focus .lecm-lm__svc-link { color: var(--green); }
.lecm-lm__svc-link {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* =========================================================================
   5. Season timeline
========================================================================= */
.lecm-lm__seasons {
	background: var(--ink-warm);
	color: #fff;
	padding: 104px 0;
	position: relative;
	overflow: hidden;
}
.lecm-lm__seasons-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 15% 0%, rgba(0,169,79,0.14), transparent 50%);
	pointer-events: none;
}
.lecm-lm__seasons-inner { position: relative; }
.lecm-lm__seasons-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 24px;
	margin-bottom: 64px;
}
.lecm-lm__seasons-head > div { max-width: 660px; }
.lecm-lm__seasons-title {
	font-size: 44px !important;
	line-height: 1.04 !important;
	letter-spacing: -0.022em;
	color: #fff !important;
}
.lecm-lm__seasons-lede {
	margin: 0;
	font-size: 15px;
	color: rgba(255,255,255,0.65);
	max-width: 340px;
	line-height: 1.6;
}

.lecm-lm__timeline { position: relative; }
.lecm-lm__timeline-rule {
	position: absolute;
	left: 0;
	right: 0;
	top: 24px;
	height: 1px;
	background: rgba(255,255,255,0.12);
}
.lecm-lm__timeline-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	position: relative;
}
.lecm-lm__season {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.lecm-lm__season-dot {
	width: 48px;
	height: 48px;
	border-radius: 24px;
	background: var(--ink-warm);
	border: 1px solid rgba(255,255,255,0.25);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
}
.lecm-lm__season--now .lecm-lm__season-dot {
	border-color: var(--green);
	color: var(--green);
}
.lecm-lm__season-n {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.01em;
}
.lecm-lm__season-m {
	font-size: 11px;
	color: var(--green);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-top: 3px;
}
.lecm-lm__season-d {
	font-size: 13px;
	color: rgba(255,255,255,0.62);
	line-height: 1.6;
}

.lecm-lm__banner365 {
	margin-top: 72px;
	padding: 28px 32px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.10);
	border-radius: 10px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 28px;
	align-items: center;
}
.lecm-lm__banner365-mark {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--green);
}
.lecm-lm__banner365-v {
	font-size: 36px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
	line-height: 1;
}
.lecm-lm__banner365-t {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
}
.lecm-lm__banner365-s {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
}

/* =========================================================================
   6. Service area
========================================================================= */
.lecm-lm__area {
	background: var(--surface);
	padding: 104px 0;
	border-bottom: 1px solid var(--border);
}
.lecm-lm__area-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}
.lecm-lm__area-title {
	font-size: 44px !important;
	line-height: 1.04 !important;
	letter-spacing: -0.022em;
	color: var(--ink) !important;
}
.lecm-lm__area-lede {
	margin: 22px 0 0;
	font-size: 16px;
	color: var(--muted);
	line-height: 1.7;
	max-width: 460px;
}
.lecm-lm__area-note {
	margin-top: 28px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--green-tint);
	color: var(--green-dark);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
}
.lecm-lm__area-note-dot { width: 8px; height: 8px; border-radius: 4px; background: var(--green); }

.lecm-lm__area-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 8px; }
.lecm-lm__area-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: var(--border);
	border-radius: 8px;
	overflow: hidden;
}
.lecm-lm__city {
	background: var(--surface);
	padding: 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 76px;
}
.lecm-lm__city-head { display: flex; align-items: center; gap: 14px; }
.lecm-lm__city-dot { width: 10px; height: 10px; border-radius: 5px; background: var(--rule-soft); flex-shrink: 0; }
.lecm-lm__city-dot.is-hq { background: var(--green); box-shadow: 0 0 0 5px var(--green-tint); }
.lecm-lm__city-body { flex: 1; }
.lecm-lm__city-name { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink); }
.lecm-lm__city-sub { margin-top: 2px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* per-city service chips */
.lecm-lm__city-chips { display: flex; flex-wrap: wrap; gap: 7px; padding-left: 24px; }
.lecm-lm__chip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 11px 5px 8px;
	border-radius: 999px;
	background: var(--green-tint);
	color: var(--green-dark);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: -0.005em;
	white-space: nowrap;
}
.lecm-lm__chip svg { flex-shrink: 0; }
/* This page's own service, highlighted in every city card. */
.lecm-lm__chip--hl { background: var(--green); color: #fff; }

/* =========================================================================
   7. Trusted-by
========================================================================= */
.lecm-lm__trust-band {
	background: var(--green-dark);
	color: #fff;
	padding: 72px 0;
}
.lecm-lm__trust .lecm-lm__eyebrow--faint { color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.lecm-lm__trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	color: rgba(255,255,255,0.75);
	font-size: 16px;
	font-weight: 700;
}
.lecm-lm__trust-logo { padding: 12px 0; }

/* =========================================================================
   8. CTA
========================================================================= */
.lecm-lm__cta {
	background: var(--green);
	color: #fff;
	padding: 84px 0;
}
.lecm-lm__cta-inner {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: start;
}
.lecm-lm__cta-title {
	font-size: 48px !important;
	line-height: 1.04 !important;
	letter-spacing: -0.025em;
	color: #fff !important;
	max-width: 540px;
}
.lecm-lm__cta-lede {
	margin: 18px 0 0;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255,255,255,0.88);
	max-width: 500px;
}
.lecm-lm__cta-call {
	margin: 26px 0 0;
	font-size: 14px;
	font-weight: 600;
	color: rgba(255,255,255,0.85);
}
.lecm-lm .lecm-lm__cta-call a { color: #fff; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.lecm-lm .lecm-lm__cta-call a:hover,
.lecm-lm .lecm-lm__cta-call a:focus { color: #fff; opacity: 0.85; }

.lecm-lm__needs {
	display: grid;
	gap: 10px;
}
.lecm-lm .lecm-lm__need {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 16px 20px;
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.22);
	border-radius: 6px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.lecm-lm .lecm-lm__need:hover,
.lecm-lm .lecm-lm__need:focus {
	background: #fff;
	border-color: #fff;
	color: var(--ink);
}
.lecm-lm__need-icon { flex-shrink: 0; display: inline-flex; opacity: 0.9; }
.lecm-lm__need-text { flex: 1; }
.lecm-lm__need-arrow {
	flex-shrink: 0;
	display: inline-flex;
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity .16s ease, transform .16s ease;
}
.lecm-lm .lecm-lm__need:hover .lecm-lm__need-arrow,
.lecm-lm .lecm-lm__need:focus .lecm-lm__need-arrow {
	opacity: 1;
	transform: translateX(0);
}

/* =========================================================================
   Responsive
========================================================================= */
@media (max-width: 1024px) {
	.lecm-lm__hero-title { font-size: 56px !important; }
	.lecm-lm__stats { grid-template-columns: repeat(2, 1fr); align-items: start; }
	.lecm-lm__managed { grid-column: 1 / -1; border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; }
	.lecm-lm__strip { grid-template-columns: repeat(2, 1fr); }
	.lecm-lm__commit-head { grid-template-columns: 1fr; gap: 28px; }
	.lecm-lm__commit-grid { grid-template-columns: repeat(2, 1fr); }
	.lecm-lm__services-grid { grid-template-columns: repeat(2, 1fr); }
	.lecm-lm__area-inner { grid-template-columns: 1fr; gap: 40px; }
	.lecm-lm__cta-inner { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 768px) {
	.lecm-lm__shell { padding: 0 24px; }
	.lecm-lm__hero { padding: 56px 0 64px; }
	.lecm-lm__hero-title { font-size: 40px !important; }
	.lecm-lm__hero-intro { font-size: 16px; }
	.lecm-lm__stats { margin-top: 48px; gap: 28px 16px; }
	.lecm-lm__stat-v { font-size: 32px; }
	.lecm-lm__managed-v { font-size: 32px; }
	.lecm-lm__certs-list { font-size: 14px; gap: 12px 24px; }
	.lecm-lm__strip { grid-template-columns: 1fr; }
	.lecm-lm__strip-cell { height: 260px; }
	.lecm-lm__commit,
	.lecm-lm__services,
	.lecm-lm__seasons,
	.lecm-lm__trust-band { padding: 64px 0; }
	.lecm-lm__area { padding: 56px 0; }
	.lecm-lm__cta { padding: 56px 0; }
	.lecm-lm__commit-title { font-size: 36px !important; }
	.lecm-lm__commit-grid { grid-template-columns: 1fr; }
	.lecm-lm__commit-card { min-height: 0; }
	.lecm-lm__services-title,
	.lecm-lm__seasons-title { font-size: 32px !important; }
	.lecm-lm__services-grid { grid-template-columns: 1fr; }
	.lecm-lm__timeline-rule { display: none; }
	.lecm-lm__timeline-grid { grid-template-columns: 1fr; gap: 32px; }
	.lecm-lm__banner365 {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 24px;
	}
	.lecm-lm__area-title { font-size: 32px !important; }
	.lecm-lm__area-grid { grid-template-columns: 1fr; }
	.lecm-lm__trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.lecm-lm__cta-title { font-size: 34px !important; }
}
