/**
 * Home page (front-page.php) — high-fidelity build of the Claude Design handoff
 * (homepage.jsx, "Variation A"). Palette/type tokens page-scoped on .lecm-home;
 * headings + links prefixed with .lecm-home to beat the shared Astra/Elementor
 * cascade (`.style-reset h*` / `.elementor-kit-6 a`).
 */

.lecm-home {
	--green:      #00A94F;
	--green-hov:  #008C40;
	--green-tint: #E6F6EC;
	--green-dark: #1F4D2E;
	--ink:        #1F2A1A;
	--text2:      #3A4A2E;
	--muted:      #7A7A7A;
	--border:     #E5E7E0;
	--surface:    #FFFFFF;
	--bg:         #FAFAF7;
	--hero-grad:  linear-gradient(135deg, #1F2A1A 0%, #2D3D24 100%);

	background: var(--bg);
	font-family: Manrope, system-ui, sans-serif;
	color: var(--ink);
}

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

.lecm-home__shell { max-width: 1180px; margin: 0 auto; }
.lecm-home a { text-decoration: none; }
.lecm-home__icon { display: block; flex-shrink: 0; }

/* Eyebrow + headings (shared) */
.lecm-home__eyebrow {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--green);
	font-weight: 700;
	margin-bottom: 22px;
}

/* Hero brand lockup: Calgary eyebrow / company name */
.lecm-home__brand {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}
.lecm-home__brand-lines {
	display: flex;
	flex-direction: column;
}
.lecm-home__brand .lecm-home__eyebrow {
	margin-bottom: 3px;
}
.lecm-home__brand-name {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
}
.lecm-home__eyebrow--green,
.lecm-home__eyebrow--faint,
.lecm-home__eyebrow--onGreen { margin-bottom: 14px; }
.lecm-home__eyebrow--faint  { color: rgba(255,255,255,0.5); letter-spacing: 0.16em; }
.lecm-home__eyebrow--onGreen { color: rgba(255,255,255,0.7); letter-spacing: 0.16em; }

.lecm-home .lecm-home__h2 {
	margin: 0;
	font-size: 44px;
	font-weight: 800;
	color: var(--ink);
	letter-spacing: -0.02em;
	line-height: 1.05;
	max-width: 720px;
}
.lecm-home .lecm-home__h2--about { font-size: 40px; line-height: 1.1; }
.lecm-home .lecm-home__h2--sm    { font-size: 36px; }
.lecm-home .lecm-home__h2--light { color: #fff; }

/* Buttons */
.lecm-home .lecm-home__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 15px;
	border-radius: 4px;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}
.lecm-home .lecm-home__btn--primary {
	padding: 16px 26px;
	background: var(--green);
	color: #fff;
}
.lecm-home .lecm-home__btn--primary:hover { background: var(--green-hov); color: #fff; }
.lecm-home .lecm-home__btn--ghost {
	padding: 16px 26px;
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.3);
	cursor: pointer;
}
.lecm-home .lecm-home__btn--ghost:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

/* ============================== HERO ============================== */
.lecm-home__hero {
	position: relative;
	background: var(--hero-grad);
	color: #fff;
	padding: 96px 48px 100px;
	/* overflow visible so the "Our services" dropdown can escape the hero; the
	   glow is inset:0 so it stays contained without clipping. */
	overflow: visible;
}
.lecm-home__hero-glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(0,169,79,0.18), transparent 50%);
	pointer-events: none;
}
.lecm-home__hero .lecm-home__shell { position: relative; }
.lecm-home .lecm-home__hero-title {
	margin: 0;
	font-size: 80px;
	font-weight: 800;
	line-height: 0.95;
	letter-spacing: -0.025em;
	max-width: 980px;
	color: #fff;
}
.lecm-home__accent { color: var(--green); }
.lecm-home__hero-intro {
	margin-top: 28px;
	font-size: 19px;
	line-height: 1.55;
	color: rgba(255,255,255,0.78);
	max-width: 620px;
}
.lecm-home__hero-actions {
	margin-top: 36px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

/* Services dropdown (native <details>) */
.lecm-home__svc-dd { position: relative; }
.lecm-home__svc-dd > summary { list-style: none; }
.lecm-home__svc-dd > summary::-webkit-details-marker { display: none; }
.lecm-home__svc-dd > summary .lecm-home__icon { transition: transform 0.15s ease; }
.lecm-home__svc-dd[open] > summary .lecm-home__icon { transform: rotate(180deg); }
.lecm-home__svc-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 320px;
	max-width: calc(100vw - 48px);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.28);
	overflow: hidden;
	z-index: 20;
}
.lecm-home .lecm-home__svc-menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	color: var(--ink);
	font-weight: 700;
	font-size: 14px;
	border-bottom: 1px solid #F0F1EC;
	transition: background-color 0.12s ease;
}
.lecm-home .lecm-home__svc-menu-item:last-child { border-bottom: 0; }
/* Explicit color on hover/focus or .elementor-kit-6 a:hover turns the label blue */
.lecm-home .lecm-home__svc-menu-item:hover,
.lecm-home .lecm-home__svc-menu-item:focus-visible { background: var(--green-tint); color: var(--ink); }
.lecm-home__svc-menu-arrow { color: var(--green); }
/* Brand-green focus ring on the dropdown button (default ring reads blue) */
.lecm-home__svc-dd > summary:focus-visible {
	outline: 2px solid var(--green);
	outline-offset: 2px;
}

