:root {
	--green: #228848;
	--green-light: #30985f;
	--accent: #dadb08;
	--black: #040404;
	--charcoal: #161a18;
	--graphite: #454142;
	--white: #ffffff;
	--off-white: #f7f9f8;
	--line: #dde5e1;
	--text: #1f1f1f;
	--muted: #5f6b66;
	--container: 1180px;
	--radius: 22px;
	--shadow: 0 24px 70px rgba(4, 28, 18, 0.12);
	--header-height: 88px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
	margin: 0;
	color: var(--text);
	background: var(--white);
	font-family: "Segoe UI", Aptos, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-is-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	letter-spacing: -0.035em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3.25rem, 7vw, 6.6rem);
}

h2 {
	font-size: clamp(2.2rem, 4.5vw, 4.35rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
	color: var(--black);
	background: var(--accent);
}

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 4px;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 99999;
	top: 8px;
	left: 8px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	color: var(--black);
	background: var(--white);
	clip: auto;
}

.site-header {
	position: fixed;
	z-index: 1000;
	top: 0;
	right: 0;
	left: 0;
	height: var(--header-height);
	color: var(--white);
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	transition: background-color 180ms ease, box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled,
body:not(.limpex-front-page) .site-header {
	height: 76px;
	color: var(--text);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(14px);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	height: 100%;
	gap: 34px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	width: 154px;
}

.site-brand img,
.site-brand .custom-logo {
	width: 154px;
	height: auto;
}

.site-header:not(.is-scrolled) .site-brand img,
.site-header:not(.is-scrolled) .site-brand .custom-logo {
	filter: brightness(0) invert(1);
}

body:not(.limpex-front-page) .site-header .site-brand img,
body:not(.limpex-front-page) .site-header .site-brand .custom-logo {
	filter: none;
}

.custom-logo-link {
	display: flex;
}

.primary-navigation {
	justify-self: center;
}

.menu,
.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation .menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.primary-navigation a {
	position: relative;
	display: block;
	padding-block: 12px;
	font-size: 0.88rem;
	font-weight: 700;
}

.primary-navigation a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 2px;
	content: "";
	background: var(--accent);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation .current-menu-item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 14px 24px;
	gap: 14px;
	color: var(--white);
	background: var(--green);
	border: 1px solid var(--green);
	border-radius: 999px;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
	color: var(--black);
	background: var(--accent);
	border-color: var(--accent);
	transform: translateY(-2px);
}

.button--small {
	min-height: 46px;
	padding-inline: 20px;
	font-size: 0.82rem;
}

.site-header:not(.is-scrolled) .site-header__cta {
	color: var(--black);
	background: var(--accent);
	border-color: var(--accent);
}

.site-header:not(.is-scrolled) .site-header__cta:hover {
	color: var(--white);
	background: var(--green);
	border-color: var(--green);
}

body:not(.limpex-front-page) .site-header .site-header__cta {
	color: var(--white);
	background: var(--green);
	border-color: var(--green);
}

.button--light {
	color: var(--black);
	background: var(--white);
	border-color: var(--white);
}

.button--light:hover {
	background: var(--accent);
	border-color: var(--accent);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

.text-link--light {
	color: var(--white);
}

.menu-toggle {
	display: none;
}

.hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: min(900px, 100svh);
	padding: calc(var(--header-height) + 100px) 0 74px;
	overflow: hidden;
	color: var(--white);
	background: var(--black);
}

.hero__media,
.hero__overlay,
.hero__glow,
.cta__media,
.cta__overlay {
	position: absolute;
	inset: 0;
}

.hero__media img,
.cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__media img {
	object-position: center 38%;
	filter: saturate(0.78) contrast(1.05);
}

.hero__overlay {
	background:
		linear-gradient(90deg, rgba(4, 4, 4, 0.94) 0%, rgba(4, 4, 4, 0.82) 42%, rgba(4, 4, 4, 0.3) 75%, rgba(4, 4, 4, 0.56) 100%),
		linear-gradient(0deg, rgba(4, 4, 4, 0.9) 0%, transparent 48%);
}

.hero__glow {
	inset: auto -15% -45% 20%;
	height: 70%;
	background: radial-gradient(circle, rgba(218, 219, 8, 0.32), transparent 65%);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: end;
	gap: 70px;
}

.hero__content {
	max-width: 850px;
}

.eyebrow {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	gap: 12px;
	color: var(--green);
	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow::before {
	width: 34px;
	height: 2px;
	content: "";
	background: currentColor;
}

.eyebrow--light {
	color: var(--accent);
}

.hero h1 {
	max-width: 830px;
	margin-bottom: 30px;
	font-weight: 760;
}

.hero h1 span {
	display: block;
	color: var(--accent);
}

.hero__description {
	max-width: 660px;
	margin-bottom: 34px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 28px;
}

.hero__note {
	display: flex;
	align-items: center;
	margin: 34px 0 0;
	gap: 10px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.83rem;
	font-weight: 650;
}

.hero__note span {
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 0 6px rgba(218, 219, 8, 0.12);
}

.hero__panel {
	padding: 28px;
	background: rgba(20, 28, 24, 0.64);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	backdrop-filter: blur(12px);
}

.hero__panel > p {
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero__panel ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.hero__panel li {
	display: grid;
	grid-template-columns: 35px 1fr;
	align-items: center;
	padding: 14px 0;
	gap: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.92rem;
	font-weight: 700;
}

.hero__panel li span {
	color: var(--accent);
	font-size: 0.72rem;
}

.section {
	padding: 120px 0;
}

.section--light {
	background: var(--off-white);
}

.section--dark {
	color: var(--white);
	background: var(--charcoal);
}

.section-heading {
	margin-bottom: 58px;
}

.section-heading h2 {
	max-width: 850px;
	margin-bottom: 0;
}

.section-heading > p:last-child {
	max-width: 660px;
	margin: 24px auto 0;
	color: var(--muted);
	font-size: 1.06rem;
}

.section-heading--center {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
	align-items: end;
	gap: 80px;
}

.section-heading--split > p {
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 1.04rem;
}

.differentials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.feature-card {
	min-height: 330px;
	padding: 42px;
	background: var(--white);
	border-right: 1px solid var(--line);
}

.feature-card:last-child {
	border-right: 0;
}

.feature-card--green {
	color: var(--white);
	background: var(--green);
	border-color: var(--green);
}

.feature-card__number {
	display: block;
	margin-bottom: 90px;
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.12em;
}

.feature-card--green .feature-card__number {
	color: var(--accent);
}

.feature-card h3 {
	margin-bottom: 16px;
}

.feature-card p {
	margin-bottom: 0;
	color: var(--muted);
}

.feature-card--green p {
	color: rgba(255, 255, 255, 0.78);
}

.services {
	background:
		radial-gradient(circle at 90% 10%, rgba(218, 219, 8, 0.08), transparent 28%),
		var(--white);
}

.services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.service-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card:hover {
	border-color: rgba(34, 136, 72, 0.4);
	box-shadow: var(--shadow);
	transform: translateY(-7px);
}

.service-card__media {
	position: relative;
	height: 245px;
	overflow: hidden;
	background: var(--line);
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.service-card:hover .service-card__media img {
	transform: scale(1.04);
}

.service-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 45%, rgba(4, 4, 4, 0.64));
}

.service-card__media > span {
	position: absolute;
	z-index: 1;
	right: 18px;
	bottom: 18px;
	padding: 7px 12px;
	color: var(--black);
	background: var(--accent);
	border-radius: 999px;
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.service-card__body {
	position: relative;
	padding: 30px;
}

.service-card__index {
	position: absolute;
	top: 32px;
	right: 28px;
	color: var(--green);
	font-size: 0.75rem;
	font-weight: 900;
}

.service-card h3 {
	max-width: calc(100% - 45px);
	margin-bottom: 14px;
}

.service-card__body > p:last-child {
	margin-bottom: 0;
	color: var(--muted);
}

.management {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 85% 50%, rgba(218, 219, 8, 0.15), transparent 34%),
		var(--charcoal);
}

.management__grid,
.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	align-items: center;
	gap: 90px;
}

.management__media,
.about__media {
	position: relative;
}

.management__media::before {
	position: absolute;
	z-index: 0;
	top: -22px;
	right: 34px;
	width: 48%;
	height: 48%;
	content: "";
	border: 2px solid var(--accent);
	border-radius: var(--radius);
}

.management__media img,
.about__media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
	border-radius: var(--radius);
	filter: saturate(0.86);
}

.management__seal {
	position: absolute;
	z-index: 2;
	right: -35px;
	bottom: 38px;
	display: flex;
	flex-direction: column;
	width: 190px;
	padding: 23px;
	color: var(--black);
	background: var(--accent);
	border-radius: 18px;
}

.management__seal strong {
	font-size: 1.25rem;
}

.management__seal span {
	margin-top: 5px;
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.management__content h2,
.about__content h2 {
	margin-bottom: 28px;
}

.management__lead,
.about__description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 1.08rem;
}

.management__items {
	margin-top: 42px;
}

.management__items article {
	display: grid;
	grid-template-columns: 48px 1fr;
	padding: 25px 0;
	gap: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.management__items article > span {
	padding-top: 5px;
	color: var(--accent);
	font-size: 0.75rem;
	font-weight: 900;
}

.management__items h3 {
	margin-bottom: 9px;
}

.management__items p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.62);
}

.segments__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.segment-card {
	display: grid;
	grid-template-columns: 52px 1fr;
	padding: 38px;
	column-gap: 26px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	transition: border-color 180ms ease, transform 180ms ease;
}

.segment-card:hover {
	border-color: var(--green);
	transform: translateY(-4px);
}

.segment-card > span {
	grid-row: 1 / span 3;
	color: var(--green);
	font-size: 0.75rem;
	font-weight: 900;
}

.segment-card h3 {
	margin-bottom: 12px;
}

.segment-card p {
	margin-bottom: 18px;
	color: var(--muted);
}

.segment-card a {
	justify-self: start;
	font-size: 0.78rem;
	font-weight: 850;
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 5px;
}

.process__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
}

.process-step {
	padding: 28px 28px 0;
	border-left: 1px solid var(--line);
}

.process-step:last-child {
	border-right: 1px solid var(--line);
}

.process-step__top {
	display: flex;
	align-items: center;
	margin-bottom: 62px;
}

.process-step__top span {
	color: var(--green);
	font-size: 0.76rem;
	font-weight: 900;
}

.process-step__top i {
	width: 9px;
	height: 9px;
	margin-left: auto;
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 0 0 0 7px rgba(218, 219, 8, 0.12);
}

.process-step h3 {
	margin-bottom: 14px;
}

.process-step p {
	margin-bottom: 0;
	color: var(--muted);
}

.about {
	background:
		linear-gradient(135deg, rgba(34, 136, 72, 0.11), transparent 38%),
		var(--black);
}