/* Hero stats */
.lecm-home__stats {
	margin-top: 72px;
	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-home__stat-v { font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.lecm-home__stat-l { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 8px; letter-spacing: 0.03em; }

/* Bordered "sq ft managed" module — snow-ice "Option 2" layout. */
.lecm-home__managed { border-left: 1px solid rgba(255,255,255,0.14); padding-left: 28px; }
.lecm-home__managed-head { display: flex; align-items: baseline; gap: 10px; }
.lecm-home__managed-v { font-size: 40px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; color: #fff; }
.lecm-home__managed-unit { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.7); }
.lecm-home__managed-chips { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.lecm-home__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-home__managed-chip strong { font-weight: 700; color: #fff; }

/* Certified, accredited & insured — ported from the snow page. */
.lecm-home__certs {
	margin-top: 48px;
	padding-top: 30px;
	border-top: 1px solid rgba(255,255,255,0.12);
}
.lecm-home__certs .lecm-home__eyebrow { margin-bottom: 22px; }
.lecm-home__certs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 36px;
	color: rgba(255,255,255,0.82);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.005em;
}
.lecm-home__cert { display: flex; align-items: center; gap: 10px; }
.lecm-home__cert .lecm-home__icon { color: var(--green); }

/* ============================ SERVICES ============================ */
.lecm-home__services { background: var(--bg); padding: 88px 48px; }
.lecm-home__services-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 24px;
}
.lecm-home__services-lede {
	margin: 0;
	font-size: 15px;
	color: var(--muted);
	max-width: 360px;
	line-height: 1.55;
}
.lecm-home__services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lecm-home .lecm-home__service {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}
.lecm-home .lecm-home__service:hover {
	border-color: var(--green);
	box-shadow: 0 10px 26px rgba(31,42,26,0.08);
	transform: translateY(-2px);
}
.lecm-home__service-photo {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--green-tint);
}
.lecm-home__service-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.lecm-home .lecm-home__service:hover .lecm-home__service-photo img { transform: scale(1.05); }
.lecm-home__service-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px 22px 24px;
}
.lecm-home__service-label { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; line-height: 1.25; }
.lecm-home__service-blurb { font-size: 13px; color: var(--muted); line-height: 1.55; flex: 1; }
.lecm-home__service-more { font-size: 12px; color: var(--green); font-weight: 700; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 6px; }

/* ============================= ABOUT ============================= */
.lecm-home__about {
	background: var(--surface);
	padding: 96px 48px;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}
.lecm-home__about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lecm-home__about-grid > * { min-width: 0; }
.lecm-home__about-copy { margin-top: 22px; font-size: 16px; color: var(--muted); line-height: 1.7; }
.lecm-home__about-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
.lecm-home__about-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text2); font-weight: 500; }
.lecm-home__about-check {
	width: 22px;
	height: 22px;
	border-radius: 11px;
	background: var(--green-tint);
	color: var(--green-dark);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
/* Who-we-serve infographic card: portfolio-mix donut + service-area chips */
.lecm-home__serve {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 4px 24px rgba(31,42,26,0.05);
}
.lecm-home__serve-chart {
	display: flex;
	align-items: center;
	gap: 28px;
}
.lecm-home__donut {
	flex-shrink: 0;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	display: grid;
	place-items: center;
}
.lecm-home__donut-hole {
	width: 122px;
	height: 122px;
	border-radius: 50%;
	background: var(--surface);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.lecm-home__donut-value {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	color: var(--ink);
}
.lecm-home__donut-unit {
	margin-top: 4px;
	font-size: 11px;
	color: var(--muted);
}
.lecm-home__legend {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	display: grid;
	gap: 13px;
}
.lecm-home__legend-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--text2);
}
.lecm-home__legend-dot {
	flex-shrink: 0;
	width: 11px;
	height: 11px;
	border-radius: 3px;
}
.lecm-home__legend-label { font-weight: 500; }
.lecm-home__legend-pct {
	margin-left: auto;
	font-weight: 700;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
}
.lecm-home__serve-coverage {
	margin-top: 26px;
	padding-top: 24px;
	border-top: 1px solid var(--border);
}
.lecm-home__serve-label {
	margin-bottom: 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}