.about__grid {
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.about blockquote {
	padding: 20px 0 20px 25px;
	margin: 34px 0;
	color: var(--white);
	border-left: 3px solid var(--accent);
	font-size: 1.2rem;
	font-weight: 750;
}

.check-list {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 12px;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	color: rgba(255, 255, 255, 0.75);
}

.check-list li::before {
	position: absolute;
	top: 0.68em;
	left: 0;
	width: 10px;
	height: 2px;
	content: "";
	background: var(--accent);
}

.about__caption {
	position: absolute;
	z-index: 2;
	right: 20px;
	bottom: 20px;
	left: 20px;
	padding: 22px;
	background: rgba(4, 4, 4, 0.76);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	backdrop-filter: blur(10px);
}

.about__caption span {
	display: block;
	margin-bottom: 6px;
	color: var(--accent);
	font-size: 0.67rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.about__caption strong {
	font-size: 0.94rem;
}

.cta {
	position: relative;
	display: grid;
	min-height: 650px;
	place-items: center;
	overflow: hidden;
	color: var(--white);
	background: var(--green);
}

.cta__media img {
	filter: saturate(0.8);
}

.cta__overlay {
	background:
		linear-gradient(90deg, rgba(4, 35, 24, 0.95), rgba(4, 35, 24, 0.66)),
		linear-gradient(0deg, rgba(4, 4, 4, 0.3), transparent);
}

.cta__inner {
	position: relative;
	z-index: 2;
	max-width: 900px;
	padding-block: 100px;
	text-align: center;
}

.cta__inner .eyebrow {
	justify-content: center;
}

.cta h2 {
	margin-bottom: 22px;
}

.cta__inner > p:not(.eyebrow) {
	max-width: 650px;
	margin: 0 auto 34px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.12rem;
}

.site-footer {
	padding-top: 82px;
	color: var(--white);
	background: var(--black);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.65fr 1fr 0.55fr;
	padding-bottom: 64px;
	gap: 58px;
}

.site-brand--footer {
	width: 170px;
	margin-bottom: 22px;
}

.site-brand--footer img,
.site-brand--footer .custom-logo {
	width: 170px;
	filter: brightness(0) invert(1);
}

.site-footer__brand p {
	max-width: 330px;
	color: rgba(255, 255, 255, 0.55);
}

.site-footer__column h2 {
	margin-bottom: 22px;
	color: var(--accent);
	font-size: 0.72rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.footer-menu,
.contact-list,
.social-links {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 11px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.88rem;
	list-style: none;
}

.site-footer a:hover {
	color: var(--accent);
}

.social-links {
	justify-items: start;
}

.site-footer__bottom {
	display: flex;
	justify-content: space-between;
	padding: 25px 0;
	color: rgba(255, 255, 255, 0.42);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.75rem;
}

.site-footer__bottom p {
	margin: 0;
}

.whatsapp-float {
	position: fixed;
	z-index: 950;
	right: 24px;
	bottom: 24px;
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 8px 18px 8px 8px;
	gap: 10px;
	color: var(--black);
	background: var(--accent);
	border-radius: 999px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.24);
	font-size: 0.78rem;
	transition: transform 180ms ease;
}

.whatsapp-float:hover {
	transform: translateY(-3px);
}

.whatsapp-float span {
	display: grid;
	width: 36px;
	height: 36px;
	color: var(--white);
	background: var(--green);
	border-radius: 50%;
	font-size: 0.66rem;
	font-weight: 900;
	place-items: center;
}

.whatsapp-float strong {
	font-weight: 900;
}

.internal-main {
	min-height: 70vh;
	padding-top: 76px;
	background: var(--off-white);
}

.internal-hero {
	padding: 110px 0 70px;
	background:
		radial-gradient(circle at 80% 20%, rgba(218, 219, 8, 0.16), transparent 28%),
		var(--white);
	border-bottom: 1px solid var(--line);
}

.internal-hero h1 {
	max-width: 900px;
	margin-bottom: 0;
	font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.archive-description {
	max-width: 700px;
	margin-top: 25px;
	color: var(--muted);
}

.content-layout,
.entry-content-wrap {
	padding-top: 80px;
	padding-bottom: 100px;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.post-card__media {
	display: grid;
	height: 220px;
	color: var(--white);
	background: var(--green);
	font-size: 1.5rem;
	font-weight: 900;
	place-items: center;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	padding: 28px;
}

.post-card__meta {
	margin-bottom: 10px;
	color: var(--green);
	font-size: 0.72rem;
	font-weight: 850;
}

.post-card h2 {
	margin-bottom: 15px;
	font-size: 1.55rem;
}

.post-card__excerpt {
	color: var(--muted);
}

.entry-content-wrap {
	max-width: 900px;
}

.entry-featured {
	margin-bottom: 50px;
}

.entry-featured img {
	width: 100%;
	border-radius: var(--radius);
}

.entry-content {
	padding: 45px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.entry-content > * {
	max-width: 100%;
}

.entry-content a {
	color: var(--green);
	text-decoration: underline;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.6em;
}

.navigation.pagination,
.post-navigation {
	margin-top: 45px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.pagination a.page-numbers,
.pagination span.page-numbers,
.post-navigation a {
	display: inline-flex;
	padding: 10px 15px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
}

.not-found {
	display: grid;
	min-height: 100vh;
	padding: calc(var(--header-height) + 60px) 0 80px;
	background:
		radial-gradient(circle at 70% 30%, rgba(218, 219, 8, 0.15), transparent 32%),
		var(--off-white);
	place-items: center;
}

.not-found__inner {
	max-width: 820px;
	text-align: center;
}

.not-found__code {
	margin-bottom: -30px;
	color: rgba(34, 136, 72, 0.09);
	font-size: clamp(8rem, 22vw, 16rem);
	font-weight: 950;
	letter-spacing: -0.08em;
	line-height: 0.8;
}

.not-found .eyebrow {
	justify-content: center;
}

.not-found h1 {
	margin-bottom: 22px;
	font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.not-found__inner > p:not(.eyebrow, .not-found__code) {
	max-width: 620px;
	margin: 0 auto 32px;
	color: var(--muted);
}

.not-found__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
}

.empty-state {
	max-width: 760px;
	padding: 60px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
}

.js [data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1080px) {
	:root {
		--header-height: 78px;
	}

	.site-header__inner {
		grid-template-columns: auto auto 1fr;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		justify-self: end;
		order: 3;
		width: 48px;
		height: 48px;
		padding: 0;
		color: currentColor;
		background: transparent;
		border: 1px solid currentColor;
		border-radius: 50%;
	}

	.menu-toggle__label {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}

	.menu-toggle__lines {
		display: grid;
		width: 20px;
		gap: 6px;
	}

	.menu-toggle__lines span {
		display: block;
		width: 100%;
		height: 2px;
		background: currentColor;
		transition: transform 180ms ease;
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:first-child {
		transform: translateY(4px) rotate(45deg);
	}

	.menu-toggle[aria-expanded="true"] .menu-toggle__lines span:last-child {
		transform: translateY(-4px) rotate(-45deg);
	}

	.primary-navigation {
		position: fixed;
		top: var(--header-height);
		right: 0;
		left: 0;
		display: none;
		max-height: calc(100vh - var(--header-height));
		padding: 25px 20px 35px;
		overflow-y: auto;
		color: var(--text);
		background: var(--white);
		border-top: 1px solid var(--line);
		box-shadow: 0 25px 40px rgba(0, 0, 0, 0.15);
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation .menu {
		display: grid;
		gap: 0;
	}

	.primary-navigation a {
		padding: 15px 4px;
		border-bottom: 1px solid var(--line);
		font-size: 1rem;
	}

	.site-header__cta {
		justify-self: end;
		order: 2;
	}

	.hero__inner {
		grid-template-columns: 1fr;
	}

	.hero__panel {
		display: none;
	}

	.services__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.management__grid,
	.about__grid {
		gap: 55px;
	}

	.process__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 35px 0;
	}

	.site-footer__grid {
		grid-template-columns: 1.3fr 0.7fr 1fr;
	}

	.site-footer__column:last-child {
		grid-column: 2 / -1;
	}

	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 780px) {
	:root {
		--radius: 18px;
	}

	.container {
		width: min(calc(100% - 28px), var(--container));
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
		gap: 12px;
	}

	.site-brand,
	.site-brand img,
	.site-brand .custom-logo {
		width: 126px;
	}

	.site-header__cta {
		display: none;
	}

	.menu-toggle {
		order: initial;
	}

	.hero {
		min-height: 760px;
		padding-bottom: 52px;
	}

	.hero__media img {
		object-position: 62% center;
	}

	.hero__overlay {
		background:
			linear-gradient(90deg, rgba(4, 4, 4, 0.95), rgba(4, 4, 4, 0.55)),
			linear-gradient(0deg, rgba(4, 4, 4, 0.88), transparent);
	}

	.hero h1 {
		font-size: clamp(3rem, 15vw, 4.6rem);
	}

	.hero__actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
	}

	.section {
		padding: 82px 0;
	}

	.section-heading {
		margin-bottom: 40px;
	}

	.section-heading--split {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.differentials__grid,
	.services__grid,
	.segments__grid,
	.management__grid,
	.about__grid,
	.site-footer__grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.feature-card {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.feature-card:last-child {
		border-bottom: 0;
	}

	.feature-card__number {
		margin-bottom: 55px;
	}

	.service-card__media {
		height: 230px;
	}

	.management__media,
	.about__media {
		max-width: 520px;
	}

	.management__seal {
		right: 14px;
		bottom: 14px;
	}

	.management__grid {
		gap: 58px;
	}

	.about__grid {
		gap: 55px;
	}

	.about__media {
		order: -1;
	}

	.process__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.process-step,
	.process-step:last-child {
		padding: 26px 0;
		border-right: 0;
		border-bottom: 1px solid var(--line);
		border-left: 0;
	}

	.process-step__top {
		margin-bottom: 32px;
	}

	.cta {
		min-height: 580px;
	}

	.site-footer__grid {
		gap: 40px;
	}

	.site-footer__column:last-child {
		grid-column: auto;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.whatsapp-float {
		right: 14px;
		bottom: 14px;
		padding-right: 8px;
	}

	.whatsapp-float strong {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
	}

	.internal-hero {
		padding: 80px 0 55px;
	}

	.content-layout,
	.entry-content-wrap {
		padding-top: 55px;
		padding-bottom: 75px;
	}

	.entry-content {
		padding: 28px 22px;
	}

	.empty-state {
		padding: 35px 25px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.js [data-reveal] {
		opacity: 1;
		transform: none;
	}
}

/* Site institucional */
.institutional-main {
	min-height: 70vh;
	padding-top: 76px;
	background: var(--white);
}

.institutional-hero {
	position: relative;
	display: flex;
	min-height: 620px;
	align-items: flex-end;
	color: var(--white);
	overflow: hidden;
}

.institutional-hero__media,
.institutional-hero__overlay {
	position: absolute;
	inset: 0;
}

.institutional-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.institutional-hero__overlay {
	background:
		linear-gradient(90deg, rgba(4, 4, 4, 0.92) 0%, rgba(4, 4, 4, 0.68) 48%, rgba(4, 4, 4, 0.2) 100%),
		linear-gradient(0deg, rgba(4, 4, 4, 0.72), transparent 55%);
}

.institutional-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: 100px;
	padding-bottom: 88px;
}

.breadcrumbs {
	display: flex;
	align-items: center;
	margin-bottom: 65px;
	gap: 10px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.76rem;
	font-weight: 700;
}

.breadcrumbs a:hover {
	color: var(--accent);
}

.institutional-hero h1 {
	max-width: 980px;
	margin-bottom: 28px;
	font-size: clamp(3rem, 6.6vw, 6.2rem);
	font-weight: 760;
}

.institutional-hero__description {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.institutional-split {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
	align-items: center;
	gap: 90px;
}

.institutional-split--reverse {
	grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.institutional-copy h2 {
	max-width: 760px;
	margin-bottom: 28px;
}

.institutional-lead {
	max-width: 700px;
	margin-bottom: 32px;
	color: var(--muted);
	font-size: clamp(1.05rem, 1.55vw, 1.25rem);
}

.institutional-media {
	position: relative;
	margin: 0;
}

.institutional-media::before {
	position: absolute;
	top: -20px;
	right: -20px;
	width: 52%;
	height: 52%;
	content: "";
	border: 2px solid var(--accent);
	border-radius: var(--radius);
}

.institutional-media img {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 5 / 6;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.institutional-media figcaption {
	position: absolute;
	z-index: 2;
	right: 22px;
	bottom: 22px;
	max-width: 290px;
	padding: 18px 20px;
	color: var(--white);
	background: rgba(4, 4, 4, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	font-size: 0.82rem;
	font-weight: 700;
	backdrop-filter: blur(10px);
}

.principle-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.principle-list span {
	padding: 9px 15px;
	color: var(--green);
	background: rgba(34, 136, 72, 0.08);
	border: 1px solid rgba(34, 136, 72, 0.18);
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 850;
	text-transform: uppercase;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.value-card {
	min-height: 410px;
	padding: 42px 36px;
	background: var(--white);
	border-right: 1px solid var(--line);
}

.value-card:last-child {
	border-right: 0;
}

.value-card > span {
	display: block;
	margin-bottom: 90px;
	color: var(--green);
	font-size: 0.74rem;
	font-weight: 900;
}

.value-card h3 {
	margin-bottom: 18px;
}

.value-card p,
.value-card li {
	color: var(--muted);
}

.value-card ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.value-card li {
	position: relative;
	padding: 7px 0 7px 20px;
}

.value-card li::before {
	position: absolute;
	top: 16px;
	left: 0;
	width: 7px;
	height: 7px;
	content: "";
	background: var(--accent);
	border-radius: 50%;
}

.value-card--green {
	color: var(--white);
	background: var(--green);
}

.value-card--green > span,
.value-card--green p {
	color: rgba(255, 255, 255, 0.78);
}

.check-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 14px 0 14px 36px;
	border-top: 1px solid var(--line);
	font-weight: 700;
}

.check-list li::before {
	position: absolute;
	top: 17px;
	left: 2px;
	display: grid;
	width: 22px;
	height: 22px;
	content: "✓";
	color: var(--black);
	background: var(--accent);
	border-radius: 50%;
	font-size: 0.72rem;
	font-weight: 950;
	place-items: center;
}

.services__grid--institutional {
	grid-template-columns: repeat(3, 1fr);
}

.service-paths {
	background:
		radial-gradient(circle at 50% 0%, rgba(218, 219, 8, 0.13), transparent 34%),
		var(--charcoal);
}

.service-paths__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius);
	overflow: hidden;
}

.service-paths article {
	padding: 54px;
	background: var(--charcoal);
}

.service-paths article > span {
	display: block;
	margin-bottom: 70px;
	color: var(--accent);
	font-size: 0.76rem;
	font-weight: 900;
}

.service-paths h2 {
	margin-bottom: 22px;
	font-size: clamp(2rem, 3vw, 3.2rem);
}

.service-paths article > p:last-child {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.68);
}

.portfolio-section {
	background:
		radial-gradient(circle at 100% 0%, rgba(218, 219, 8, 0.08), transparent 25%),
		var(--white);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-auto-flow: dense;
	gap: 20px;
}

.portfolio-card {
	position: relative;
	min-height: 330px;
	margin: 0;
	background: var(--charcoal);
	border-radius: var(--radius);
	overflow: hidden;
}

.portfolio-card:nth-child(1),
.portfolio-card:nth-child(8) {
	grid-column: span 2;
}

.portfolio-card:nth-child(4),
.portfolio-card:nth-child(10) {
	grid-row: span 2;
	min-height: 680px;
}

.portfolio-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.portfolio-card::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(0deg, rgba(4, 4, 4, 0.72), transparent 45%);
}

.portfolio-card:hover img {
	transform: scale(1.035);
}

.portfolio-card figcaption {
	position: absolute;
	z-index: 2;
	right: 22px;
	bottom: 20px;
	left: 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--white);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.portfolio-card figcaption span {
	color: var(--accent);
}

.careers-values {
	background:
		radial-gradient(circle at 80% 10%, rgba(218, 219, 8, 0.14), transparent 30%),
		var(--charcoal);
}

.careers-values .section-heading h2 {
	margin-inline: auto;
}

.career-benefits {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.career-benefits article {
	min-height: 300px;
	padding: 38px;
	border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.career-benefits article:last-child {
	border-right: 0;
}

.career-benefits span {
	display: block;
	margin-bottom: 66px;
	color: var(--accent);
	font-size: 0.74rem;
	font-weight: 900;
}

.career-benefits p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.66);
}

.form-layout,
.contact-layout {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	align-items: start;
	gap: 70px;
}

.form-layout__heading {
	position: sticky;
	top: 120px;
}

.form-layout__heading h2,
.contact-layout__info h2 {
	margin-bottom: 24px;
}

.form-layout__heading > p:last-child {
	color: var(--muted);
}

.form-panel {
	padding: 44px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.form-panel--contact {
	background: var(--off-white);
}

.limpex-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.limpex-form-field {
	display: block;
	margin: 0;
	color: var(--text);
	font-size: 0.8rem;
	font-weight: 800;
}

.limpex-form-field--full {
	grid-column: 1 / -1;
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 8px;
}

.wpcf7 input:not([type="submit"]):not([type="checkbox"]),
.wpcf7 select,
.wpcf7 textarea {
	width: 100%;
	padding: 14px 16px;
	color: var(--text);
	background: var(--white);
	border: 1px solid #cfd9d4;
	border-radius: 10px;
	outline: 0;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.wpcf7 textarea {
	min-height: 150px;
	resize: vertical;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
	border-color: var(--green);
	box-shadow: 0 0 0 4px rgba(34, 136, 72, 0.12);
}

.wpcf7 input[type="file"] {
	padding: 11px;
	background: var(--off-white);
}

.wpcf7 .wpcf7-acceptance label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--muted);
	font-size: 0.83rem;
	font-weight: 600;
}

.wpcf7 input[type="submit"] {
	display: inline-flex;
	min-height: 52px;
	padding: 14px 24px;
	color: var(--black);
	background: var(--accent);
	border: 0;
	border-radius: 999px;
	font-weight: 900;
	cursor: pointer;
	transition: background-color 180ms ease, transform 180ms ease;
}

.wpcf7 input[type="submit"]:hover {
	background: #18d9a8;
	transform: translateY(-2px);
}

.wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 0.76rem;
	font-weight: 700;
}

.wpcf7 form .wpcf7-response-output {
	margin: 22px 0 0;
	padding: 14px 16px;
	border-width: 1px;
	border-radius: 10px;
}

.form-fallback h2 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 4vw, 3.3rem);
}

.form-fallback > p:not(.eyebrow) {
	color: var(--muted);
}

.form-fallback__admin {
	margin-top: 24px;
	padding: 12px 14px;
	background: #fff7db;
	border-radius: 9px;
	font-size: 0.78rem;
}

.contact-layout {
	grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 40px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
}

.contact-cards a {
	display: flex;
	min-height: 175px;
	padding: 24px;
	flex-direction: column;
	background: var(--white);
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	transition: background-color 180ms ease;
}

.contact-cards a:nth-child(2n) {
	border-right: 0;
}

.contact-cards a:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.contact-cards a:hover {
	background: var(--off-white);
}

.contact-cards span {
	margin-bottom: auto;
	color: var(--green);
	font-size: 0.7rem;
	font-weight: 900;
}

.contact-cards small {
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-cards strong {
	font-size: 0.9rem;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.location-band {
	padding: 74px 0;
	color: var(--white);
	background:
		radial-gradient(circle at 85% 20%, rgba(218, 219, 8, 0.2), transparent 28%),
		var(--green);
}

.location-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.location-band h2 {
	max-width: 790px;
	margin-bottom: 0;
	font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.institutional-posts {
	background: var(--off-white);
}

.institutional-posts .post-card {
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.institutional-posts .post-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.navigation.pagination .page-numbers.current {
	color: var(--white);
	background: var(--green);
	border-color: var(--green);
}

.institutional-cta {
	position: relative;
	display: grid;
	min-height: 570px;
	color: var(--white);
	overflow: hidden;
	place-items: center;
}

.institutional-cta__media,
.institutional-cta__overlay {
	position: absolute;
	inset: 0;
}

.institutional-cta__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.institutional-cta__overlay {
	background: linear-gradient(90deg, rgba(4, 4, 4, 0.93), rgba(4, 4, 4, 0.58));
}

.institutional-cta__inner {
	position: relative;
	z-index: 1;
	padding-top: 90px;
	padding-bottom: 90px;
}

.institutional-cta h2 {
	max-width: 850px;
	margin-bottom: 24px;
}

.institutional-cta__inner > p:not(.eyebrow) {
	max-width: 650px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.08rem;
}

@media (max-width: 1080px) {
	.institutional-split,
	.institutional-split--reverse,
	.form-layout,
	.contact-layout {
		grid-template-columns: 1fr;
	}

	.institutional-media {
		max-width: 720px;
	}

	.institutional-split--reverse .institutional-media {
		order: 2;
	}

	.form-layout__heading {
		position: static;
	}

	.contact-layout__info {
		max-width: 760px;
	}
}

@media (max-width: 900px) {
	.institutional-hero {
		min-height: 570px;
	}

	.institutional-hero__inner {
		padding-bottom: 68px;
	}

	.breadcrumbs {
		margin-bottom: 48px;
	}

	.value-grid,
	.career-benefits {
		grid-template-columns: 1fr;
	}

	.value-card,
	.career-benefits article {
		min-height: auto;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.value-card:last-child,
	.career-benefits article:last-child {
		border-bottom: 0;
	}

	.value-card > span,
	.career-benefits span,
	.service-paths article > span {
		margin-bottom: 42px;
	}

	.services__grid--institutional,
	.portfolio-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-paths__grid {
		grid-template-columns: 1fr;
	}

	.portfolio-card:nth-child(4),
	.portfolio-card:nth-child(10) {
		grid-row: auto;
		min-height: 330px;
	}
}

@media (max-width: 680px) {
	.institutional-main {
		padding-top: 76px;
	}

	.institutional-hero {
		min-height: 540px;
	}

	.institutional-hero__overlay {
		background: linear-gradient(90deg, rgba(4, 4, 4, 0.92), rgba(4, 4, 4, 0.55));
	}

	.institutional-hero h1 {
		font-size: clamp(2.75rem, 13vw, 4.2rem);
	}

	.institutional-hero__description {
		font-size: 1rem;
	}

	.institutional-media::before {
		right: -10px;
	}

	.institutional-media figcaption {
		right: 12px;
		bottom: 12px;
		left: 12px;
		max-width: none;
	}

	.services__grid--institutional,
	.portfolio-grid,
	.limpex-form-grid,
	.contact-cards {
		grid-template-columns: 1fr;
	}

	.portfolio-card,
	.portfolio-card:nth-child(1),
	.portfolio-card:nth-child(8) {
		min-height: 300px;
		grid-column: auto;
	}

	.service-paths article,
	.form-panel {
		padding: 30px 24px;
	}

	.contact-cards a,
	.contact-cards a:nth-child(2n),
	.contact-cards a:nth-last-child(-n + 2) {
		min-height: 145px;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.contact-cards a:last-child {
		border-bottom: 0;
	}

	.location-band__inner {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (min-width: 1081px) {
	.site-header__inner {
		gap: 24px;
	}

	.primary-navigation .menu {
		gap: 17px;
	}

	.primary-navigation a {
		font-size: 0.76rem;
		white-space: nowrap;
	}
}

/* Home standalone 1.2 */
@font-face {
	font-family: "Inter Limpex";
	src: url("../fonts/inter-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
}

@font-face {
	font-family: "Manrope Limpex";
	src: url("../fonts/manrope-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 300 800;
	font-display: swap;
}

:root {
	--container: 1240px;
	--header-height: 76px;
	--lx-dark: #040404;
	--lx-panel: #1f1f1f;
	--lx-green: #228848;
	--lx-accent: #dadb08;
	--lx-paper: #f7f9f8;
	--lx-line: #dde5e1;
	--lx-muted: #5f6b66;
}

body {
	font-family: "Inter Limpex", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
.lx-stat strong,
.lx-trust-badge strong {
	font-family: "Manrope Limpex", "Segoe UI", sans-serif;
}

.lx-home {
	overflow: clip;
	background: var(--lx-paper);
}

.lx-home h1,
.lx-home h2,
.lx-home h3,
.lx-home p {
	margin-bottom: 0;
}

.site-header {
	height: var(--header-height);
	border-bottom-color: transparent;
}

.site-header__inner {
	gap: 26px;
}

.site-header--home {
	color: #fff;
	background: linear-gradient(180deg, rgba(4, 4, 4, 0.42), transparent);
}

.site-header--home.is-scrolled {
	height: var(--header-height);
	color: #fff;
	background: rgba(4, 4, 4, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(16px);
}

.site-header--home .site-brand img:not(.custom-logo) {
	filter: none;
}

.site-header--home .custom-logo {
	filter: brightness(0) invert(1);
}

.site-header .site-brand,
.site-header .site-brand img,
.site-header .site-brand .custom-logo {
	width: 158px;
}

.site-header .primary-navigation a {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.025em;
}

.site-header--home .site-header__cta,
.site-header--home.is-scrolled .site-header__cta {
	min-height: 44px;
	color: var(--lx-dark);
	background: var(--lx-accent);
	border-color: var(--lx-accent);
	border-radius: 8px;
}

.site-header--home .site-header__cta:hover,
.site-header--home.is-scrolled .site-header__cta:hover {
	color: #fff;
	background: var(--lx-green);
	border-color: var(--lx-green);
}

.lx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 14px 24px;
	gap: 10px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.025em;
	line-height: 1.1;
	transition: transform 180ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.lx-button:hover {
	transform: translateY(-2px);
}

.lx-button--primary {
	color: var(--lx-dark);
	background: var(--lx-accent);
	border-color: var(--lx-accent);
}

.lx-button--primary:hover {
	color: #fff;
	background: var(--lx-green);
	border-color: var(--lx-green);
}

.lx-button--outline {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.42);
}

.lx-button--outline:hover {
	color: var(--lx-dark);
	background: #fff;
	border-color: #fff;
}

.lx-button--phone {
	color: #fff;
	background: transparent;
	border-color: rgba(255, 255, 255, 0.3);
}

.lx-button--phone:hover {
	color: var(--lx-dark);
	background: #fff;
	border-color: #fff;
}

.lx-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.lx-actions--center {
	justify-content: center;
}

.lx-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100svh;
	padding: calc(var(--header-height) + 76px) 0 86px;
	overflow: hidden;
	color: #fff;
	background: var(--lx-dark);
}

.lx-hero__backdrop {
	position: absolute;
	inset: -5%;
	background:
		radial-gradient(circle at 78% 35%, rgba(218, 219, 8, 0.16), transparent 32%),
		linear-gradient(115deg, #040404 0%, #06110b 45%, #0d3b23 100%);
	will-change: transform;
}

.lx-hero__grain {
	position: absolute;
	inset: 0;
	opacity: 0.06;
	background-image: radial-gradient(rgba(255, 255, 255, 0.75) 0.6px, transparent 0.7px);
	background-size: 4px 4px;
	pointer-events: none;
}

.lx-particle {
	position: absolute;
	width: 7px;
	height: 7px;
	background: var(--lx-accent);
	border-radius: 50%;
	box-shadow: 0 0 18px rgba(218, 219, 8, 0.7);
	animation: lx-float 7s ease-in-out infinite;
}

.lx-particle--1 { top: 24%; left: 5%; }
.lx-particle--2 { top: 74%; left: 44%; animation-delay: -2s; }
.lx-particle--3 { top: 18%; right: 8%; animation-delay: -4s; }
.lx-particle--4 { right: 43%; bottom: 10%; animation-delay: -1s; }

.lx-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.82fr);
	align-items: center;
	gap: clamp(50px, 8vw, 118px);
}

.lx-hero__content {
	max-width: 720px;
}

.lx-pill {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 14px;
	margin-bottom: 26px !important;
	color: var(--lx-accent);
	background: rgba(218, 219, 8, 0.09);
	border: 1px solid rgba(218, 219, 8, 0.35);
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lx-hero h1 {
	max-width: 760px;
	margin-bottom: 26px;
	font-size: clamp(3.2rem, 6vw, 6.25rem);
	font-weight: 350;
	letter-spacing: -0.058em;
	line-height: 0.96;
}

.lx-hero h1 span,
.lx-hero h1 strong {
	display: block;
}

.lx-hero h1 strong {
	color: var(--lx-accent);
	font-weight: 750;
}

.lx-hero__description {
	max-width: 620px;
	margin-bottom: 34px !important;
	color: rgba(255, 255, 255, 0.7);
	font-size: clamp(1rem, 1.5vw, 1.16rem);
	line-height: 1.72;
}

.lx-hero__visual {
	position: relative;
	justify-self: end;
	width: min(100%, 470px);
}

.lx-hero__image-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 4px;
	box-shadow: 28px 34px 0 rgba(34, 136, 72, 0.17);
}

.lx-hero__image-frame::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 60%, rgba(4, 4, 4, 0.46));
}

.lx-hero__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lx-trust-badge {
	position: absolute;
	right: -28px;
	bottom: 34px;
	display: grid;
	width: 138px;
	min-height: 124px;
	place-content: center;
	padding: 18px;
	color: var(--lx-dark);
	background: var(--lx-accent);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
	text-align: center;
}

.lx-trust-badge strong {
	font-size: 2.2rem;
	line-height: 1;
}

.lx-trust-badge span {
	margin-top: 7px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.lx-scroll-cue {
	position: absolute;
	z-index: 3;
	bottom: 26px;
	left: 50%;
	width: 26px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	transform: translateX(-50%);
}

.lx-scroll-cue span {
	position: absolute;
	top: 8px;
	left: 50%;
	width: 4px;
	height: 8px;
	background: var(--lx-accent);
	border-radius: 999px;
	transform: translateX(-50%);
	animation: lx-scroll 1.8s ease-in-out infinite;
}

.lx-stats {
	color: #fff;
	background: var(--lx-green);
}

.lx-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.lx-stat {
	position: relative;
	padding: 34px 30px;
	text-align: center;
}

.lx-stat:not(:last-child)::after {
	position: absolute;
	top: 26%;
	right: 0;
	bottom: 26%;
	width: 1px;
	content: "";
	background: rgba(255, 255, 255, 0.25);
}

.lx-stat strong {
	display: block;
	font-size: clamp(2rem, 4vw, 3.4rem);
	font-weight: 750;
	letter-spacing: -0.055em;
	line-height: 1;
}

.lx-stat p {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lx-about {
	padding: clamp(90px, 10vw, 150px) 0;
	background: #fff;
}

.lx-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
	align-items: center;
	gap: clamp(64px, 9vw, 130px);
}

.lx-about__content {
	padding-left: clamp(22px, 3vw, 42px);
	border-left: 3px solid var(--lx-accent);
}

.lx-section-label {
	margin-bottom: 18px;
	color: var(--lx-green);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lx-about h2,
.lx-section-heading h2,
.lx-why h2,
.lx-final-cta h2,
.lx-clients h2 {
	font-size: clamp(2.35rem, 4.2vw, 4.65rem);
	font-weight: 450;
	letter-spacing: -0.055em;
	line-height: 1.02;
}

.lx-about__content > p {
	max-width: 680px;
	margin-top: 22px;
	color: var(--lx-muted);
	line-height: 1.8;
}

.lx-about__content > p + p {
	color: var(--lx-dark);
	font-weight: 700;
}

.lx-differences {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 42px;
	gap: 30px 34px;
}

.lx-differences article {
	display: grid;
	grid-template-columns: 46px 1fr;
	gap: 15px;
}

.lx-difference__icon,
.lx-service-card__icon {
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	color: var(--lx-green);
	background: rgba(218, 219, 8, 0.09);
}

.lx-difference__icon svg,
.lx-service-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lx-differences h3 {
	margin-bottom: 7px;
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.lx-differences p {
	color: var(--lx-muted);
	font-size: 0.85rem;
	line-height: 1.6;
}

.lx-about__media {
	position: relative;
	aspect-ratio: 4 / 5;
	margin: 0;
	box-shadow: -24px 28px 0 var(--lx-line);
	will-change: transform;
}

.lx-about__media::before {
	position: absolute;
	z-index: 2;
	top: -18px;
	right: -18px;
	width: 90px;
	height: 90px;
	content: "";
	border-top: 3px solid var(--lx-accent);
	border-right: 3px solid var(--lx-accent);
}

.lx-about__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes lx-float {
	0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.45; }
	50% { transform: translate3d(10px, -24px, 0); opacity: 1; }
}

@keyframes lx-scroll {
	0% { transform: translate(-50%, 0); opacity: 0; }
	30% { opacity: 1; }
	100% { transform: translate(-50%, 15px); opacity: 0; }
}

.lx-section-heading {
	max-width: 760px;
	margin-bottom: 52px;
}

.lx-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.lx-section-heading p {
	max-width: 640px;
	margin-top: 20px;
	color: var(--lx-muted);
	line-height: 1.75;
}

.lx-section-heading--center p {
	margin-inline: auto;
}

.lx-section-action {
	margin-top: 46px;
	text-align: center;
}

.lx-services {
	padding: clamp(90px, 10vw, 145px) 0;
	color: #fff;
	background:
		radial-gradient(circle at 12% 10%, rgba(34, 136, 72, 0.18), transparent 25%),
		var(--lx-dark);
}

.lx-services .lx-section-heading p {
	color: rgba(255, 255, 255, 0.6);
}

.lx-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.lx-service-card {
	position: relative;
	min-height: 258px;
	padding: 42px 36px;
	overflow: hidden;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	transition: background-color 220ms ease, transform 220ms ease;
}

.lx-service-card::after {
	position: absolute;
	right: -50px;
	bottom: -50px;
	width: 130px;
	height: 130px;
	content: "";
	background: rgba(218, 219, 8, 0.07);
	border-radius: 50%;
	transition: transform 260ms ease;
}

.lx-service-card:hover {
	z-index: 1;
	background: #101b15;
	transform: translateY(-4px);
}

.lx-service-card:hover::after {
	transform: scale(1.6);
}

.lx-service-card__icon {
	margin-bottom: 32px;
	color: var(--lx-accent);
	background: rgba(218, 219, 8, 0.1);
}

.lx-service-card h3 {
	margin-bottom: 13px;
	font-size: clamp(1.15rem, 1.8vw, 1.5rem);
	font-weight: 650;
	letter-spacing: -0.035em;
}

.lx-service-card p {
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.88rem;
	line-height: 1.68;
}

.lx-segments {
	padding: clamp(90px, 10vw, 145px) 0;
	background: var(--lx-paper);
}

.lx-segments__tabs {
	display: flex;
	margin-bottom: 40px;
	overflow-x: auto;
	border-bottom: 1px solid #cfd8d4;
	scrollbar-width: thin;
}

.lx-segments__tabs button {
	position: relative;
	flex: 1 0 auto;
	min-width: 150px;
	padding: 17px 16px;
	color: var(--lx-muted);
	background: transparent;
	border: 0;
	cursor: pointer;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-align: center;
}

.lx-segments__tabs button::after {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 3px;
	content: "";
	background: var(--lx-accent);
	transform: scaleX(0);
	transition: transform 180ms ease;
}

.lx-segments__tabs button[aria-selected="true"] {
	color: var(--lx-green);
}

.lx-segments__tabs button[aria-selected="true"]::after {
	transform: scaleX(1);
}

.lx-segment-panel {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
	min-height: 520px;
	background: #fff;
	box-shadow: 0 28px 80px rgba(4, 28, 18, 0.09);
}

.lx-segment-panel[hidden] {
	display: none;
}

.lx-segment-panel__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(38px, 6vw, 82px);
}

.lx-segment-panel__copy h3 {
	margin-bottom: 38px;
	font-size: clamp(2rem, 3.5vw, 3.5rem);
	font-weight: 500;
}

.lx-segment-point {
	padding: 23px 0;
	border-top: 1px solid var(--lx-line);
}

.lx-segment-point > span {
	display: block;
	margin-bottom: 8px;
	color: var(--lx-green);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lx-segment-point--pain > span {
	color: #7a5c5c;
}

.lx-segment-point p {
	color: var(--lx-muted);
	font-size: 0.94rem;
	line-height: 1.7;
}

.lx-segment-panel__media {
	position: relative;
	min-height: 100%;
	overflow: hidden;
}

.lx-segment-panel__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(4, 4, 4, 0.12), transparent 40%);
}

.lx-segment-panel__media img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	transition: transform 700ms ease;
}

.lx-segment-panel:hover .lx-segment-panel__media img {
	transform: scale(1.025);
}

.lx-why {
	position: relative;
	padding: clamp(85px, 9vw, 132px) 0;
	overflow: hidden;
	color: #fff;
	background: var(--lx-green);
}

.lx-why__shape {
	position: absolute;
	top: -45%;
	right: -9%;
	width: min(54vw, 760px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 50%;
}

.lx-why__shape::before,
.lx-why__shape::after {
	position: absolute;
	inset: 17%;
	content: "";
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.lx-why__shape::after {
	inset: 34%;
}

.lx-why__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
	align-items: start;
	gap: clamp(70px, 10vw, 145px);
}

.lx-why h2 {
	max-width: 520px;
}

.lx-why__grid > div > p {
	max-width: 540px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.74);
	line-height: 1.78;
}

.lx-why__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 0;
	margin: 0;
	gap: 0 34px;
	list-style: none;
}

.lx-why__list li {
	display: grid;
	grid-template-columns: 26px 1fr;
	align-items: start;
	padding: 20px 0;
	gap: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	font-size: 0.89rem;
	font-weight: 650;
	line-height: 1.5;
}

.lx-why__list li span {
	display: grid;
	width: 21px;
	height: 21px;
	place-items: center;
	color: var(--lx-green);
	background: var(--lx-accent);
	border-radius: 50%;
	font-size: 0.68rem;
	font-weight: 900;
}

.lx-clients {
	padding: 86px 0 74px;
	overflow: hidden;
	color: #fff;
	background: var(--lx-dark);
}

.lx-clients h2 {
	max-width: 670px;
	margin-bottom: 46px;
	font-size: clamp(2rem, 3.8vw, 4rem);
}

.lx-marquees {
	display: grid;
	gap: 16px;
}

.lx-marquee {
	display: flex;
	width: max-content;
	padding: 0;
	margin: 0;
	gap: 16px;
	list-style: none;
	will-change: transform;
}

.lx-marquee li {
	display: grid;
	min-width: 210px;
	height: 76px;
	place-items: center;
	padding: 14px 28px;
	color: rgba(255, 255, 255, 0.62);
	background: #111512;
	border: 1px solid rgba(255, 255, 255, 0.1);
	font-family: "Manrope Limpex", sans-serif;
	font-size: 0.86rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-align: center;
	text-transform: uppercase;
}

.lx-marquee--forward {
	animation: lx-marquee-forward 34s linear infinite;
}

.lx-marquee--reverse {
	animation: lx-marquee-reverse 38s linear infinite;
}

.lx-marquees:hover .lx-marquee {
	animation-play-state: paused;
}

@keyframes lx-marquee-forward {
	to { transform: translateX(calc(-50% - 8px)); }
}

@keyframes lx-marquee-reverse {
	from { transform: translateX(calc(-50% - 8px)); }
	to { transform: translateX(0); }
}

.lx-testimonials {
	padding: clamp(90px, 10vw, 145px) 0;
	background: #fff;
}

.lx-testimonials__inner {
	position: relative;
	max-width: 920px;
	text-align: center;
}

.lx-quote-mark {
	height: 78px;
	color: var(--lx-accent);
	font-family: Georgia, serif;
	font-size: 7.5rem;
	line-height: 0.9;
}

.lx-testimonial-slides {
	min-height: 270px;
}

.lx-testimonial-slides blockquote {
	padding: 0;
	margin: 0;
}

.lx-testimonial-slides blockquote[hidden] {
	display: none;
}

.lx-testimonial-slides blockquote > p {
	font-family: "Manrope Limpex", sans-serif;
	font-size: clamp(1.45rem, 3vw, 2.55rem);
	font-weight: 430;
	letter-spacing: -0.04em;
	line-height: 1.38;
}

.lx-testimonial-slides footer {
	display: grid;
	margin-top: 30px;
	gap: 5px;
}

.lx-testimonial-slides footer strong {
	font-size: 0.9rem;
}

.lx-testimonial-slides footer span {
	color: var(--lx-muted);
	font-size: 0.76rem;
}

.lx-testimonial-dots {
	display: flex;
	justify-content: center;
	margin-top: 26px;
	gap: 9px;
}

.lx-testimonial-dots button {
	width: 9px;
	height: 9px;
	padding: 0;
	background: #c8d1cd;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
}

.lx-testimonial-dots button[aria-pressed="true"] {
	width: 30px;
	background: var(--lx-green);
	border-radius: 999px;
}

.lx-final-cta {
	position: relative;
	padding: clamp(88px, 10vw, 142px) 0;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 50% 110%, rgba(218, 219, 8, 0.16), transparent 38%),
		var(--lx-dark);
	text-align: center;
}

.lx-final-cta__line {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 58px;
	background: linear-gradient(var(--lx-accent), transparent);
	animation: lx-line-pulse 2.4s ease-in-out infinite;
}

.lx-final-cta__inner {
	position: relative;
	max-width: 900px;
}

.lx-final-cta h2 {
	max-width: 840px;
	margin-inline: auto;
}

.lx-final-cta p {
	max-width: 650px;
	margin: 23px auto 34px;
	color: rgba(255, 255, 255, 0.65);
	font-size: 1.02rem;
	line-height: 1.75;
}

.lx-final-cta .lx-button--primary span {
	color: var(--lx-green);
	font-size: 0.62rem;
}

.lx-blog {
	padding: clamp(90px, 10vw, 145px) 0;
	background: var(--lx-paper);
}

.lx-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.lx-blog-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 18px 50px rgba(4, 28, 18, 0.07);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.lx-blog-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 26px 60px rgba(4, 28, 18, 0.13);
}

.lx-blog-card__media {
	position: relative;
	aspect-ratio: 8 / 5;
	overflow: hidden;
	background: var(--lx-line);
}

.lx-blog-card__media::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 55%, rgba(4, 4, 4, 0.22));
}

.lx-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.lx-blog-card:hover .lx-blog-card__media img {
	transform: scale(1.045);
}

.lx-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 30px;
}

.lx-blog-card__body > span {
	margin-bottom: 13px;
	color: var(--lx-green);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lx-blog-card h3 {
	margin-bottom: 14px;
	font-size: 1.28rem;
	font-weight: 680;
	line-height: 1.28;
}

.lx-blog-card p {
	margin-bottom: 25px;
	color: var(--lx-muted);
	font-size: 0.86rem;
	line-height: 1.65;
}

.lx-blog-card__body > strong {
	margin-top: auto;
	color: var(--lx-green);
	font-size: 0.76rem;
	letter-spacing: 0.04em;
}

.site-footer {
	padding-top: 76px;
	background: var(--lx-dark);
}

.site-footer__grid {
	grid-template-columns: 1.35fr 0.85fr 1fr 1.25fr;
	padding-bottom: 64px;
	gap: clamp(34px, 5vw, 72px);
}

.site-footer .site-brand--footer,
.site-footer .site-brand--footer img,
.site-footer .site-brand--footer .custom-logo {
	width: 166px;
	filter: none;
}

.site-footer .site-brand--footer .custom-logo {
	filter: brightness(0) invert(1);
}

.site-footer__brand > p {
	margin-top: 22px;
	font-size: 0.84rem;
	line-height: 1.7;
}

.site-footer__column h2 {
	color: var(--lx-accent);
	font-family: "Inter Limpex", sans-serif;
	font-size: 0.67rem;
	font-weight: 850;
}

.site-footer .footer-menu,
.site-footer .site-footer__column .menu,
.site-footer .footer-services,
.site-footer .contact-list {
	display: grid;
	padding: 0;
	margin: 0;
	gap: 10px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.82rem;
	list-style: none;
}

.site-footer .social-links {
	display: flex;
	margin-top: 25px;
	gap: 9px;
}

.site-footer .social-links a {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-size: 0.78rem;
	font-weight: 800;
}

.site-footer .social-links svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
}

.site-footer__bottom {
	font-size: 0.7rem;
}

@keyframes lx-line-pulse {
	0%, 100% { opacity: 0.35; transform: scaleY(0.6); transform-origin: top; }
	50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 1080px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.site-header .site-header__cta {
		order: initial;
	}

	.site-header .menu-toggle {
		order: initial;
	}

	.site-header--home .primary-navigation.is-open {
		color: var(--lx-dark);
		background: #fff;
	}

	.lx-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
		gap: 56px;
	}

	.lx-trust-badge {
		right: -12px;
	}

	.lx-about__grid {
		gap: 64px;
	}

	.lx-services__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.lx-service-card {
		padding: 34px 28px;
	}

	.lx-why__grid {
		grid-template-columns: minmax(0, 0.8fr) minmax(390px, 1.2fr);
		gap: 58px;
	}

	.site-footer__grid {
		grid-template-columns: 1.2fr 0.8fr 1fr;
	}

	.site-footer__column:last-child {
		grid-column: auto;
	}
}

@media (max-width: 900px) {
	.lx-hero {
		min-height: auto;
		padding-top: calc(var(--header-height) + 88px);
	}

	.lx-hero__grid,
	.lx-about__grid,
	.lx-why__grid {
		grid-template-columns: 1fr;
	}

	.lx-hero__content {
		max-width: 760px;
	}

	.lx-hero__visual {
		justify-self: center;
		width: min(78vw, 520px);
	}

	.lx-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lx-stat:nth-child(2)::after {
		display: none;
	}

	.lx-stat:nth-child(-n + 2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
	}

	.lx-about__media {
		width: min(86%, 620px);
		margin-inline: auto;
	}

	.lx-services__grid,
	.lx-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lx-segment-panel {
		grid-template-columns: 1fr;
	}

	.lx-segment-panel__media,
	.lx-segment-panel__media img {
		min-height: 390px;
	}

	.lx-why__list {
		max-width: 740px;
	}

	.site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	:root {
		--header-height: 70px;
	}

	.site-header,
	.site-header--home.is-scrolled {
		height: var(--header-height);
	}

	.site-header .site-brand,
	.site-header .site-brand img,
	.site-header .site-brand .custom-logo {
		width: 132px;
	}

	.site-header .menu-toggle {
		width: 42px;
		height: 42px;
		border-radius: 8px;
	}

	.lx-hero {
		padding: calc(var(--header-height) + 66px) 0 72px;
	}

	.lx-hero h1 {
		font-size: clamp(2.9rem, 14vw, 4.35rem);
	}

	.lx-pill {
		margin-bottom: 20px !important;
	}

	.lx-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.lx-button {
		width: 100%;
	}

	.lx-hero__visual {
		width: min(88vw, 430px);
	}

	.lx-hero__image-frame {
		box-shadow: 14px 18px 0 rgba(34, 136, 72, 0.2);
	}

	.lx-trust-badge {
		right: 10px;
		bottom: 18px;
		width: 112px;
		min-height: 102px;
	}

	.lx-trust-badge strong {
		font-size: 1.8rem;
	}

	.lx-scroll-cue {
		display: none;
	}

	.lx-stat {
		padding: 26px 10px;
	}

	.lx-stat strong {
		font-size: 2.15rem;
	}

	.lx-stat p {
		font-size: 0.61rem;
	}

	.lx-about__content {
		padding-left: 20px;
	}

	.lx-differences {
		grid-template-columns: 1fr;
	}

	.lx-about__media {
		width: calc(100% - 20px);
		box-shadow: -13px 16px 0 var(--lx-line);
	}

	.lx-section-heading {
		margin-bottom: 38px;
	}

	.lx-services__grid,
	.lx-blog__grid {
		grid-template-columns: 1fr;
	}

	.lx-service-card {
		min-height: 225px;
		padding: 34px 28px;
	}

	.lx-segments__tabs button {
		min-width: 138px;
	}

	.lx-segment-panel__copy {
		padding: 34px 24px;
	}

	.lx-segment-panel__media,
	.lx-segment-panel__media img {
		min-height: 300px;
	}

	.lx-why__list {
		grid-template-columns: 1fr;
	}

	.lx-marquee li {
		min-width: 175px;
		height: 66px;
		padding-inline: 20px;
		font-size: 0.75rem;
	}

	.lx-testimonial-slides {
		min-height: 330px;
	}

	.lx-final-cta .lx-actions {
		width: min(100%, 360px);
		margin-inline: auto;
	}

	.lx-blog-card__body {
		padding: 26px 24px;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 42px;
	}

	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lx-particle,
	.lx-scroll-cue span,
	.lx-marquee,
	.lx-final-cta__line {
		animation: none !important;
	}

	.lx-hero__backdrop,
	.lx-about__media {
		transform: none !important;
	}
}

.lx-services .lx-section-label,
.lx-final-cta .lx-section-label {
	color: var(--lx-accent);
}

/* Fidelity pass ? Limpex Home Standalone */
.lx-home .container,
.limpex-front-page .site-header .container,
.limpex-front-page .site-footer .container {
	width: min(100%, 1240px);
	padding-right: 32px;
	padding-left: 32px;
}

.limpex-front-page .site-header,
.limpex-front-page .site-header--home.is-scrolled {
	height: auto;
	padding: 20px 0;
	color: #fff;
	background: rgba(4, 4, 4, 0);
	border-bottom: 0;
	box-shadow: none;
	transition: padding 350ms ease, background 350ms ease, backdrop-filter 350ms ease, box-shadow 350ms ease;
}

.limpex-front-page .site-header--home.is-scrolled {
	padding: 14px 0;
	background: rgba(4, 4, 4, 0.85);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
}

.limpex-front-page .site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: auto;
	gap: 24px;
}

.limpex-front-page .site-header .site-brand,
.limpex-front-page .site-header .site-brand img,
.limpex-front-page .site-header .site-brand .custom-logo {
	width: auto;
	height: 30px;
}

.limpex-front-page .site-header .primary-navigation {
	margin-left: auto;
}

.limpex-front-page .site-header .primary-navigation .menu {
	gap: 30px;
}

.limpex-front-page .site-header .primary-navigation a {
	padding: 0 0 5px;
	color: #dde5e1;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1;
}

.limpex-front-page .site-header .primary-navigation a::after {
	bottom: 0;
	height: 2px;
}

.limpex-front-page .site-header .primary-navigation a:hover,
.limpex-front-page .site-header .primary-navigation a:focus-visible {
	color: #dadb08;
}

.limpex-front-page .site-header--home .site-header__cta,
.limpex-front-page .site-header--home.is-scrolled .site-header__cta {
	min-height: 0;
	padding: 12px 22px;
	color: #fff;
	background: #228848;
	border-color: #228848;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
}

.limpex-front-page .site-header--home .site-header__cta:hover,
.limpex-front-page .site-header--home.is-scrolled .site-header__cta:hover {
	color: #fff;
	background: #30985f;
	border-color: #30985f;
	transform: scale(1.03);
}

.lx-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: 0;
	overflow: hidden;
	color: #fff;
	background: #040404;
}

.lx-hero::before {
	position: absolute;
	z-index: 1;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, rgba(4, 4, 4, 0.55) 0%, rgba(4, 4, 4, 0.25) 55%, rgba(4, 4, 4, 0.55) 100%);
	pointer-events: none;
}

.lx-hero__backdrop {
	position: absolute;
	z-index: 0;
	inset: -12% 0 0;
	height: 124%;
	background: linear-gradient(180deg, #040404 0%, #063525 42%, #dadb08 140%);
	will-change: transform;
}

.lx-hero__grain {
	position: absolute;
	z-index: 1;
	inset: 0;
	opacity: 0.04;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	background-size: 180px 180px;
	mix-blend-mode: overlay;
	pointer-events: none;
}

.lx-particle {
	position: absolute;
	z-index: 2;
	background: #dadb08;
	border-radius: 50%;
	box-shadow: none;
}

.lx-particle--1 {
	top: 28%;
	left: 12%;
	width: 14px;
	height: 14px;
	opacity: 0.09;
	animation: lx-original-p1 7s ease-in-out infinite;
}

.lx-particle--2 {
	top: 22%;
	right: auto;
	left: 78%;
	width: 9px;
	height: 9px;
	opacity: 0.1;
	animation: lx-original-p2 9s ease-in-out infinite;
}

.lx-particle--3 {
	top: 62%;
	right: auto;
	bottom: auto;
	left: 64%;
	width: 16px;
	height: 16px;
	opacity: 0.07;
	animation: lx-original-p3 11s ease-in-out infinite;
}

.lx-particle--4 {
	top: 70%;
	right: auto;
	bottom: auto;
	left: 30%;
	width: 6px;
	height: 6px;
	opacity: 0.1;
	animation: lx-original-p4 8s ease-in-out infinite;
}

.lx-particle--5 {
	top: 18%;
	left: 46%;
	width: 5px;
	height: 5px;
	opacity: 0.1;
	animation: lx-original-p2 10s ease-in-out infinite;
}

.lx-particle--6 {
	top: 58%;
	left: 86%;
	width: 11px;
	height: 11px;
	opacity: 0.08;
	animation: lx-original-p1 12s ease-in-out infinite;
}

.lx-hero__grid {
	position: relative;
	z-index: 5;
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	align-items: center;
	padding-top: 120px;
	padding-bottom: 80px;
	gap: 56px;
}

.lx-hero__content {
	max-width: none;
}

.lx-pill {
	display: inline-flex;
	align-items: center;
	min-height: 0;
	padding: 8px 14px;
	margin-bottom: 26px !important;
	gap: 8px;
	color: #040404;
	background: #dadb08;
	border: 0;
	border-radius: 100px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1;
	text-transform: none;
}

.lx-hero h1 {
	max-width: none;
	margin-bottom: 8px;
	font-size: clamp(38px, 5vw, 68px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.04;
}

.lx-hero h1 strong {
	color: transparent;
	background: linear-gradient(90deg, #30985f, #dadb08);
	-webkit-background-clip: text;
	background-clip: text;
	font-weight: 800;
}

.lx-hero__description {
	max-width: 540px;
	margin: 24px 0 36px !important;
	color: #dde5e1;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.02em;
	line-height: 1.6;
}

.lx-hero .lx-actions {
	gap: 16px;
}

.lx-hero .lx-button {
	min-height: 0;
	padding: 16px 28px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}

.lx-hero .lx-button:hover {
	transform: scale(1.03);
}

.lx-hero .lx-button--primary {
	color: #fff;
	background: #228848;
	border-color: #228848;
}

.lx-hero .lx-button--primary:hover {
	color: #fff;
	background: #30985f;
	border-color: #30985f;
}

.lx-hero .lx-button--outline {
	color: #dadb08;
	background: transparent;
	border: 1.5px solid #dadb08;
}

.lx-hero .lx-button--outline:hover {
	color: #dadb08;
	background: rgba(218, 219, 8, 0.1);
	border-color: #dadb08;
}

.lx-hero__visual {
	position: relative;
	justify-self: stretch;
	width: 100%;
	max-width: none;
}

.lx-hero__image-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #0c1a14;
	border: 1px solid rgba(34, 136, 72, 0.55);
	border-radius: 16px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lx-hero__image-frame::after {
	display: none;
}

.lx-trust-badge {
	position: absolute;
	right: -14px;
	bottom: -18px;
	display: flex;
	align-items: center;
	width: auto;
	min-height: 0;
	padding: 14px 18px;
	gap: 10px;
	color: inherit;
	background: rgba(34, 136, 72, 0.15);
	border: 1px solid #228848;
	border-radius: 12px;
	box-shadow: none;
	text-align: left;
	backdrop-filter: blur(8px);
	animation: lx-original-float 3s ease-in-out infinite;
}

.lx-trust-badge strong {
	color: #dadb08;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
}

.lx-trust-badge span {
	max-width: 72px;
	margin: 0;
	color: #dde5e1;
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.3;
	text-transform: none;
}

.lx-scroll-cue {
	position: absolute;
	z-index: 6;
	bottom: 30px;
	left: 50%;
	display: block;
	width: 26px;
	height: 26px;
	color: #dadb08;
	border: 0;
	border-radius: 0;
	transform: translateX(-50%);
	animation: lx-original-blink 2s ease-in-out infinite;
}

.lx-scroll-cue svg {
	display: block;
}

.lx-stats {
	padding: 56px 0;
	color: #fff;
	background: #1f1f1f;
	border-top: 2px solid #228848;
}

.lx-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.lx-stat {
	padding: 0;
	text-align: center;
}

.lx-stat::after {
	display: none !important;
}

.lx-stat strong {
	color: #dadb08;
	font-size: clamp(34px, 3.4vw, 46px);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.05;
}

.lx-stat:last-child strong {
	font-size: clamp(22px, 2.3vw, 30px);
}

.lx-stat p {
	margin-top: 10px;
	color: #dde5e1;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1.4;
	text-transform: none;
}

@keyframes lx-original-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}

@keyframes lx-original-p1 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(14px, -22px); }
}

@keyframes lx-original-p2 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-18px, 18px); }
}

@keyframes lx-original-p3 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(10px, 24px); }
}

@keyframes lx-original-p4 {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(-12px, -16px); }
}

@keyframes lx-original-blink {
	0%, 100% { opacity: 0.25; transform: translate(-50%, 0); }
	50% { opacity: 1; transform: translate(-50%, 5px); }
}

.lx-about {
	padding: 110px 0;
	background: #f7f9f8;
}

.lx-about__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 64px;
}

.lx-about__content {
	padding-left: 30px;
	border-left: 3px solid #228848;
}

.lx-about .lx-section-label {
	margin-bottom: 16px;
	color: #228848;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
}

.lx-about h2 {
	margin-bottom: 22px;
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.12;
}

.lx-about__content > p,
.lx-about__content > p + p {
	max-width: none;
	margin-top: 0;
	margin-bottom: 16px;
	color: #5f6b66;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

.lx-about__content > p + p {
	margin-bottom: 0;
}

.lx-differences {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 36px;
	gap: 22px 28px;
}

.lx-differences article {
	display: flex;
	align-items: flex-start;
	grid-template-columns: none;
	gap: 12px;
}

.lx-difference__icon {
	display: block;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	margin-top: 2px;
	color: #dadb08;
	background: transparent;
}

.lx-difference__icon svg {
	width: 28px;
	height: 28px;
}

.lx-differences h3 {
	margin-bottom: 3px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.3;
}

.lx-differences p {
	color: #5f6b66;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.5;
}

.lx-about__media {
	position: relative;
	aspect-ratio: 4 / 5;
	margin: 0;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 24px 60px rgba(31, 31, 31, 0.12);
	will-change: transform;
}

.lx-about__media::before {
	display: none;
}

.lx-services {
	padding: 110px 0;
	color: #fff;
	background: #040404;
}

.lx-services .lx-section-label {
	display: none;
}

.lx-services .lx-section-heading {
	max-width: 680px;
	margin: 0 auto 56px;
	text-align: center;
}

.lx-services .lx-section-heading h2 {
	font-size: clamp(28px, 3.6vw, 44px);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.1;
}

.lx-services .lx-section-heading p {
	max-width: none;
	margin: 16px 0 0;
	color: #8a948f;
	font-size: 17px;
	font-weight: 300;
	line-height: 1.6;
}

.lx-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	border: 0;
}