.lecm-home__cities {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.lecm-home__city {
	padding: 7px 15px;
	font-size: 13px;
	font-weight: 600;
	color: var(--green-dark);
	background: var(--green-tint);
	border: 1px solid rgba(0, 169, 79, 0.16);
	border-radius: 999px;
}

/* ========================= TESTIMONIALS ========================= */
.lecm-home__testimonials { background: var(--ink); color: #fff; padding: 96px 48px; }
.lecm-home__testimonials-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 48px;
	flex-wrap: wrap;
	gap: 24px;
}
.lecm-home__stars { display: flex; gap: 4px; color: var(--green); }
.lecm-home__quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lecm-home__quote {
	margin: 0;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 8px;
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.lecm-home__quote-mark { color: var(--green); opacity: 0.75; }
/* Reset the theme's default blockquote styling (italic + left border) to match
   the design's plain quote text — the green quote mark is the only accent. */
.lecm-home .lecm-home__quote-text {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	quotes: none;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(255,255,255,0.92);
}
.lecm-home .lecm-home__quote-text::before,
.lecm-home .lecm-home__quote-text::after { content: none; }
.lecm-home__quote-cite { margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); font-style: normal; }
.lecm-home__quote-author { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.lecm-home__quote-role { display: block; font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.lecm-home__logos { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.lecm-home__logos-list {
	display: flex;
	gap: 22px 44px;
	flex-wrap: wrap;
	align-items: center;
	color: rgba(255,255,255,0.65);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

/* ========================== ARTICLES =========================== */
/* ---- Recent work showcase: 2 feature cards + 6 grid cards ---------------- */
.lecm-home__work { background: var(--bg); padding: 96px 48px; border-top: 1px solid var(--border); }
.lecm-home__work-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.lecm-home .lecm-home__work-all {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
	background: transparent;
	border: 1px solid var(--border);
	border-radius: 6px;
	text-decoration: none;
	transition: border-color 0.15s ease, background 0.15s ease;
}
.lecm-home .lecm-home__work-all:hover { border-color: var(--green); background: var(--green-tint); color: var(--ink); }

.lecm-home__wchip {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.lecm-home__wdot { flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; }

.lecm-home__work-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.lecm-home__wfeature {
	position: relative;
	display: block;
	min-height: 300px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--green-dark);
	color: #fff;
	text-decoration: none;
}
.lecm-home__wfeature-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.lecm-home__wfeature:hover .lecm-home__wfeature-img { transform: scale(1.04); }
.lecm-home__wfeature-scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(20,28,16,0.9) 0%, rgba(20,28,16,0.35) 42%, transparent 70%);
}
.lecm-home__wfeature-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.lecm-home__wfeature .lecm-home__wchip { color: rgba(255,255,255,0.9); }
.lecm-home__wfeature-title {
	font-size: 21px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: #fff;
}

.lecm-home__work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lecm-home__wcard {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 10px;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}
.lecm-home__wcard:hover {
	border-color: var(--green);
	box-shadow: 0 8px 22px rgba(31,42,26,0.07);
	transform: translateY(-2px);
}
.lecm-home__wcard-thumb {
	flex-shrink: 0;
	width: 76px;
	height: 76px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--green-tint);
}
.lecm-home__wcard-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lecm-home__wcard-body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.lecm-home__wcard .lecm-home__wchip { color: var(--muted); }
.lecm-home__wcard-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.005em;
	color: var(--ink);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media (max-width: 1000px) {
	.lecm-home__work { padding: 76px 32px; }
	.lecm-home__work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
	.lecm-home__work { padding: 60px 24px; }
	.lecm-home__work-features { grid-template-columns: 1fr; }
	.lecm-home__work-grid { grid-template-columns: 1fr; }
	.lecm-home__wfeature { min-height: 230px; }
}

.lecm-home__articles { background: var(--bg); padding: 96px 48px; }
.lecm-home__articles-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 32px;
	flex-wrap: wrap;
	gap: 24px;
}
.lecm-home .lecm-home__articles-all {
	color: var(--green);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.lecm-home .lecm-home__articles-all:hover { color: var(--green-hov); }
.lecm-home__articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lecm-home .lecm-home__article {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	color: var(--ink);
	display: flex;
	flex-direction: column;
	transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.lecm-home .lecm-home__article:hover { border-color: var(--green); box-shadow: 0 10px 26px rgba(31,42,26,0.08); }
.lecm-home__article-media { position: relative; display: block; height: 160px; background: var(--green-tint); overflow: hidden; }
.lecm-home__article-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Category chip overlaid on the image — matches the /articles/ archive cards. */
.lecm-home__article-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	max-width: calc(100% - 24px);
}
.lecm-home__article-chip {
	display: inline-flex;
	align-items: center;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 5px 10px;
	border-radius: 3px;
	background: rgba(255,255,255,0.92);
	color: var(--green-dark);
	line-height: 1;
}
.lecm-home__article-body { padding: 20px 22px 24px; }
.lecm-home__article-title { display: block; font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.3; letter-spacing: -0.01em; }
.lecm-home__article-meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--muted); }
.lecm-home__article-read { display: inline-flex; align-items: center; gap: 4px; }