.lx-service-card {
	position: relative;
	min-height: 0;
	padding: 30px 26px 28px;
	overflow: visible;
	color: #dadb08;
	background: #1f1f1f;
	border: 0;
	border-bottom: 2px solid #228848;
	border-radius: 14px;
	transition: transform 300ms ease, background 300ms ease, box-shadow 300ms ease, color 300ms ease;
}

.lx-service-card::after {
	display: none;
}

.lx-service-card:hover {
	background: linear-gradient(135deg, #228848, #30985f);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
	transform: translateY(-4px);
}

.lx-service-card__icon {
	display: block;
	width: 28px;
	height: 28px;
	margin-bottom: 20px;
	color: #dadb08;
	background: transparent;
}

.lx-service-card__icon svg {
	width: 28px;
	height: 28px;
}

.lx-service-card:hover .lx-service-card__icon {
	color: #fff;
}

.lx-service-card h3 {
	margin-bottom: 8px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
}

.lx-service-card p {
	color: #dde5e1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

.lx-services .lx-section-action {
	margin-top: 48px;
}

.lx-services .lx-section-action .lx-button {
	min-height: 0;
	padding: 16px 30px;
	color: #fff;
	background: #228848;
	border-color: #228848;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
}

.lx-services .lx-section-action .lx-button:hover {
	color: #fff;
	background: #30985f;
	border-color: #30985f;
	transform: scale(1.03);
}

.lx-segments {
	padding: 110px 0;
	background: #f7f9f8;
}

.lx-segments .lx-section-heading {
	max-width: 720px;
	margin-bottom: 44px;
}

.lx-segments .lx-section-heading .lx-section-label {
	margin-bottom: 14px;
	color: #228848;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
}

.lx-segments .lx-section-heading h2 {
	font-size: clamp(28px, 3.4vw, 42px);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.12;
}

.lx-segments .lx-section-heading > p {
	display: none;
}

.lx-segments__tabs {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 36px;
	overflow: visible;
	gap: 10px;
	border: 0;
}

.lx-segments__tabs button {
	position: relative;
	flex: 0 0 auto;
	min-width: 0;
	padding: 11px 18px;
	color: #5f6b66;
	background: #fff;
	border: 1px solid #dde5e1;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	transition: all 250ms ease;
}

.lx-segments__tabs button::after {
	display: none;
}

.lx-segments__tabs button:hover {
	color: #228848;
	border-color: #228848;
}

.lx-segments__tabs button[aria-selected="true"] {
	color: #fff;
	background: #228848;
	border-color: #228848;
}

.lx-segment-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	min-height: 0;
	padding: 44px;
	gap: 48px;
	background: #fff;
	border: 1px solid #dde5e1;
	border-radius: 18px;
	box-shadow: 0 10px 40px rgba(31, 31, 31, 0.05);
}

.lx-segment-panel[hidden] {
	display: none;
}

.lx-segment-panel__copy {
	display: block;
	padding: 0;
}

.lx-segment-panel.is-entering .lx-segment-panel__copy {
	transform-origin: center;
	animation: lx-original-line 400ms ease both;
}

.lx-segment-panel__copy h3 {
	margin-bottom: 24px;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
}

.lx-segment-point,
.lx-segment-point--pain {
	padding: 0;
	border: 0;
}

.lx-segment-point--pain {
	margin-bottom: 22px;
}

.lx-segment-point > span {
	display: block;
	margin-bottom: 8px;
	color: #228848;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
}

.lx-segment-point--pain > span {
	color: rgba(192, 57, 43, 0.85);
}

.lx-segment-point p {
	color: #1f1f1f;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
}

.lx-segment-point--pain p {
	color: #5f6b66;
}

.lx-segment-panel__media {
	position: relative;
	min-height: 0;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background: #e6ece9;
	border-radius: 14px;
}

.lx-segment-panel__media::after {
	display: none;
}

.lx-segment-panel__media img {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	transition: none;
}

.lx-segment-panel:hover .lx-segment-panel__media img {
	transform: none;
}

@keyframes lx-original-line {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

.lx-why {
	position: relative;
	padding: 110px 0;
	overflow: hidden;
	color: #040404;
	background: linear-gradient(135deg, #228848 0%, #30985f 48%, #dadb08 100%);
}

.lx-why__shape {
	position: absolute;
	top: -160px;
	right: -160px;
	width: 520px;
	height: 520px;
	aspect-ratio: auto;
	background: #040404;
	border: 0;
	border-radius: 42% 58% 60% 40% / 45% 45% 55% 55%;
	opacity: 0.1;
	animation: lx-original-rotate 30s linear infinite;
}

.lx-why__shape::before,
.lx-why__shape::after {
	display: none;
}

.lx-why__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	align-items: start;
	gap: 64px;
}

.lx-why h2 {
	max-width: none;
	margin-bottom: 20px;
	color: #fff;
	font-size: clamp(30px, 3.8vw, 48px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
}

.lx-why__grid > div > p {
	max-width: none;
	margin-top: 0;
	color: rgba(255, 255, 255, 0.92);
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6;
}

.lx-why__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	padding: 0;
	margin: 0;
	gap: 16px 28px;
}

.lx-why__list li {
	display: flex;
	align-items: flex-start;
	grid-template-columns: none;
	padding: 0;
	gap: 12px;
	color: #040404;
	border: 0;
	font-size: 15.5px;
	font-weight: 500;
	line-height: 1.45;
}

.lx-why__list li span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	margin-top: 1px;
	color: #040404;
	background: #dadb08;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 900;
}

.lx-clients {
	padding: 90px 0;
	overflow: hidden;
	color: #fff;
	background: #1f1f1f;
}

.lx-clients > .container {
	text-align: center;
}

.lx-clients h2 {
	max-width: none;
	margin-bottom: 48px;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.1;
}

.lx-marquees {
	display: flex;
	flex-direction: column;
	gap: 20px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.lx-marquee {
	display: flex;
	width: max-content;
	gap: 20px;
}

.lx-marquee li {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	height: 64px;
	padding: 0 30px;
	color: #7a847f;
	background: #171717;
	border: 1px solid #333;
	border-radius: 10px;
	filter: grayscale(1);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
	text-transform: none;
	transition: filter 400ms ease, color 300ms ease, border-color 300ms ease;
}

.lx-marquee li:hover {
	color: #dadb08;
	border-color: #228848;
	filter: grayscale(0);
}

.lx-marquee--forward {
	animation: lx-original-marquee 38s linear infinite;
}

.lx-marquee--reverse {
	animation: lx-original-marquee-reverse 44s linear infinite;
}

.lx-testimonials {
	padding: 110px 0;
	background: #f7f9f8;
}

.lx-testimonials__inner {
	position: relative;
	max-width: 920px;
	text-align: center;
}

.lx-quote-mark {
	height: 46px;
	color: #dadb08;
	font-family: "Manrope Limpex", sans-serif;
	font-size: 90px;
	font-weight: 800;
	line-height: 0.6;
}

.lx-testimonial-slides {
	min-height: 0;
}

.lx-testimonial-slides blockquote.is-entering {
	transform-origin: center;
	animation: lx-original-line 500ms ease both;
}

.lx-testimonial-slides blockquote > p {
	max-width: 780px;
	margin: 0 auto 28px;
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.45;
}

.lx-testimonial-slides footer {
	display: block;
	margin-top: 0;
}

.lx-testimonial-slides footer strong {
	display: block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.lx-testimonial-slides footer span {
	display: block;
	margin-top: 2px;
	color: #5f6b66;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}

.lx-testimonial-dots {
	display: flex;
	justify-content: center;
	margin-top: 34px;
	gap: 10px;
}

.lx-testimonial-dots button {
	width: 10px;
	height: 10px;
	background: #cdd6d1;
	border-radius: 100px;
	transition: all 300ms ease;
}

.lx-testimonial-dots button[aria-pressed="true"] {
	width: 26px;
	background: #228848;
	border-radius: 100px;
}

.lx-final-cta {
	position: relative;
	padding: 110px 0;
	overflow: hidden;
	color: #fff;
	background: #040404;
	text-align: center;
}

.lx-final-cta .lx-section-label {
	display: none;
}

.lx-final-cta__line {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, transparent, #dadb08, transparent);
	transform: scaleX(0);
	transform-origin: left;
	animation: none;
	transition: transform 1600ms ease-out;
}

.lx-final-cta__line.is-visible {
	transform: scaleX(1);
}

.lx-final-cta__inner {
	max-width: 760px;
}

.lx-final-cta h2 {
	max-width: none;
	margin-bottom: 18px;
	font-size: clamp(30px, 4vw, 50px);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.08;
}

.lx-final-cta p {
	max-width: none;
	margin: 0 0 38px;
	color: #dde5e1;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.6;
}

.lx-final-cta .lx-actions {
	gap: 16px;
}

.lx-final-cta .lx-button {
	min-height: 0;
	padding: 17px 30px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}

.lx-final-cta .lx-button:hover {
	transform: scale(1.03);
}

.lx-final-cta .lx-button--primary {
	color: #fff;
	background: #228848;
	border-color: #228848;
}

.lx-final-cta .lx-button--primary:hover {
	color: #fff;
	background: #30985f;
	border-color: #30985f;
}

.lx-final-cta .lx-button--primary > span {
	display: none;
}

.lx-final-cta .lx-button--primary svg {
	flex: 0 0 auto;
}

.lx-final-cta .lx-button--phone {
	color: #fff;
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.lx-final-cta .lx-button--phone:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.7);
}

@keyframes lx-original-rotate {
	to { transform: rotate(360deg); }
}

@keyframes lx-original-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes lx-original-marquee-reverse {
	from { transform: translateX(-50%); }
	to { transform: translateX(0); }
}

.lx-blog {
	padding: 110px 0;
	background: #fff;
}

.lx-blog .lx-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	max-width: none;
	margin-bottom: 44px;
	gap: 24px;
}

.lx-blog .lx-section-label {
	margin-bottom: 14px;
	color: #228848;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
}

.lx-blog .lx-section-heading h2 {
	font-size: clamp(26px, 3vw, 40px);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.1;
}

.lx-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.lx-blog-card {
	display: block;
	min-height: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #dde5e1;
	border-radius: 16px;
	box-shadow: none;
	transition: transform 300ms ease, box-shadow 300ms ease;
}

.lx-blog-card:hover {
	box-shadow: 0 20px 44px rgba(31, 31, 31, 0.12);
	transform: translateY(-4px);
}

.lx-blog-card__media {
	aspect-ratio: 16 / 10;
	background: #e9efec;
}

.lx-blog-card__media::after {
	display: none;
}

.lx-blog-card:hover .lx-blog-card__media img {
	transform: none;
}

.lx-blog-card__body {
	display: block;
	padding: 24px;
}

.lx-blog-card__body > span {
	display: block;
	margin-bottom: 12px;
	color: #228848;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	line-height: 1;
}

.lx-blog-card h3 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.3;
}

.lx-blog-card p {
	margin-bottom: 16px;
	color: #5f6b66;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.55;
}

.lx-blog-card__body > strong {
	color: #228848;
	font-size: 13.5px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}

.limpex-front-page .site-footer {
	padding: 72px 0 36px;
	background: #040404;
	border-top: 3px solid #228848;
}

.limpex-front-page .site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	padding-bottom: 0;
	gap: 40px;
}

.limpex-front-page .site-footer .site-brand--footer,
.limpex-front-page .site-footer .site-brand--footer img,
.limpex-front-page .site-footer .site-brand--footer .custom-logo {
	width: auto;
	height: 28px;
	margin-bottom: 18px;
}

.limpex-front-page .site-footer__brand > p {
	max-width: 260px;
	margin: 0 0 20px;
	color: #8a948f;
	font-size: 14px;
	font-weight: 300;
	line-height: 1.6;
}

.limpex-front-page .site-footer__column h2 {
	margin-bottom: 18px;
	color: #fff;
	font-family: "Manrope Limpex", sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: none;
}

.limpex-front-page .site-footer .footer-menu,
.limpex-front-page .site-footer .site-footer__column .menu,
.limpex-front-page .site-footer .footer-services,
.limpex-front-page .site-footer .contact-list {
	gap: 11px;
	color: #dde5e1;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

.limpex-front-page .site-footer .social-links {
	margin-top: 0;
	gap: 12px;
}

.limpex-front-page .site-footer .social-links a {
	width: 38px;
	height: 38px;
	color: #dde5e1;
	border-color: #2a2a2a;
	border-radius: 9px;
}

.limpex-front-page .site-footer__bottom {
	display: flex;
	margin-top: 48px;
	padding-top: 24px;
	padding-bottom: 0;
	color: #454142;
	border-top-color: #1a1a1a;
	font-size: 13px;
}

.js [data-reveal] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1080px) {
	.limpex-front-page .site-header__inner {
		display: flex;
	}

	.limpex-front-page .site-header .site-header__cta {
		margin-left: auto;
	}

	.limpex-front-page .site-header .primary-navigation {
		margin-left: 0;
	}

	.limpex-front-page .site-header .primary-navigation.is-open {
		top: 70px;
		color: #1f1f1f;
	}

	.limpex-front-page .site-header .primary-navigation .menu {
		gap: 0;
	}

	.limpex-front-page .site-header .primary-navigation a {
		padding: 15px 4px;
		color: #1f1f1f;
		font-size: 16px;
	}

	.lx-hero__grid {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 42px;
	}

	.lx-about__grid {
		gap: 48px;
	}

	.lx-why__grid {
		gap: 48px;
	}

	.limpex-front-page .site-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.lx-hero {
		min-height: auto;
	}

	.lx-hero__grid,
	.lx-about__grid,
	.lx-why__grid {
		grid-template-columns: 1fr;
	}

	.lx-hero__visual {
		justify-self: center;
		width: min(100%, 520px);
	}

	.lx-stats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lx-about__media {
		width: min(100%, 560px);
		margin-inline: auto;
	}

	.lx-services__grid,
	.lx-blog__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.lx-segment-panel {
		grid-template-columns: 1fr;
	}

	.lx-why__list {
		max-width: 760px;
	}

	.limpex-front-page .site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 680px) {
	.lx-home .container,
	.limpex-front-page .site-header .container,
	.limpex-front-page .site-footer .container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.limpex-front-page .site-header,
	.limpex-front-page .site-header--home.is-scrolled {
		padding: 14px 0;
	}

	.limpex-front-page .site-header .site-brand,
	.limpex-front-page .site-header .site-brand img,
	.limpex-front-page .site-header .site-brand .custom-logo {
		height: 26px;
	}

	.lx-hero__grid {
		padding-top: 112px;
		padding-bottom: 72px;
		gap: 50px;
	}

	.lx-pill {
		font-size: 11.5px;
	}

	.lx-hero h1 {
		font-size: clamp(38px, 12vw, 52px);
	}

	.lx-hero__description {
		font-size: 16px;
	}

	.lx-hero .lx-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.lx-hero .lx-button {
		width: 100%;
	}

	.lx-trust-badge {
		right: -4px;
		bottom: -12px;
	}

	.lx-stats {
		padding: 42px 0;
	}

	.lx-stat strong {
		font-size: 34px;
	}

	.lx-stat:last-child strong {
		font-size: 20px;
	}

	.lx-stat p {
		font-size: 12px;
	}

	.lx-about,
	.lx-services,
	.lx-segments,
	.lx-why,
	.lx-testimonials,
	.lx-final-cta,
	.lx-blog {
		padding: 80px 0;
	}

	.lx-about__content {
		padding-left: 20px;
	}

	.lx-differences,
	.lx-why__list,
	.lx-services__grid,
	.lx-blog__grid {
		grid-template-columns: 1fr;
	}

	.lx-segments__tabs {
		flex-wrap: nowrap;
		padding-bottom: 8px;
		overflow-x: auto;
	}

	.lx-segments__tabs button {
		white-space: nowrap;
	}

	.lx-segment-panel {
		padding: 24px;
		gap: 30px;
	}

	.lx-segment-panel__copy h3 {
		font-size: 23px;
	}

	.lx-segment-panel__media {
		min-height: 0;
	}

	.lx-clients {
		padding: 72px 0;
	}

	.lx-marquee li {
		height: 58px;
		padding: 0 22px;
		font-size: 14px;
	}

	.lx-testimonial-slides blockquote > p {
		font-size: 20px;
	}

	.lx-final-cta .lx-actions {
		width: 100%;
	}

	.lx-final-cta .lx-button {
		width: 100%;
	}

	.limpex-front-page .site-footer__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lx-trust-badge,
	.lx-particle,
	.lx-scroll-cue,
	.lx-why__shape,
	.lx-marquee,
	.lx-segment-panel.is-entering .lx-segment-panel__copy,
	.lx-testimonial-slides blockquote.is-entering {
		animation: none !important;
	}
}


/* Internal pages 1.4 */
body.limpex-internal-page {
	background: var(--lx-paper);
}

body.limpex-internal-page .site-header--dark,
body.limpex-internal-page .site-header--dark.is-scrolled {
	height: var(--header-height);
	color: #fff;
	background: rgba(4, 4, 4, 0.9);
	border-bottom-color: rgba(255, 255, 255, 0.1);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(16px);
}

body.limpex-internal-page .site-header--dark .site-brand img:not(.custom-logo) {
	filter: none;
}

body.limpex-internal-page .site-header--dark .custom-logo {
	filter: brightness(0) invert(1);
}

body.limpex-internal-page .site-header--dark .site-header__cta,
body.limpex-internal-page .site-header--dark.is-scrolled .site-header__cta,
.limpex-front-page .site-header--home .site-header__cta,
.limpex-front-page .site-header--home.is-scrolled .site-header__cta {
	min-height: 44px;
	color: var(--lx-dark);
	background: var(--lx-accent);
	border-color: var(--lx-accent);
	border-radius: 8px;
}

body.limpex-internal-page .site-header--dark .site-header__cta:hover,
body.limpex-internal-page .site-header--dark.is-scrolled .site-header__cta:hover {
	color: #fff;
	background: var(--lx-green);
	border-color: var(--lx-green);
}

.institutional-main,
.internal-main {
	min-height: 70vh;
	padding-top: 0;
	background: #fff;
	overflow: clip;
}

.institutional-main h1,
.institutional-main h2,
.institutional-main h3,
.internal-main h1,
.internal-main h2,
.internal-main h3 {
	font-family: "Manrope Limpex", "Segoe UI", sans-serif;
}

.institutional-main .section {
	padding: clamp(86px, 9vw, 132px) 0;
}

.institutional-main .section-heading h2 {
	font-size: clamp(2.25rem, 4.1vw, 4.45rem);
	font-weight: 470;
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.institutional-main .section-heading > p:last-child,
.institutional-main .section-heading--split > p {
	color: var(--lx-muted);
	line-height: 1.75;
}

.institutional-hero {
	position: relative;
	display: block;
	min-height: 720px;
	color: #fff;
	background: var(--lx-dark);
	overflow: hidden;
}

.institutional-hero__backdrop {
	position: absolute;
	inset: -5%;
	background:
		radial-gradient(circle at 78% 32%, rgba(218, 219, 8, 0.16), transparent 31%),
		linear-gradient(115deg, #040404 0%, #06110b 48%, #0d3b23 100%);
}

.institutional-hero__backdrop::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, rgba(4, 4, 4, 0.18), transparent 55%);
}

.institutional-hero__grain {
	position: absolute;
	inset: 0;
	opacity: 0.055;
	background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.6px, transparent 0.7px);
	background-size: 4px 4px;
	pointer-events: none;
}

.institutional-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.82fr);
	align-items: center;
	min-height: 720px;
	padding-top: calc(var(--header-height) + 70px);
	padding-bottom: 78px;
	gap: clamp(52px, 8vw, 112px);
}

.institutional-hero__copy {
	max-width: 720px;
}

.institutional-hero .breadcrumbs {
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.035em;
}

.institutional-hero .breadcrumbs a {
	transition: color 180ms ease;
}

.institutional-hero .breadcrumbs a:hover {
	color: var(--lx-accent);
}

.institutional-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 7px 14px;
	margin: 0 0 25px;
	color: var(--lx-accent);
	background: rgba(218, 219, 8, 0.09);
	border: 1px solid rgba(218, 219, 8, 0.35);
	border-radius: 999px;
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.institutional-hero h1 {
	max-width: 760px;
	margin-bottom: 25px;
	font-size: clamp(3.15rem, 5.8vw, 5.8rem);
	font-weight: 430;
	letter-spacing: -0.058em;
	line-height: 0.98;
}

.institutional-hero__description {
	max-width: 650px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.69);
	font-size: clamp(1rem, 1.45vw, 1.15rem);
	line-height: 1.75;
}

.institutional-hero__visual {
	position: relative;
	justify-self: end;
	width: min(100%, 440px);
	margin: 0;
}

.institutional-hero__image-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 8px;
	box-shadow: 28px 34px 0 rgba(34, 136, 72, 0.17);
}

.institutional-hero__image-frame::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(180deg, transparent 58%, rgba(4, 4, 4, 0.48));
}

.institutional-hero__image-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.institutional-hero__badge {
	position: absolute;
	right: -30px;
	bottom: 32px;
	display: flex;
	width: 170px;
	min-height: 128px;
	padding: 20px;
	flex-direction: column;
	justify-content: center;
	color: var(--lx-dark);
	background: var(--lx-accent);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.26);
}

.institutional-hero__badge strong {
	font-family: "Manrope Limpex", sans-serif;
	font-size: 1.06rem;
	font-weight: 800;
}

.institutional-hero__badge span {
	margin-top: 7px;
	font-size: 0.67rem;
	font-weight: 760;
	letter-spacing: 0.055em;
	line-height: 1.4;
	text-transform: uppercase;
}

.institutional-split,
.institutional-split--reverse {
	gap: clamp(58px, 8vw, 112px);
}

.institutional-copy {
	padding-left: clamp(22px, 3vw, 42px);
	border-left: 3px solid var(--lx-accent);
}

.institutional-copy h2 {
	font-size: clamp(2.25rem, 4.1vw, 4.45rem);
	font-weight: 470;
	letter-spacing: -0.055em;
	line-height: 1.03;
}

.institutional-lead {
	color: var(--lx-muted);
	line-height: 1.82;
}

.institutional-media::before {
	top: -18px;
	right: -18px;
	width: 90px;
	height: 90px;
	border: 0;
	border-top: 3px solid var(--lx-accent);
	border-right: 3px solid var(--lx-accent);
	border-radius: 0;
}

.institutional-media img {
	border-radius: 8px;
	box-shadow: -24px 28px 0 var(--lx-line);
}

.institutional-media figcaption {
	border-radius: 8px;
}

.value-grid,
.service-paths__grid,
.contact-cards,
.form-panel {
	border-radius: 8px;
}

.value-card {
	padding: 42px 36px;
}

.value-card--green {
	background: var(--lx-green);
}

.services__grid--institutional {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.services__grid--institutional .service-card {
	display: flex;
	min-height: 100%;
	flex-direction: column;
	color: var(--lx-dark);
	background: #fff;
	border: 1px solid var(--lx-line);
	border-radius: 8px;
	box-shadow: 0 18px 50px rgba(4, 28, 18, 0.07);
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.services__grid--institutional .service-card:hover {
	color: var(--lx-dark);
	box-shadow: 0 28px 64px rgba(4, 28, 18, 0.14);
	transform: translateY(-6px);
}

.services__grid--institutional .service-card__media {
	aspect-ratio: 8 / 5;
}

.services__grid--institutional .service-card__body {
	display: flex;
	flex: 1;
	padding: 28px;
	flex-direction: column;
}

.services__grid--institutional .service-card__body > p:not(.service-card__index) {
	color: var(--lx-muted);
}

.service-card__link,
.lx-service-card__link {
	display: inline-flex;
	align-items: center;
	margin-top: auto;
	padding-top: 22px;
	gap: 9px;
	color: var(--lx-green);
	font-size: 0.75rem;
	font-weight: 850;
	letter-spacing: 0.035em;
}

.service-card__link > span,
.lx-service-card__link > span {
	transition: transform 180ms ease;
}

.service-card:hover .service-card__link > span,
.lx-service-card:hover .lx-service-card__link > span {
	transform: translateX(4px);
}

.lx-service-card {
	display: flex;
	flex-direction: column;
}

.lx-service-card h3 a {
	position: relative;
	z-index: 2;
}

.lx-service-card__link {
	position: relative;
	z-index: 2;
	color: var(--lx-accent);
}

.service-paths article {
	background: #111512;
}

.portfolio-card,
.form-panel,
.post-card {
	border-radius: 8px;
}

.careers-values {
	background:
		radial-gradient(circle at 82% 10%, rgba(218, 219, 8, 0.13), transparent 29%),
		var(--lx-dark);
}

.career-benefits article {
	background: rgba(255, 255, 255, 0.015);
}

.form-panel {
	box-shadow: 0 22px 65px rgba(4, 28, 18, 0.1);
}

.wpcf7 input[type="submit"] {
	min-height: 52px;
	color: var(--lx-dark);
	background: var(--lx-accent);
	border-radius: 8px;
}

.contact-cards a:hover {
	background: rgba(218, 219, 8, 0.055);
}

.location-band {
	background:
		radial-gradient(circle at 85% 20%, rgba(218, 219, 8, 0.2), transparent 28%),
		var(--lx-green);
}

.post-card {
	box-shadow: 0 18px 50px rgba(4, 28, 18, 0.07);
	overflow: hidden;
}

.post-card h2 {
	font-family: "Manrope Limpex", sans-serif;
	font-weight: 650;
}

.generic-entry-section,
.single-entry .generic-entry-section {
	background: var(--lx-paper);
}

.generic-entry-section .entry-content-wrap,
.listing-page .content-layout {
	padding-top: 0;
	padding-bottom: 0;
}

.generic-entry-section .entry-content {
	padding: clamp(30px, 5vw, 64px);
	border-radius: 8px;
	box-shadow: 0 22px 65px rgba(4, 28, 18, 0.08);
}

.service-detail-intro__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.86fr);
	align-items: center;
	gap: clamp(60px, 9vw, 126px);
}