/* ========================= ESTIMATE CTA ========================= */
.lecm-home__cta { background: var(--green); color: #fff; padding: 72px 48px; }
.lecm-home__cta-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.lecm-home .lecm-home__cta .lecm-home__h2 { font-size: 40px; line-height: 1.1; max-width: 560px; }
.lecm-home__cta-copy { margin-top: 16px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 480px; }
/* CTA action card: two buttons + phone on a dark panel */
.lecm-home__cta-card {
	background: var(--ink);
	border-radius: 14px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.lecm-home .lecm-home__cta-btn {
	width: 100%;
	padding: 15px 20px;
	border-radius: 6px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}
.lecm-home .lecm-home__cta-btn--primary { background: var(--green); color: #fff; }
.lecm-home .lecm-home__cta-btn--primary:hover { background: var(--green-hov); color: #fff; }
.lecm-home .lecm-home__cta-btn--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.22);
}
.lecm-home .lecm-home__cta-btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.45); color: #fff; }
.lecm-home__cta-talk {
	margin: 2px 0 0;
	text-align: center;
	font-size: 14px;
	color: rgba(255,255,255,0.6);
}
.lecm-home .lecm-home__cta-tel { color: var(--green); font-weight: 700; text-decoration: none; }
.lecm-home .lecm-home__cta-tel:hover { color: var(--green); text-decoration: underline; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 1024px) {
	.lecm-home__hero { padding: 80px 32px 84px; }
	.lecm-home__services,
	.lecm-home__testimonials,
	.lecm-home__articles { padding: 76px 32px; }
	.lecm-home__about { padding: 80px 32px; }
	.lecm-home__cta { padding: 64px 32px; }
	.lecm-home .lecm-home__hero-title { font-size: 64px; }
	.lecm-home__about-grid { grid-template-columns: 1fr; gap: 40px; }
	.lecm-home__cta-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
	.lecm-home__hero { padding: 60px 24px 64px; }
	.lecm-home__services,
	.lecm-home__testimonials,
	.lecm-home__articles,
	.lecm-home__about { padding: 60px 24px; }
	.lecm-home__cta { padding: 56px 24px; }
	.lecm-home .lecm-home__hero-title { font-size: 46px; }
	.lecm-home .lecm-home__h2 { font-size: 32px; }
	.lecm-home .lecm-home__cta .lecm-home__h2 { font-size: 30px; }
	.lecm-home__stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; margin-top: 48px; align-items: start; }
	.lecm-home__stat-v { font-size: 34px; }
	.lecm-home__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-home__managed-v { font-size: 34px; }
	.lecm-home__services-grid { grid-template-columns: repeat(2, 1fr); }
	.lecm-home__quotes { grid-template-columns: 1fr; }
	.lecm-home__articles-grid { grid-template-columns: 1fr; }
	.lecm-home__logos-list { gap: 24px 32px; font-size: 16px; }
}

@media (max-width: 560px) {
	.lecm-home .lecm-home__hero-title { font-size: 38px; }
	.lecm-home__serve { padding: 24px; }
	.lecm-home__serve-chart { flex-direction: column; align-items: center; gap: 22px; }
	.lecm-home__legend { flex: none; width: 100%; }
	.lecm-home__services-grid { grid-template-columns: 1fr; }
	.lecm-home__hero-actions { gap: 12px; }
	.lecm-home__btn--primary,
	.lecm-home__svc-dd { width: 100%; }
	.lecm-home__svc-dd > summary { width: 100%; justify-content: center; }
}