.service-detail-intro__copy {
	padding-left: clamp(22px, 3vw, 42px);
	border-left: 3px solid var(--lx-accent);
}

.service-detail-intro__copy h2 {
	max-width: 760px;
	margin-bottom: 28px;
	font-size: clamp(2.35rem, 4.35vw, 4.75rem);
	font-weight: 470;
	letter-spacing: -0.058em;
	line-height: 1.02;
}

.service-detail-intro__media {
	position: relative;
	margin: 0;
	box-shadow: -24px 28px 0 var(--lx-line);
}

.service-detail-intro__media::before {
	position: absolute;
	z-index: 2;
	top: -18px;
	right: -18px;
	width: 90px;
	height: 90px;
	content: "";
	border-top: 3px solid var(--lx-accent);
	border-right: 3px solid var(--lx-accent);
}

.service-detail-intro__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 8px;
}

.service-detail-intro__media figcaption {
	position: absolute;
	z-index: 3;
	right: 20px;
	bottom: 20px;
	left: 20px;
	display: grid;
	padding: 18px 20px;
	gap: 4px;
	color: #fff;
	background: rgba(4, 4, 4, 0.78);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	backdrop-filter: blur(10px);
}

.service-detail-intro__media figcaption strong {
	font-family: "Manrope Limpex", sans-serif;
	font-size: 0.92rem;
}

.service-detail-intro__media figcaption span {
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.74rem;
}

.service-detail-benefits {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--lx-line);
	border-left: 1px solid var(--lx-line);
}

.service-detail-benefit {
	min-height: 245px;
	padding: 30px;
	background: #fff;
	border-right: 1px solid var(--lx-line);
	border-bottom: 1px solid var(--lx-line);
}

.service-detail-benefit > span {
	display: block;
	margin-bottom: 72px;
	color: var(--lx-green);
	font-size: 0.7rem;
	font-weight: 900;
}

.service-detail-benefit p {
	margin-bottom: 0;
	font-family: "Manrope Limpex", sans-serif;
	font-size: 1.02rem;
	font-weight: 650;
	line-height: 1.48;
}

.service-detail-scope {
	position: relative;
	color: #fff;
	background:
		radial-gradient(circle at 12% 0%, rgba(34, 136, 72, 0.2), transparent 27%),
		var(--lx-dark);
}

.service-detail-scope__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
	align-items: start;
	gap: clamp(70px, 10vw, 145px);
}

.service-detail-scope__eyebrow {
	margin-bottom: 20px;
	color: var(--lx-accent);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.service-detail-scope h2 {
	max-width: 580px;
	margin-bottom: 24px;
	font-size: clamp(2.35rem, 4.1vw, 4.45rem);
	font-weight: 470;
	letter-spacing: -0.055em;
}

.service-detail-scope__heading > p:last-child {
	max-width: 560px;
	color: rgba(255, 255, 255, 0.64);
	line-height: 1.78;
}

.service-detail-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.service-detail-list li {
	position: relative;
	padding: 24px 12px 24px 42px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.17);
	font-family: "Manrope Limpex", sans-serif;
	font-size: clamp(1rem, 1.45vw, 1.25rem);
	font-weight: 620;
}

.service-detail-list li::before {
	position: absolute;
	top: 27px;
	left: 4px;
	display: grid;
	width: 22px;
	height: 22px;
	content: "✓";
	color: var(--lx-green);
	background: var(--lx-accent);
	border-radius: 50%;
	font-size: 0.68rem;
	font-weight: 900;
	place-items: center;
}

.service-process-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--lx-line);
	border-left: 1px solid var(--lx-line);
}

.service-process-card {
	min-height: 280px;
	padding: 38px;
	background: #fff;
	border-right: 1px solid var(--lx-line);
	border-bottom: 1px solid var(--lx-line);
}

.service-process-card > span {
	display: block;
	margin-bottom: 82px;
	color: var(--lx-green);
	font-size: 0.72rem;
	font-weight: 900;
}

.service-process-card h3 {
	max-width: 310px;
	margin-bottom: 0;
	font-size: clamp(1.3rem, 2vw, 1.72rem);
	font-weight: 620;
	line-height: 1.3;
}

.service-related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.service-related-card {
	display: flex;
	min-height: 100%;
	padding-bottom: 28px;
	flex-direction: column;
	background: #fff;
	box-shadow: 0 18px 50px rgba(4, 28, 18, 0.07);
	overflow: hidden;
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-related-card:hover {
	box-shadow: 0 28px 64px rgba(4, 28, 18, 0.14);
	transform: translateY(-6px);
}

.service-related-card img {
	width: 100%;
	aspect-ratio: 8 / 5;
	margin-bottom: 25px;
	object-fit: cover;
}

.service-related-card > span,
.service-related-card h3,
.service-related-card > strong {
	margin-right: 28px;
	margin-left: 28px;
}

.service-related-card > span {
	margin-bottom: 10px;
	color: var(--lx-green);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.service-related-card h3 {
	margin-bottom: 22px;
	font-size: 1.35rem;
	font-weight: 650;
}

.service-related-card > strong {
	margin-top: auto;
	color: var(--lx-green);
	font-size: 0.76rem;
}

.institutional-cta {
	position: relative;
	display: block;
	min-height: 0;
	padding: clamp(90px, 10vw, 142px) 0;
	color: #fff;
	background:
		radial-gradient(circle at 50% 110%, rgba(218, 219, 8, 0.16), transparent 38%),
		var(--lx-dark);
	text-align: center;
	overflow: hidden;
}

.institutional-cta__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 105%, rgba(34, 136, 72, 0.22), transparent 40%);
	pointer-events: none;
}

.institutional-cta__line {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 58px;
	background: linear-gradient(var(--lx-accent), transparent);
	animation: lx-line-pulse 2.4s ease-in-out infinite;
}

.institutional-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 920px;
	padding-top: 0;
	padding-bottom: 0;
	margin-inline: auto;
}

.institutional-cta__eyebrow {
	margin-bottom: 20px;
	color: var(--lx-accent);
	font-size: 0.7rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.institutional-cta h2 {
	max-width: 850px;
	margin: 0 auto;
	font-size: clamp(2.4rem, 4.5vw, 4.85rem);
	font-weight: 450;
	letter-spacing: -0.058em;
	line-height: 1.03;
}

.institutional-cta__inner > p:not(.institutional-cta__eyebrow) {
	max-width: 660px;
	margin: 23px auto 34px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 1rem;
	line-height: 1.75;
}

.institutional-cta__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 28px;
}

.institutional-cta__phone {
	display: grid;
	gap: 1px;
	text-align: left;
}

.institutional-cta__phone span {
	color: rgba(255, 255, 255, 0.54);
	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.institutional-cta__phone strong {
	font-family: "Manrope Limpex", sans-serif;
	font-size: 1rem;
}

.limpex-internal-page .site-footer {
	padding-top: 76px;
	background: var(--lx-dark);
}

.limpex-internal-page .site-footer__grid {
	grid-template-columns: 1.35fr 0.85fr 0.85fr 1.1fr;
	gap: 52px;
}

.limpex-internal-page .site-footer__bottom {
	display: flex;
	margin-top: 48px;
	padding-top: 24px;
	color: #6c6768;
	border-top-color: #1a1a1a;
	font-size: 13px;
}

.not-found {
	color: #fff;
	background:
		radial-gradient(circle at 72% 34%, rgba(218, 219, 8, 0.16), transparent 30%),
		linear-gradient(115deg, #040404, #0d3b23);
}

.not-found .eyebrow,
.not-found .text-link {
	color: var(--lx-accent);
}

.not-found__inner > p:not(.eyebrow):not(.not-found__code) {
	color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1080px) {
	.institutional-hero__inner,
	.service-detail-intro__grid,
	.service-detail-scope__grid {
		grid-template-columns: 1fr;
	}

	.institutional-hero__inner {
		padding-bottom: 94px;
	}

	.institutional-hero__visual {
		justify-self: center;
		width: min(100%, 500px);
	}

	.services__grid--institutional,
	.service-detail-benefits,
	.service-related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.service-detail-intro__media {
		width: min(100%, 650px);
		margin-inline: auto;
	}

	.service-detail-scope__heading {
		max-width: 760px;
	}

	.limpex-internal-page .site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	.institutional-hero,
	.institutional-hero__inner {
		min-height: 0;
	}

	.institutional-hero__inner {
		padding-top: calc(var(--header-height) + 78px);
	}

	.value-grid,
	.service-process-grid {
		grid-template-columns: 1fr;
	}

	.service-process-card {
		min-height: 220px;
	}

	.service-process-card > span {
		margin-bottom: 52px;
	}

	.post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	body.limpex-internal-page .site-header--dark,
	body.limpex-internal-page .site-header--dark.is-scrolled {
		height: var(--header-height);
	}

	body.limpex-internal-page .site-header--dark .site-brand,
	body.limpex-internal-page .site-header--dark .site-brand img,
	body.limpex-internal-page .site-header--dark .site-brand .custom-logo {
		width: 142px;
		height: auto;
	}

	body.limpex-internal-page .site-header--dark .primary-navigation.is-open {
		top: var(--header-height);
	}

	.institutional-main .section {
		padding: 78px 0;
	}

	.institutional-hero__inner {
		padding-top: calc(var(--header-height) + 62px);
		padding-bottom: 78px;
		gap: 54px;
	}

	.institutional-hero .breadcrumbs {
		align-items: flex-start;
		margin-bottom: 24px;
		flex-wrap: wrap;
	}

	.institutional-hero h1 {
		font-size: clamp(2.65rem, 12.5vw, 4.15rem);
	}

	.institutional-hero__visual {
		width: calc(100% - 18px);
	}

	.institutional-hero__badge {
		right: -8px;
		bottom: -22px;
		width: 152px;
		min-height: 112px;
	}

	.institutional-copy,
	.service-detail-intro__copy {
		padding-left: 20px;
	}

	.services__grid--institutional,
	.service-detail-benefits,
	.service-related-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.service-detail-benefit,
	.service-process-card {
		min-height: 0;
		padding: 30px 26px;
	}

	.service-detail-benefit > span,
	.service-process-card > span {
		margin-bottom: 42px;
	}

	.service-detail-scope__grid {
		gap: 42px;
	}

	.institutional-cta__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.institutional-cta .lx-button {
		width: 100%;
	}

	.institutional-cta__phone {
		text-align: center;
	}

	.generic-entry-section .entry-content {
		padding: 28px 22px;
	}

	.limpex-internal-page .site-footer__grid {
		grid-template-columns: 1fr;
	}

	.limpex-internal-page .site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.institutional-cta__line {
		animation: none !important;
	}
}


/* Readability, forms and navigation 1.4.1 */
.institutional-main .institutional-intro .check-list li {
	color: var(--lx-dark);
}

.form-panel .wpcf7,
.form-panel .wpcf7-form,
.form-panel .limpex-form-grid {
	width: 100%;
	max-width: none;
}

.form-panel .limpex-form-grid {
	grid-template-columns: minmax(0, 1fr);
}

.form-panel .limpex-form-grid > p {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-column: 1 / -1;
	margin: 0;
	gap: 22px;
}

.form-panel .limpex-form-grid > p > br {
	display: none;
}

.form-panel .limpex-form-grid > p > .limpex-form-field {
	min-width: 0;
}

.form-panel .limpex-form-grid > p > .limpex-form-field--full,
.form-panel .limpex-form-grid > .limpex-form-field--full {
	grid-column: 1 / -1;
}

.form-panel .wpcf7 input[type="submit"] {
	width: 100%;
}

@media (max-width: 680px) {
	.form-panel .limpex-form-grid > p {
		grid-template-columns: minmax(0, 1fr);
	}

	.form-panel .limpex-form-grid > p > .limpex-form-field--full,
	.form-panel .limpex-form-grid > .limpex-form-field--full {
		grid-column: auto;
	}
}


/* Blog, testimonials and comments 1.5.0 */
.lx-testimonials {
	padding: 120px 0;
	background:
		radial-gradient(circle at 12% 12%, rgba(218, 219, 8, 0.08), transparent 25%),
		#f7f9f8;
}

.lx-testimonials > .container {
	max-width: 1120px;
}

.lx-testimonials__heading {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
	align-items: end;
	margin-bottom: 42px;
	gap: 30px 80px;
}

.lx-testimonials__heading .lx-section-label {
	grid-column: 1 / -1;
	margin-bottom: -12px;
	color: #228848;
}

.lx-testimonials__heading h2 {
	max-width: 720px;
	margin: 0;
	font-size: clamp(2.35rem, 4.7vw, 4.65rem);
	font-weight: 800;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.lx-testimonials__heading > p {
	max-width: 440px;
	margin: 0 0 4px;
	color: #5f6b66;
	font-size: 1.02rem;
	line-height: 1.7;
}

.lx-testimonials__stage {
	position: relative;
	min-height: 430px;
	padding: 72px 80px 34px;
	overflow: hidden;
	color: #fff;
	background:
		radial-gradient(circle at 88% 20%, rgba(218, 219, 8, 0.22), transparent 30%),
		linear-gradient(135deg, #040404 0%, #10291c 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	box-shadow: 0 32px 70px rgba(4, 4, 4, 0.16);
}

.lx-testimonials__stage::before {
	position: absolute;
	right: -90px;
	bottom: -150px;
	width: 420px;
	height: 420px;
	background: repeating-radial-gradient(circle, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 13px);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.lx-testimonials__stage .lx-quote-mark {
	position: absolute;
	top: 56px;
	right: 68px;
	height: auto;
	color: #dadb08;
	font-size: 8.5rem;
	line-height: 0.62;
	opacity: 0.9;
}

.lx-testimonial-slides {
	position: relative;
	z-index: 1;
	min-height: 245px;
}

.lx-testimonial-slides blockquote {
	margin: 0;
}

.lx-testimonial-slides blockquote.is-entering {
	animation: lx-testimonial-enter 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lx-testimonial-slides blockquote > p {
	max-width: 790px;
	margin: 0 0 46px;
	font-size: clamp(1.45rem, 3vw, 2.45rem);
	font-weight: 550;
	letter-spacing: -0.025em;
	line-height: 1.35;
	text-wrap: balance;
}

.lx-testimonial-slides footer {
	display: flex;
	align-items: center;
	margin: 0;
	gap: 15px;
}

.lx-testimonial-author-mark {
	display: grid;
	flex: 0 0 50px;
	width: 50px;
	height: 50px;
	color: #062015;
	background: #dadb08;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	font-size: 1rem;
	font-weight: 850;
	place-items: center;
}

.lx-testimonial-author-copy {
	display: block;
}

.lx-testimonial-slides footer .lx-testimonial-author-copy strong {
	display: block;
	color: #fff;
	font-size: 0.98rem;
	font-weight: 750;
}

.lx-testimonial-slides footer .lx-testimonial-author-copy > span {
	display: block;
	margin-top: 4px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.86rem;
}

.lx-testimonial-controls {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-top: -50px;
	gap: 14px;
}

.lx-testimonial-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	gap: 8px;
}

.lx-testimonial-dots button {
	width: 8px;
	height: 8px;
	padding: 0;
	background: rgba(255, 255, 255, 0.34);
	border: 0;
	border-radius: 999px;
}

.lx-testimonial-dots button[aria-pressed="true"] {
	width: 28px;
	background: #dadb08;
}

.lx-testimonial-arrow {
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
	place-items: center;
}

.lx-testimonial-arrow:hover,
.lx-testimonial-arrow:focus-visible {
	color: #04150e;
	background: #dadb08;
	border-color: #dadb08;
	transform: translateY(-2px);
}

@keyframes lx-testimonial-enter {
	from {
		opacity: 0;
		transform: translate3d(34px, 0, 0) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}
}

.lx-blog-card__media,
.post-card__media {
	position: relative;
	overflow: hidden;
}

.lx-blog-card__media {
	display: grid;
	place-items: center;
}

.lx-blog-card__media img,
.post-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lx-blog-card__media--placeholder,
.post-card__media--placeholder {
	color: #fff;
	background:
		radial-gradient(circle at 80% 18%, rgba(218, 219, 8, 0.34), transparent 28%),
		linear-gradient(135deg, #176c38, #228848 58%, #166c3b);
}

.lx-blog-card__media--placeholder::before,
.post-card__media--placeholder::before {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(120deg, transparent 0 24px, rgba(255, 255, 255, 0.035) 24px 25px);
	content: "";
}

.lx-brand-placeholder {
	position: relative;
	z-index: 1;
	color: #fff;
	font-family: "Manrope Limpex", sans-serif;
	font-size: clamp(1.85rem, 4vw, 2.8rem);
	font-weight: 850;
	letter-spacing: -0.045em;
}

.lx-blog-card__body h3 a {
	color: inherit;
}

.lx-blog-card__link,
.lx-blog__all {
	color: #178047;
	font-weight: 750;
	text-decoration: none;
}

.lx-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}

.lx-blog-card__link span,
.lx-blog__all span {
	transition: transform 220ms ease;
}

.lx-blog-card__link:hover span,
.lx-blog-card__link:focus-visible span,
.lx-blog__all:hover span,
.lx-blog__all:focus-visible span {
	transform: translate(3px, -2px);
}

.lx-blog__all {
	display: inline-flex;
	align-items: center;
	padding-bottom: 7px;
	border-bottom: 2px solid #dadb08;
	gap: 8px;
}

.lx-blog-empty {
	display: flex;
	grid-column: 1 / -1;
	align-items: center;
	min-height: 220px;
	padding: 42px;
	color: #fff;
	background: linear-gradient(135deg, #176c38, #228848);
	border-radius: 18px;
	gap: 34px;
}

.lx-blog-empty .lx-brand-placeholder {
	padding-right: 34px;
	border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.lx-blog-empty h3 {
	margin-bottom: 8px;
	font-size: 1.55rem;
}

.lx-blog-empty p {
	margin: 0;
	color: rgba(255, 255, 255, 0.78);
}

.post-card {
	box-shadow: 0 12px 36px rgba(10, 35, 23, 0.06);
	transition: transform 260ms ease, box-shadow 260ms ease;
}

.post-card:hover {
	box-shadow: 0 22px 50px rgba(10, 35, 23, 0.13);
	transform: translateY(-4px);
}

.comments-area {
	margin-top: 74px;
	padding-top: 68px;
	border-top: 1px solid #dce5e0;
}

.comments-area__header {
	max-width: 700px;
	margin-bottom: 30px;
}

.comments-area__header .eyebrow,
.comment-form-panel__heading .eyebrow {
	margin-bottom: 12px;
	color: #228848;
	font-size: 0.76rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.comments-title,
.comment-reply-title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.15rem);
	font-weight: 800;
	letter-spacing: -0.045em;
	line-height: 1.05;
}

.comments-area__header > p:last-child {
	margin: 18px 0 0;
	color: #65716c;
	line-height: 1.65;
}

.comment-list,
.comment-list .children {
	margin: 0;
	padding: 0;
	list-style: none;
}

.comment-list > .comment-card + .comment-card {
	margin-top: 18px;
}

.comment-list .children {
	margin: 18px 0 0 36px;
}

.comment-list .children > .comment-card + .comment-card {
	margin-top: 18px;
}

.comment-card__body {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	padding: 28px;
	background: #fff;
	border: 1px solid #dce5e0;
	border-radius: 16px;
	box-shadow: 0 12px 34px rgba(12, 39, 26, 0.06);
	gap: 20px;
}

.comment-card__avatar {
	display: grid;
	width: 56px;
	height: 56px;
	color: #fff;
	background: linear-gradient(135deg, #228848, #dadb08);
	border: 4px solid #e8f6ef;
	border-radius: 50%;
	font-size: 1rem;
	font-weight: 850;
	place-items: center;
}

.comment-card__main {
	min-width: 0;
}

.comment-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 18px;
	gap: 20px;
}

.comment-card__author,
.comment-card__author a {
	color: #171a18;
	font-size: 1rem;
	font-weight: 800;
}

.comment-card__date {
	display: block;
	margin-top: 4px;
	color: #718078;
	font-size: 0.78rem;
}

.comment-card__edit a,
.comment-card__reply a {
	color: #228848;
	font-size: 0.82rem;
	font-weight: 750;
}

.comment-card__content {
	color: #35413b;
	font-size: 1rem;
	line-height: 1.72;
}

.comment-card__content > *:last-child {
	margin-bottom: 0;
}

.comment-card__reply {
	margin-top: 18px;
}

.comment-awaiting-moderation,
.no-comments {
	padding: 12px 15px;
	color: #145f34;
	background: #e8f6ef;
	border-left: 3px solid #dadb08;
	border-radius: 6px;
	font-size: 0.88rem;
}

.comments-area .navigation {
	margin: 26px 0;
}

.comment-form-panel {
	margin-top: 54px;
	padding: 44px;
	background:
		radial-gradient(circle at 100% 0, rgba(218, 219, 8, 0.09), transparent 30%),
		#fff;
	border: 1px solid #dce5e0;
	border-radius: 20px;
	box-shadow: 0 20px 54px rgba(12, 39, 26, 0.08);
}

.comment-form-panel__heading {
	margin-bottom: 12px;
}

.cancel-comment-reply {
	display: inline-block;
	margin-left: 12px;
	font-size: 0.8rem;
	font-weight: 700;
	vertical-align: middle;
}

.cancel-comment-reply a {
	color: #228848;
}

.limpex-comment-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 28px;
	gap: 22px;
}

.limpex-comment-form > p {
	margin: 0;
}

.limpex-comment-form .comment-notes,
.limpex-comment-form .logged-in-as,
.limpex-comment-form .must-log-in,
.limpex-comment-form .comment-form-comment,
.limpex-comment-form .comment-form-cookies-consent,
.limpex-comment-form .form-submit {
	grid-column: 1 / -1;
}

.limpex-comment-form .comment-notes,
.limpex-comment-form .logged-in-as,
.limpex-comment-form .must-log-in {
	color: #65716c;
	font-size: 0.9rem;
	line-height: 1.6;
}

.limpex-comment-form label {
	display: block;
	margin-bottom: 9px;
	color: #171a18;
	font-size: 0.9rem;
	font-weight: 800;
}

.limpex-comment-form input[type="text"],
.limpex-comment-form input[type="email"],
.limpex-comment-form textarea {
	width: 100%;
	max-width: none;
	padding: 15px 16px;
	color: #171a18;
	background: #fbfcfb;
	border: 1px solid #cad6d0;
	border-radius: 10px;
	font: inherit;
	transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.limpex-comment-form input[type="text"],
.limpex-comment-form input[type="email"] {
	min-height: 54px;
}

.limpex-comment-form textarea {
	min-height: 190px;
	resize: vertical;
}

.limpex-comment-form input:focus,
.limpex-comment-form textarea:focus {
	background: #fff;
	border-color: #228848;
	box-shadow: 0 0 0 4px rgba(34, 136, 72, 0.12);
	outline: 0;
}

.limpex-comment-form .comment-form-cookies-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.limpex-comment-form .comment-form-cookies-consent input {
	flex: 0 0 auto;
	margin-top: 4px;
}

.limpex-comment-form .comment-form-cookies-consent label {
	margin: 0;
	color: #65716c;
	font-size: 0.85rem;
	font-weight: 500;
}

.limpex-comment-form .form-submit {
	margin-top: 4px;
}

.limpex-comment-form .comment-submit {
	width: auto;
	min-width: 220px;
	min-height: 54px;
	padding: 15px 24px;
	color: #fff;
	background: #228848;
	border: 1px solid #228848;
	border-radius: 10px;
	font-weight: 800;
}

.limpex-comment-form .comment-submit:hover,
.limpex-comment-form .comment-submit:focus-visible {
	color: #04150e;
	background: #dadb08;
	border-color: #dadb08;
}

@media (max-width: 820px) {
	.lx-testimonials__heading {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.lx-testimonials__heading .lx-section-label {
		margin-bottom: 0;
	}

	.lx-testimonials__stage {
		padding: 62px 44px 30px;
	}

	.lx-testimonials__stage .lx-quote-mark {
		top: 45px;
		right: 38px;
		font-size: 6.4rem;
	}

	.lx-testimonial-controls {
		justify-content: flex-start;
		margin-top: 28px;
	}
}

@media (max-width: 680px) {
	.lx-testimonials {
		padding: 84px 0;
	}

	.lx-testimonials__heading {
		margin-bottom: 30px;
	}

	.lx-testimonials__stage {
		min-height: 0;
		padding: 52px 26px 26px;
		border-radius: 18px;
	}

	.lx-testimonials__stage .lx-quote-mark {
		top: 38px;
		right: 22px;
		font-size: 5rem;
	}

	.lx-testimonial-slides {
		min-height: 285px;
	}

	.lx-testimonial-slides blockquote > p {
		margin-bottom: 32px;
		font-size: 1.35rem;
	}

	.lx-testimonial-controls {
		justify-content: space-between;
	}

	.lx-blog .lx-section-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.lx-blog-empty {
		align-items: flex-start;
		flex-direction: column;
		padding: 32px 26px;
	}

	.lx-blog-empty .lx-brand-placeholder {
		padding: 0 0 20px;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.28);
	}

	.comments-area {
		margin-top: 54px;
		padding-top: 48px;
	}

	.comment-list .children {
		margin-left: 14px;
	}

	.comment-card__body {
		grid-template-columns: 44px minmax(0, 1fr);
		padding: 22px 18px;
		gap: 13px;
	}

	.comment-card__avatar {
		width: 44px;
		height: 44px;
	}

	.comment-card__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 8px;
	}

	.comment-form-panel {
		padding: 30px 20px;
	}

	.limpex-comment-form {
		grid-template-columns: 1fr;
	}

	.limpex-comment-form > p {
		grid-column: auto;
	}

	.limpex-comment-form .comment-submit {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lx-testimonial-slides blockquote.is-entering {
		animation: none;
	}
}


/* Modern mobile navigation and natural portfolio 1.6.0 */
.menu-backdrop,
.mobile-menu__top,
.mobile-menu__eyebrow,
.mobile-menu__footer {
	display: none;
}

@media (max-width: 1080px) {
	body.menu-is-open {
	overflow: hidden;
	}

	.site-header .site-header__inner,
	.limpex-front-page .site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 18px;
	}

	.site-header .site-header__cta,
	.limpex-front-page .site-header .site-header__cta {
	display: none !important;
	}

	.site-header .menu-toggle,
	.limpex-front-page .site-header .menu-toggle {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	width: auto;
	height: 44px;
	padding: 0 14px;
	color: currentColor;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid currentColor;
	border-radius: 999px;
	gap: 10px;
	box-shadow: none;
	}

	.site-header .menu-toggle__label {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	clip: auto;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	}

	.site-header .menu-toggle__lines {
	display: grid;
	width: 17px;
	gap: 5px;
	}

	.site-header .menu-toggle__lines span {
	height: 1.5px;
	border-radius: 999px;
	}

	.menu-backdrop {
	position: fixed;
	z-index: 1001;
	inset: 0;
	display: block;
	background: rgba(4, 4, 4, 0.58);
	backdrop-filter: blur(5px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 360ms ease;
	}

	body.menu-is-open .menu-backdrop {
	opacity: 1;
	pointer-events: auto;
	}

	.site-header .primary-navigation,
	.limpex-front-page .site-header .primary-navigation,
	body.limpex-internal-page .site-header--dark .primary-navigation {
	position: fixed;
	z-index: 1002;
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
	display: flex;
	flex-direction: column;
	width: min(440px, 92vw);
	height: 100dvh;
	max-height: none;
	padding: 28px 32px 30px;
	overflow-x: hidden;
	overflow-y: auto;
	color: #171a18;
	background:
		radial-gradient(circle at 100% 0, rgba(218, 219, 8, 0.15), transparent 31%),
		#f7f9f8;
	border: 0;
	border-left: 1px solid rgba(15, 52, 34, 0.12);
	border-radius: 22px 0 0 22px;
	box-shadow: -30px 0 75px rgba(4, 4, 4, 0.24);
	transform: translate3d(104%, 0, 0);
	visibility: hidden;
	pointer-events: none;
	transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 460ms;
	}

	.site-header .primary-navigation.is-open,
	.limpex-front-page .site-header .primary-navigation.is-open,
	body.limpex-internal-page .site-header--dark .primary-navigation.is-open {
	top: 0;
	display: flex;
	color: #171a18;
	background:
		radial-gradient(circle at 100% 0, rgba(218, 219, 8, 0.15), transparent 31%),
		#f7f9f8;
	transform: translate3d(0, 0, 0);
	visibility: visible;
	pointer-events: auto;
	transition-delay: 0s;
	}

	.mobile-menu__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(15, 52, 34, 0.13);
	}

	.mobile-menu__brand {
	display: flex;
	align-items: baseline;
	gap: 10px;
	}

	.mobile-menu__brand strong {
	font-size: 1.45rem;
	font-weight: 900;
	letter-spacing: -0.055em;
	}

	.mobile-menu__brand small {
	color: #718078;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	}

	.mobile-menu__close {
	position: relative;
	display: grid;
	width: 42px;
	height: 42px;
	padding: 0;
	color: #fff;
	background: #171a18;
	border: 0;
	border-radius: 50%;
	transition: color 180ms ease, background 180ms ease, transform 180ms ease;
	place-items: center;
	}

	.mobile-menu__close:hover,
	.mobile-menu__close:focus-visible {
	color: #07150f;
	background: #dadb08;
	transform: rotate(4deg);
	}

	.mobile-menu__close span {
	position: absolute;
	width: 17px;
	height: 1.5px;
	background: currentColor;
	border-radius: 999px;
	transform: rotate(45deg);
	}

	.mobile-menu__close span:last-child {
	transform: rotate(-45deg);
	}

	.mobile-menu__eyebrow {
	display: block;
	margin: 30px 0 10px;
	color: #228848;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	}

	.site-header .primary-navigation .menu,
	.limpex-front-page .site-header .primary-navigation .menu {
	display: grid;
	align-items: stretch;
	margin: 0;
	gap: 0;
	counter-reset: limpex-mobile-menu;
	}

	.site-header .primary-navigation .menu > li,
	.limpex-front-page .site-header .primary-navigation .menu > li {
	position: relative;
	counter-increment: limpex-mobile-menu;
	}

	.site-header .primary-navigation .menu > li::after {
	position: absolute;
	top: 50%;
	right: 2px;
	color: #9aa69f;
	content: "↗";
	font-size: 0.95rem;
	transform: translateY(-50%);
	transition: color 180ms ease, transform 180ms ease;
	pointer-events: none;
	}

	.site-header .primary-navigation .menu > li:hover::after,
	.site-header .primary-navigation .menu > li:focus-within::after {
	color: #228848;
	transform: translate(3px, calc(-50% - 3px));
	}

	.site-header .primary-navigation .menu > li > a,
	.limpex-front-page .site-header .primary-navigation .menu > li > a {
	display: grid;
	grid-template-columns: 30px minmax(0, 1fr);
	align-items: center;
	padding: 15px 34px 15px 0;
	color: #171a18;
	border-bottom: 1px solid rgba(15, 52, 34, 0.12);
	font-size: clamp(1.32rem, 4.6vw, 1.72rem);
	font-weight: 750;
	letter-spacing: -0.035em;
	line-height: 1.12;
	gap: 8px;
	transition: color 180ms ease, padding-left 180ms ease;
	}

	.site-header .primary-navigation .menu > li > a::before {
	align-self: start;
	margin-top: 0.28em;
	color: #228848;
	content: "0" counter(limpex-mobile-menu);
	font-size: 0.62rem;
	font-weight: 850;
	letter-spacing: 0.02em;
	}

	.site-header .primary-navigation .menu > li > a::after,
	.limpex-front-page .site-header .primary-navigation .menu > li > a::after {
	display: none !important;
	}

	.site-header .primary-navigation .menu > li > a:hover,
	.site-header .primary-navigation .menu > li > a:focus-visible,
	.site-header .primary-navigation .current-menu-item > a {
	padding-left: 5px;
	color: #228848;
	}

	.mobile-menu__footer {
	display: grid;
	margin-top: auto;
	padding-top: 30px;
	gap: 23px;
	}

	.mobile-menu__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
	padding: 15px 18px;
	color: #fff;
	background: #228848;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 800;
	gap: 20px;
	transition: color 180ms ease, background 180ms ease, transform 180ms ease;
	}

	.mobile-menu__cta:hover,
	.mobile-menu__cta:focus-visible {
	color: #07150f;
	background: #dadb08;
	transform: translateY(-2px);
	}

	.mobile-menu__cta strong {
	font-size: 1.25rem;
	font-weight: 500;
	}

	.mobile-menu__contact {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-top: 20px;
	border-top: 1px solid rgba(15, 52, 34, 0.13);
	gap: 18px;
	}

	.mobile-menu__contact > span {
	color: #718078;
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	}

	.mobile-menu__contact a {
	padding: 0;
	color: #171a18;
	border: 0;
	font-size: 0.9rem;
	font-weight: 800;
	}

	.mobile-menu__contact a::after {
	display: none !important;
	}

	body.admin-bar .site-header .primary-navigation,
	body.admin-bar .site-header .primary-navigation.is-open {
	top: 32px;
	height: calc(100dvh - 32px);
	}

	body.admin-bar .menu-backdrop {
	top: 32px;
	}
}

@media (max-width: 782px) {
	body.admin-bar .site-header .primary-navigation,
	body.admin-bar .site-header .primary-navigation.is-open {
	top: 46px;
	height: calc(100dvh - 46px);
	}

	body.admin-bar .menu-backdrop {
	top: 46px;
	}
}

@media (max-width: 560px) {
	.site-header .primary-navigation,
	.limpex-front-page .site-header .primary-navigation,
	body.limpex-internal-page .site-header--dark .primary-navigation {
	width: 100%;
	padding: 22px 22px 25px;
	border-left: 0;
	border-radius: 0;
	}

	.site-header .primary-navigation .menu > li > a,
	.limpex-front-page .site-header .primary-navigation .menu > li > a {
	padding-top: 13px;
	padding-bottom: 13px;
	font-size: clamp(1.22rem, 6.1vw, 1.55rem);
	}

	.mobile-menu__eyebrow {
	margin-top: 24px;
	}
}

.portfolio-section {
	overflow: hidden;
	background:
		radial-gradient(circle at 100% 0, rgba(218, 219, 8, 0.09), transparent 26%),
		#f7f9f8;
}

.portfolio-section .section-heading {
	margin-bottom: 48px;
}

.portfolio-grid {
	display: block;
	columns: 4;
	column-gap: 18px;
}

.portfolio-card,
.portfolio-card:nth-child(1),
.portfolio-card:nth-child(4),
.portfolio-card:nth-child(8),
.portfolio-card:nth-child(10) {
	position: relative;
	display: inline-block;
	width: 100%;
	height: auto;
	min-height: 0 !important;
	margin: 0 0 18px;
	overflow: hidden;
	background: #121714;
	border: 1px solid rgba(24, 73, 48, 0.12);
	border-radius: 14px;
	box-shadow: 0 12px 30px rgba(8, 32, 20, 0.09);
	grid-column: auto !important;
	grid-row: auto !important;
	break-inside: avoid;
	line-height: 0;
	transform: translateZ(0);
}

.portfolio-card__image,
.portfolio-card img {
	display: block;
	width: 100%;
	height: auto !important;
	max-height: none;
	object-fit: contain;
	transform: scale(1);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.portfolio-card::after {
	background: linear-gradient(0deg, rgba(4, 4, 4, 0.76) 0, rgba(4, 4, 4, 0.18) 32%, transparent 56%);
	pointer-events: none;
}

.portfolio-card:hover .portfolio-card__image,
.portfolio-card:hover img {
	filter: saturate(1.03) contrast(1.02);
	transform: scale(1.018);
}

.portfolio-card figcaption {
	right: 17px;
	bottom: 15px;
	left: 17px;
	align-items: flex-end;
	color: #fff;
	font-size: 0.67rem;
	letter-spacing: 0.08em;
	line-height: 1.2;
	gap: 14px;
}

.portfolio-card figcaption span {
	color: #dadb08;
	font-size: 0.62rem;
	font-weight: 850;
}

.portfolio-card figcaption strong {
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-align: right;
	text-transform: uppercase;
}

@media (max-width: 1100px) {
	.portfolio-grid {
	columns: 3;
	}
}

@media (max-width: 800px) {
	.portfolio-grid {
	columns: 2;
	column-gap: 14px;
	}

	.portfolio-card,
	.portfolio-card:nth-child(1),
	.portfolio-card:nth-child(4),
	.portfolio-card:nth-child(8),
	.portfolio-card:nth-child(10) {
	margin-bottom: 14px;
	}
}

@media (max-width: 540px) {
	.portfolio-grid {
	columns: 1;
	}

	.portfolio-section .section-heading {
	margin-bottom: 34px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header .primary-navigation,
	.menu-backdrop,
	.portfolio-card__image,
	.portfolio-card img {
	transition: none !important;
	}
}


/* Mobile menu CTA refinement 1.6.1 */
@media (max-width: 1080px) {
	.site-header .primary-navigation .mobile-menu__cta,
	.limpex-front-page .site-header .primary-navigation .mobile-menu__cta,
	body.limpex-internal-page .site-header--dark .primary-navigation .mobile-menu__cta {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 62px;
	padding: 9px 10px 9px 20px;
	color: #fff !important;
	background: linear-gradient(135deg, #228848, #18763d);
	border: 1px solid #228848;
	border-radius: 14px;
	box-shadow: 0 12px 28px rgba(22, 108, 59, 0.2);
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2;
	text-transform: none;
	gap: 18px;
	}

	.site-header .primary-navigation .mobile-menu__cta::before,
	.site-header .primary-navigation .mobile-menu__cta::after,
	.limpex-front-page .site-header .primary-navigation .mobile-menu__cta::before,
	.limpex-front-page .site-header .primary-navigation .mobile-menu__cta::after {
	display: none !important;
	content: none !important;
	}

	.site-header .primary-navigation .mobile-menu__cta > span {
	display: block;
	min-width: 0;
	color: inherit;
	}

	.site-header .primary-navigation .mobile-menu__cta > strong {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	color: #07150f;
	background: #dadb08;
	border-radius: 11px;
	font-size: 1.05rem;
	font-weight: 650;
	line-height: 1;
	transition: background 180ms ease, transform 180ms ease;
	place-items: center;
	}

	.site-header .primary-navigation .mobile-menu__cta:hover,
	.site-header .primary-navigation .mobile-menu__cta:focus-visible,
	.limpex-front-page .site-header .primary-navigation .mobile-menu__cta:hover,
	.limpex-front-page .site-header .primary-navigation .mobile-menu__cta:focus-visible {
	color: #fff !important;
	background: linear-gradient(135deg, #176f3a, #125e31);
	border-color: #176f3a;
	transform: translateY(-2px);
	}

	.site-header .primary-navigation .mobile-menu__cta:hover > strong,
	.site-header .primary-navigation .mobile-menu__cta:focus-visible > strong {
	background: #fff;
	transform: translate(2px, -2px);
	}
}


/* Galeria de publicações 2.1.0 */
.entry-gallery {
	margin-top: clamp(28px, 5vw, 54px);
	padding: clamp(24px, 4vw, 42px);
	background: #0b2118;
	border: 1px solid rgba(218, 219, 8, 0.22);
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(4, 28, 18, 0.14);
}

.entry-gallery__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 16px;
}

.entry-gallery__heading .eyebrow {
	margin: 0;
	color: #dadb08;
}

.entry-gallery__heading h2 {
	margin: 0;
	color: #fff;
	font-family: "Manrope Limpex", sans-serif;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.entry-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.entry-gallery__item {
	display: block;
	min-width: 0;
	overflow: hidden;
	background: #17362a;
	border-radius: 12px;
	aspect-ratio: 4 / 3;
}

.entry-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease, opacity 300ms ease;
}

.entry-gallery__item:hover img,
.entry-gallery__item:focus-visible img {
	transform: scale(1.035);
	opacity: 0.9;
}

@media (max-width: 680px) {
	.entry-gallery__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.entry-gallery__grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.entry-gallery__item img {
		transition: none;
	}
}


/* Lightbox e internas de Informações 2.1.1 */
.limpex-information-post .institutional-hero h1 {
	font-size: clamp(2.7rem, 4.45vw, 4.65rem);
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.limpex-information-post .entry-content h2 {
	font-size: clamp(1.75rem, 3.1vw, 2.65rem);
	letter-spacing: -0.035em;
	line-height: 1.14;
}

.limpex-information-post .entry-content h3 {
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	line-height: 1.2;
}

html.lightbox-open,
html.lightbox-open body {
	overflow: hidden;
}

.entry-lightbox[hidden] {
	display: none !important;
}

.entry-lightbox {
	position: fixed;
	z-index: 10000;
	display: grid;
	inset: 0;
	padding: clamp(16px, 3vw, 34px);
	opacity: 0;
	place-items: center;
	transition: opacity 180ms ease;
}

.entry-lightbox.is-open {
	opacity: 1;
}

.entry-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(1, 7, 4, 0.92);
	backdrop-filter: blur(10px);
	cursor: zoom-out;
}

.entry-lightbox__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 58px;
	align-items: center;
	width: min(1180px, 100%);
	max-height: calc(100vh - 40px);
	padding: clamp(48px, 5vw, 68px) clamp(12px, 2vw, 24px) 18px;
	background: #08150f;
	border: 1px solid rgba(218, 219, 8, 0.28);
	border-radius: 20px;
	box-shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
	outline: none;
}

.entry-lightbox__close,
.entry-lightbox__nav {
	display: inline-grid;
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	cursor: pointer;
	place-items: center;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.entry-lightbox__close:hover,
.entry-lightbox__close:focus-visible,
.entry-lightbox__nav:hover,
.entry-lightbox__nav:focus-visible {
	color: #04150e;
	background: #dadb08;
	border-color: #dadb08;
	outline: none;
}

.entry-lightbox__close {
	position: absolute;
	top: 14px;
	right: 16px;
	width: 42px;
	height: 42px;
	font-size: 2rem;
	line-height: 1;
}

.entry-lightbox__close span {
	transform: translateY(-1px);
}

.entry-lightbox__nav {
	width: 46px;
	height: 46px;
	justify-self: center;
	font-size: 2.4rem;
	line-height: 1;
}

.entry-lightbox__nav--prev:hover,
.entry-lightbox__nav--prev:focus-visible {
	transform: translateX(-3px);
}

.entry-lightbox__nav--next:hover,
.entry-lightbox__nav--next:focus-visible {
	transform: translateX(3px);
}

.entry-lightbox__figure {
	display: grid;
	min-width: 0;
	margin: 0;
	place-items: center;
}

.entry-lightbox__figure img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 170px);
	object-fit: contain;
	border-radius: 10px;
}

.entry-lightbox__figure figcaption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 14px 2px 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.86rem;
	gap: 20px;
}

.entry-lightbox__figure [data-lightbox-counter] {
	color: #dadb08;
	font-weight: 800;
	white-space: nowrap;
}

@media (max-width: 680px) {
	.limpex-information-post .institutional-hero h1 {
		font-size: clamp(2.35rem, 10.5vw, 3.45rem);
	}

	.limpex-information-post .entry-content h2 {
		font-size: clamp(1.65rem, 8vw, 2.2rem);
	}

	.entry-lightbox {
		padding: 10px;
	}

	.entry-lightbox__dialog {
		grid-template-columns: 1fr 1fr;
		align-items: end;
		padding: 54px 12px 12px;
		gap: 12px;
	}

	.entry-lightbox__figure {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.entry-lightbox__figure img {
		max-height: calc(100vh - 190px);
	}

	.entry-lightbox__nav {
		grid-row: 2;
		width: 100%;
		height: 44px;
	}

	.entry-lightbox__figure figcaption {
		align-items: flex-start;
		flex-direction: column;
		gap: 5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.entry-lightbox,
	.entry-lightbox__close,
	.entry-lightbox__nav {
		transition: none;
	}
}


/* Paginação editorial 2.1.2 */
.navigation.pagination {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: clamp(38px, 6vw, 62px);
}

.navigation.pagination ul.page-numbers {
	display: inline-flex;
	align-items: center;
	max-width: 100%;
	padding: 7px;
	margin: 0;
	background: #fff;
	border: 1px solid #dbe5df;
	border-radius: 999px;
	box-shadow: 0 12px 36px rgba(4, 28, 18, 0.06);
	list-style: none;
	gap: 5px;
}

.navigation.pagination ul.page-numbers > li {
	padding: 0;
	margin: 0;
	list-style: none;
}

.navigation.pagination ul.page-numbers > li::marker {
	content: "";
}

.navigation.pagination a.page-numbers,
.navigation.pagination span.page-numbers {
	display: inline-grid;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	margin: 0;
	color: #10251b;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.94rem;
	font-weight: 750;
	line-height: 1;
	text-decoration: none;
	place-items: center;
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus-visible {
	color: #0b2118;
	background: rgba(218, 219, 8, 0.12);
	border-color: rgba(218, 219, 8, 0.32);
	outline: none;
	transform: translateY(-1px);
}

.navigation.pagination span.page-numbers.current {
	color: #fff;
	background: #228848;
	border-color: #228848;
	box-shadow: 0 8px 22px rgba(34, 136, 72, 0.24);
}

.navigation.pagination span.page-numbers.dots {
	min-width: 32px;
	padding-inline: 5px;
	color: #718078;
}

.navigation.pagination .prev.page-numbers,
.navigation.pagination .next.page-numbers {
	padding-inline: 20px;
}

@media (max-width: 680px) {
	.navigation.pagination {
		justify-content: flex-start;
		overflow-x: auto;
		padding: 0 0 8px;
		scrollbar-width: thin;
	}

	.navigation.pagination ul.page-numbers {
		flex: 0 0 auto;
		padding: 5px;
		gap: 2px;
	}

	.navigation.pagination a.page-numbers,
	.navigation.pagination span.page-numbers {
		min-width: 40px;
		height: 40px;
		padding-inline: 10px;
		font-size: 0.86rem;
	}

	.navigation.pagination .prev.page-numbers,
	.navigation.pagination .next.page-numbers {
		padding-inline: 15px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.navigation.pagination a.page-numbers {
		transition: none;
	}
}


/* Títulos dos artigos do Blog 2.2.0 */
.limpex-blog-post .institutional-hero h1 {
	font-size: clamp(2.55rem, 4vw, 4.25rem);
	letter-spacing: -0.045em;
	line-height: 1.04;
}

.limpex-blog-post .entry-content h2 {
	font-size: clamp(1.75rem, 3.1vw, 2.65rem);
	letter-spacing: -0.035em;
	line-height: 1.14;
}

.limpex-blog-post .entry-content h3 {
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	line-height: 1.2;
}

@media (max-width: 680px) {
	.limpex-blog-post .institutional-hero h1 {
		font-size: clamp(2.2rem, 9.5vw, 3.2rem);
	}

	.limpex-blog-post .entry-content h2 {
		font-size: clamp(1.65rem, 8vw, 2.2rem);
	}
}


/* Notícias e mapa do site 2.3.0 */
.news-media-section,
.site-map-section {
	padding: clamp(72px, 9vw, 132px) 0;
	background:
		radial-gradient(circle at 88% 10%, rgba(218, 219, 8, 0.1), transparent 28%),
		var(--off-white);
}

.news-media-section__heading {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.55fr);
	gap: 22px clamp(36px, 8vw, 120px);
	align-items: end;
	max-width: 1100px;
	margin-bottom: clamp(34px, 5vw, 64px);
}

.news-media-section__heading .section-kicker {
	grid-column: 1 / -1;
	margin-bottom: 0;
	color: var(--green);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.news-media-section__heading h2 {
	margin: 0;
	font-size: clamp(2.6rem, 5.6vw, 5.5rem);
}

.news-media-section__heading > p:last-child {
	margin: 0 0 8px;
	color: var(--muted);
	font-size: clamp(1.02rem, 1.5vw, 1.22rem);
	line-height: 1.75;
}

.news-media-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 38px);
}

.news-media-card {
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 28px;
	box-shadow: 0 22px 65px rgba(4, 28, 18, 0.09);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.news-media-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 80px rgba(4, 28, 18, 0.14);
}

.news-media-card__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #07110c;
}

.news-media-card__frame iframe,
.news-media-card__frame video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.news-media-card__frame video {
	object-fit: contain;
}

.news-media-card__body {
	padding: clamp(23px, 3vw, 36px);
}

.news-media-card__body span {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--green);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.news-media-card__body h3 {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	line-height: 1.25;
}

.site-map-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 36px);
	align-items: start;
}

.site-map-card {
	padding: clamp(26px, 4vw, 46px);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: 0 18px 55px rgba(4, 28, 18, 0.07);
}

.site-map-card--wide {
	grid-column: 1 / -1;
}

.site-map-card h2 {
	margin-bottom: 24px;
	font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.site-map-card ul {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-map-card__columns {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 32px;
}

.site-map-card li {
	min-width: 0;
	border-top: 1px solid var(--line);
}

.site-map-card a {
	display: flex;
	gap: 14px;
	justify-content: space-between;
	align-items: flex-start;
	padding: 14px 0;
	font-weight: 650;
	line-height: 1.4;
	transition: color 180ms ease;
}

.site-map-card a span {
	flex: 0 0 auto;
	color: var(--accent);
}

.site-map-card a:hover,
.site-map-card a:focus-visible {
	color: var(--green);
}

.footer-menu--utility {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
	.news-media-section__heading,
	.news-media-grid,
	.site-map-grid {
		grid-template-columns: 1fr;
	}

	.news-media-section__heading {
		gap: 16px;
	}

	.site-map-card--wide {
		grid-column: auto;
	}

	.site-map-card__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.news-media-section,
	.site-map-section {
		padding: 64px 0;
	}

	.news-media-card,
	.site-map-card {
		border-radius: 20px;
	}

	.site-map-card__columns {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.news-media-card {
		transition: none;
	}
}

/* Limpex brand refresh 2.4.0 */
:root {
	--accent: #dadb08;
	--lx-accent: #dadb08;
	--header-height: 76px;
}

.site-header,
.site-header.is-scrolled,
.limpex-front-page .site-header,
.limpex-front-page .site-header--home.is-scrolled,
body.limpex-internal-page .site-header--dark,
body.limpex-internal-page .site-header--dark.is-scrolled {
	height: var(--header-height);
	padding: 0;
	color: #fff;
	background: rgba(4, 4, 4, 0.94);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: none;
	backdrop-filter: blur(14px);
}

.limpex-front-page .site-header .container {
	width: min(calc(100% - 40px), var(--container));
	padding-right: 0;
	padding-left: 0;
}

.site-header .site-header__inner,
.limpex-front-page .site-header__inner {
	display: grid;
	grid-template-columns: 158px minmax(0, 1fr) auto;
	align-items: center;
	height: 100%;
	gap: 26px;
}

.site-header .site-brand,
.site-header .site-brand img,
.site-header .site-brand .limpex-brand-logo,
.limpex-front-page .site-header .site-brand,
.limpex-front-page .site-header .site-brand img,
body.limpex-internal-page .site-header--dark .site-brand,
body.limpex-internal-page .site-header--dark .site-brand img {
	display: block;
	width: 158px;
	height: auto;
	max-height: 40px;
	object-fit: contain;
	filter: none;
}

.limpex-front-page .site-header .primary-navigation {
	justify-self: center;
	margin-left: 0;
}

.site-header .primary-navigation .menu,
.limpex-front-page .site-header .primary-navigation .menu {
	gap: clamp(14px, 1.55vw, 25px);
}

.site-header .primary-navigation a,
.limpex-front-page .site-header .primary-navigation a {
	padding: 12px 0;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.site-header .site-header__cta,
.site-header--home .site-header__cta,
.site-header--home.is-scrolled .site-header__cta,
body.limpex-internal-page .site-header--dark .site-header__cta,
body.limpex-internal-page .site-header--dark.is-scrolled .site-header__cta,
.limpex-front-page .site-header--home .site-header__cta,
.limpex-front-page .site-header--home.is-scrolled .site-header__cta {
	min-height: 44px;
	padding: 12px 22px;
	color: #07150f;
	background: var(--lx-accent);
	border-color: var(--lx-accent);
	border-radius: 8px;
	font-size: 0.79rem;
	font-weight: 800;
}

.mobile-menu__brand {
	align-items: center;
}

.mobile-menu__brand img {
	display: block;
	width: 126px;
	height: auto;
}

.news-media-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-media-card__body {
	display: flex;
	min-height: 250px;
	flex-direction: column;
}

.news-media-card__body h3 {
	font-size: clamp(1.12rem, 1.45vw, 1.55rem);
}

.news-media-card__body p {
	margin: 16px 0 0;
	color: var(--muted);
	font-size: 0.93rem;
	line-height: 1.65;
}

.careers-whatsapp {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 30px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	gap: 18px;
}

.careers-whatsapp > span {
	color: var(--muted);
	font-size: 0.88rem;
	font-weight: 700;
}

.careers-whatsapp .button {
	min-height: 50px;
	border-radius: 8px;
	white-space: nowrap;
}

@media (max-width: 1080px) {
	.site-header .site-header__inner,
	.limpex-front-page .site-header__inner {
		grid-template-columns: auto 1fr auto;
		gap: 18px;
	}

	.site-header .site-brand,
	.site-header .site-brand img,
	.limpex-front-page .site-header .site-brand,
	.limpex-front-page .site-header .site-brand img {
		width: 150px;
	}

	.site-header .primary-navigation .mobile-menu__cta,
	.limpex-front-page .site-header .primary-navigation .mobile-menu__cta,
	body.limpex-internal-page .site-header--dark .primary-navigation .mobile-menu__cta {
		color: #fff !important;
		background: linear-gradient(135deg, #228848, #176f3a);
		border-color: #228848;
	}

	.site-header .primary-navigation .mobile-menu__cta > strong {
		color: #07150f;
		background: var(--lx-accent);
	}

	.news-media-grid {
		grid-template-columns: 1fr;
	}

	.news-media-card__body {
		min-height: 0;
	}
}

@media (max-width: 680px) {
	.site-header .site-brand,
	.site-header .site-brand img,
	.limpex-front-page .site-header .site-brand,
	.limpex-front-page .site-header .site-brand img,
	body.limpex-internal-page .site-header--dark .site-brand,
	body.limpex-internal-page .site-header--dark .site-brand img {
		width: 142px;
	}

	.careers-whatsapp {
		align-items: stretch;
		flex-direction: column;
	}

	.careers-whatsapp .button {
		width: 100%;
	}
}
/* Territorial presence refinement 2.4.1 */
.lx-trust-badge {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	width: min(270px, calc(100% - 16px));
	min-height: 88px;
	padding: 16px 20px;
	gap: 16px;
}

.lx-trust-badge strong {
	font-size: clamp(1.35rem, 2.1vw, 1.75rem);
	letter-spacing: -0.045em;
	white-space: nowrap;
}

.lx-trust-badge span {
	max-width: 128px;
	font-size: 0.78rem;
	font-weight: 650;
	line-height: 1.35;
}

.lx-stat {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.lx-stat strong,
.lx-stat:last-child strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	font-size: clamp(34px, 3.4vw, 46px);
	line-height: 1;
	white-space: nowrap;
}

.lx-stat p {
	margin-top: 12px;
}

@media (max-width: 680px) {
	.lx-trust-badge {
		width: min(250px, calc(100% - 8px));
		min-height: 80px;
		padding: 14px 16px;
		gap: 12px;
	}

	.lx-trust-badge span {
		font-size: 0.72rem;
	}

	.lx-stat strong,
	.lx-stat:last-child strong {
		min-height: 42px;
		font-size: 34px;
	}
}
/* Green-only home areas 2.4.6 */

.lx-hero__backdrop {
	background: linear-gradient(180deg, #040404 0%, #063525 42%, #08704b 140%);
}

.lx-hero .lx-particle,
.lx-hero .lx-pill {
	background: #00c896;
}

.lx-hero h1 strong {
	background: #dadb08;
	-webkit-background-clip: text;
	background-clip: text;
}

.lx-hero .lx-button--outline {
	color: #00c896;
	border-color: #00c896;
}

.lx-hero .lx-button--outline:hover {
	color: #00c896;
	background: rgba(0, 200, 150, 0.1);
	border-color: #00c896;
}

.lx-hero .lx-trust-badge strong,
.lx-hero .lx-scroll-cue {
	color: #00c896;
}

.lx-why {
	background: linear-gradient(135deg, #176f3a 0%, #228848 48%, #00c896 100%);
}

.lx-why__list li span {
	background: #dadb08;
}
/* Generated service pictograms 2.4.8 */
.lx-service-card__icon img {
	display: block;
	width: 28px;
	height: 28px;
	object-fit: contain;
	transition: filter 300ms ease;
}

.lx-service-card:hover .lx-service-card__icon img {
	filter: brightness(0) invert(1);
}
