/*
Theme Name: Lenap Hale
Theme URI: https://lenap-hale.com.pl
Author: 1 Piksel
Description: Dedykowany motyw WordPress dla Lenap Hale — hale stalowe, magazynowe i konstrukcje.
Version: 1.0.0
Text Domain: lenap-hale
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
	--lnh-green: #3a9e47;
	--lnh-green-light: #4fbf5c;
	--lnh-green-dark: #2d7a37;
	--lnh-black: #111111;
	--lnh-ink: #1a1a1a;
	--lnh-muted: #5c6570;
	--lnh-white: #ffffff;
	--lnh-bg: #f4f6f8;
	--lnh-border: #dde3e8;
	--lnh-shadow: 0 18px 50px rgba(17, 17, 17, 0.08);
	--lnh-shadow-lg: 0 30px 80px rgba(17, 17, 17, 0.16);
	--lnh-radius: 12px;
	--lnh-radius-lg: 20px;
	--lnh-container: 1180px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: var(--lnh-ink);
	background: var(--lnh-white);
}

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

a {
	color: var(--lnh-green-dark);
}

a:hover,
a:focus {
	color: var(--lnh-black);
}

h1, h2, h3, h4 {
	color: var(--lnh-black);
	line-height: 1.2;
	margin: 0 0 16px;
	font-weight: 800;
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.25rem; }

::selection {
	background: var(--lnh-green);
	color: var(--lnh-white);
}

p {
	margin: 0 0 16px;
	color: var(--lnh-muted);
}

ul {
	margin: 0 0 16px;
	padding-left: 20px;
	color: var(--lnh-muted);
}

.container {
	width: min(100% - 32px, var(--lnh-container));
	margin: 0 auto;
}

.page-wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.page-wrap > main {
	flex: 1;
}

/* Header */
.lnh-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--lnh-border);
}

.lnh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 0;
	padding: 14px 0;
}

.lnh-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: 0;
	text-decoration: none;
	line-height: 0;
}

.lnh-logo img {
	display: block;
	width: auto;
	height: 104px;
	max-width: min(420px, 55vw);
	object-fit: contain;
	object-position: left center;
}

.lnh-nav {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 1;
	min-width: 0;
}

.lnh-menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: nowrap;
}

.lnh-menu > li {
	position: relative;
}

.lnh-menu a {
	display: block;
	padding: 10px 14px;
	color: var(--lnh-black);
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border-radius: 8px;
}

.lnh-menu a:hover,
.lnh-menu .current-menu-item > a,
.lnh-menu .current_page_item > a,
.lnh-menu .current-menu-ancestor > a {
	color: var(--lnh-green-dark);
	background: rgba(58, 158, 71, 0.08);
}

.lnh-menu .sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	z-index: 120;
	min-width: 420px;
	margin: 0;
	padding: 18px 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--lnh-border);
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.lnh-menu .menu-item-has-children:hover > .sub-menu,
.lnh-menu .menu-item-has-children:focus-within > .sub-menu,
.lnh-menu .menu-item-has-children.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lnh-menu .sub-menu a {
	padding: 12px 28px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--lnh-black);
	border-radius: 0;
	white-space: nowrap;
}

.lnh-menu .sub-menu a:hover,
.lnh-menu .sub-menu a:focus {
	color: var(--lnh-green-dark);
	background: rgba(58, 158, 71, 0.08);
}

.lnh-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 20px;
	background: var(--lnh-green);
	color: var(--lnh-white) !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border-radius: 8px;
	white-space: nowrap;
}

.lnh-header-cta:hover,
.lnh-header-cta:focus {
	background: var(--lnh-green-dark);
	color: var(--lnh-white) !important;
}

.lnh-burger {
	display: none;
	width: 48px;
	height: 48px;
	border: 1px solid var(--lnh-border);
	background: var(--lnh-white);
	border-radius: 10px;
	cursor: pointer;
	padding: 0;
}

.lnh-burger span {
	display: block;
	width: 22px;
	height: 2px;
	margin: 5px auto;
	background: var(--lnh-black);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Components */
.lnh-eyebrow {
	display: block;
	margin: 0 0 12px;
	color: var(--lnh-green) !important;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lnh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.lnh-button--primary {
	background: var(--lnh-green);
	color: var(--lnh-white);
}

.lnh-button--primary:hover,
.lnh-button--primary:focus {
	background: var(--lnh-green-dark);
	color: var(--lnh-white);
}

.lnh-button--secondary {
	background: var(--lnh-black);
	color: var(--lnh-white);
}

.lnh-button--secondary:hover,
.lnh-button--secondary:focus {
	background: #333;
	color: var(--lnh-white);
}

.lnh-button--light {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.75);
	color: var(--lnh-white);
}

.lnh-button--light:hover,
.lnh-button--light:focus {
	background: var(--lnh-white);
	color: var(--lnh-black);
}

.lnh-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.lnh-section {
	padding: 88px 0;
}

.lnh-section--soft {
	background: var(--lnh-bg);
}

.lnh-section__header {
	max-width: 760px;
	margin: 0 auto 48px;
	text-align: center;
}

.lnh-section__header--left {
	margin-left: 0;
	text-align: left;
}

.lnh-section__actions {
	display: flex;
	justify-content: center;
	margin-top: 36px;
}

/* Hero */
.lnh-hero {
	position: relative;
	padding: 168px 0 200px;
	color: var(--lnh-white);
	overflow: hidden;
	isolation: isolate;
}

.lnh-hero__slides {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.lnh-hero__slide {
	position: absolute;
	inset: 0;
	background-position: center 45%;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transform: scale(1.04);
	transition: opacity 1s ease, transform 6s ease;
}

.lnh-hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.lnh-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		linear-gradient(180deg, rgba(10, 12, 10, 0.42) 0%, rgba(10, 12, 10, 0.12) 42%, rgba(10, 12, 10, 0.58) 100%),
		linear-gradient(90deg, rgba(10, 12, 10, 0.72) 0%, rgba(10, 12, 10, 0.34) 46%, rgba(10, 12, 10, 0.04) 72%, transparent 100%);
	pointer-events: none;
}

.lnh-hero::before,
.lnh-hero::after {
	display: none;
}

.lnh-hero > .container {
	position: relative;
	z-index: 1;
}

.lnh-hero__content {
	position: relative;
	z-index: 1;
	max-width: 760px;
}

.lnh-hero__controls {
	position: absolute;
	right: 24px;
	bottom: 28px;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 10px;
}

.lnh-hero__nav,
.lnh-hero__dot {
	border: 0;
	cursor: pointer;
}

.lnh-hero__nav {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	backdrop-filter: blur(6px);
}

.lnh-hero__nav:hover,
.lnh-hero__nav:focus {
	background: rgba(255, 255, 255, 0.28);
}

.lnh-hero__dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lnh-hero__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.42);
	padding: 0;
}

.lnh-hero__dot.is-active {
	background: #fff;
	transform: scale(1.15);
}

.lnh-hero .lnh-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--lnh-white) !important;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.28);
	padding: 8px 16px 8px 12px;
	border-radius: 999px;
	backdrop-filter: blur(6px);
}

.lnh-hero .lnh-eyebrow::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lnh-green-light);
	box-shadow: 0 0 0 4px rgba(79, 191, 92, 0.25);
	flex-shrink: 0;
}

.lnh-hero h1,
.lnh-hero .lnh-hero__lead,
.lnh-hero .lnh-hero__proof {
	color: var(--lnh-white);
}

.lnh-hero h1 {
	text-shadow:
		0 2px 8px rgba(0, 0, 0, 0.55),
		0 12px 40px rgba(0, 0, 0, 0.45);
}

.lnh-hero__lead {
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.6;
	margin-bottom: 14px;
	max-width: 620px;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.lnh-hero__proof {
	font-size: 15px;
	opacity: 0.92;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.lnh-hero__badges {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 40px;
}

.lnh-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 10px 18px 10px 14px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--lnh-black) !important;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: var(--lnh-shadow-lg);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lnh-trust-badge:hover,
.lnh-trust-badge:focus {
	transform: translateY(-2px);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
	color: var(--lnh-black) !important;
}

.lnh-trust-badge__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--lnh-green);
	color: var(--lnh-white);
	flex-shrink: 0;
}

.lnh-trust-badge__icon svg {
	width: 18px;
	height: 18px;
}

.lnh-trust-badge__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.lnh-trust-badge__text strong {
	font-size: 13px;
	font-weight: 800;
}

.lnh-trust-badge__text span {
	font-size: 11.5px;
	color: var(--lnh-muted);
	font-weight: 600;
}

.lnh-hero-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	color: var(--lnh-white);
	backdrop-filter: blur(6px);
}

/* Stats */
.lnh-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.lnh-stat-card {
	background: var(--lnh-white);
	border: 1px solid var(--lnh-border);
	border-radius: var(--lnh-radius);
	padding: 28px 24px;
	box-shadow: var(--lnh-shadow);
}

.lnh-stat-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: rgba(58, 158, 71, 0.1);
	color: var(--lnh-green-dark);
	margin-bottom: 16px;
}

.lnh-stat-card__icon svg {
	width: 22px;
	height: 22px;
}

.lnh-stat-card strong {
	display: block;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	color: var(--lnh-green-dark);
	margin-bottom: 8px;
}

.lnh-stat-card span {
	color: var(--lnh-muted);
	font-size: 15px;
	line-height: 1.5;
}

/* Cards grid */
.lnh-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.lnh-card {
	background: var(--lnh-white);
	border: 1px solid var(--lnh-border);
	border-radius: var(--lnh-radius);
	overflow: hidden;
	box-shadow: var(--lnh-shadow);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lnh-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 22px 60px rgba(17, 17, 17, 0.12);
}

.lnh-card__image {
	aspect-ratio: 16 / 10;
	object-fit: cover;
	width: 100%;
}

.lnh-card__body {
	padding: 24px;
}

.lnh-card__body h3 {
	margin-bottom: 10px;
}

.lnh-card--link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.lnh-card--link:hover h3 {
	color: var(--lnh-green-dark);
}

/* Feature grid */
.lnh-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.lnh-feature-card {
	background: var(--lnh-bg);
	border-radius: var(--lnh-radius);
	padding: 24px;
}

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

/* Process steps */
.lnh-process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	counter-reset: step;
}

.lnh-process-step {
	position: relative;
	padding: 24px;
	background: var(--lnh-white);
	border: 1px solid var(--lnh-border);
	border-radius: var(--lnh-radius);
}

.lnh-process-step::before {
	counter-increment: step;
	content: counter(step, decimal-leading-zero);
	display: block;
	margin-bottom: 12px;
	color: var(--lnh-green);
	font-size: 13px;
	font-weight: 800;
}

/* Two column layout */
.lnh-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.lnh-split__media img {
	border-radius: var(--lnh-radius);
	box-shadow: var(--lnh-shadow);
}

/* Page hero */
.lnh-page-hero {
	position: relative;
	padding: 72px 0 64px;
	background: linear-gradient(135deg, rgba(58, 158, 71, 0.1), rgba(17, 17, 17, 0.04));
	border-bottom: 1px solid var(--lnh-border);
	overflow: hidden;
}

.lnh-page-hero::before {
	content: '';
	position: absolute;
	top: -60px;
	right: -60px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(58, 158, 71, 0.18), transparent 70%);
	pointer-events: none;
}

.lnh-page-hero h1 {
	position: relative;
	z-index: 1;
	max-width: 820px;
}

.lnh-page-hero p {
	position: relative;
	z-index: 1;
	max-width: 680px;
}

/* Realisations */
.lnh-realisation-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 36px 28px;
}

.lnh-realisation-card {
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.lnh-realisation-card__media {
	position: relative;
	overflow: hidden;
	background: #111;
}

.lnh-realisation-card__media img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.lnh-realisation-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	background: rgba(10, 12, 10, 0.48);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.lnh-realisation-card:hover .lnh-realisation-card__overlay,
.lnh-realisation-card:focus-within .lnh-realisation-card__overlay {
	opacity: 1;
}

.lnh-realisation-card:hover .lnh-realisation-card__media img,
.lnh-realisation-card:focus-within .lnh-realisation-card__media img {
	transform: scale(1.04);
}

.lnh-realisation-action {
	min-width: 118px;
	padding: 12px 22px;
	border: 1px solid rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	background: transparent;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.lnh-realisation-action:hover,
.lnh-realisation-action:focus {
	background: #fff;
	color: #111;
}

.lnh-realisation-card__body {
	padding: 18px 2px 0;
}

.lnh-realisation-card__body h2 {
	margin: 0 0 8px;
	font-size: clamp(1.05rem, 1.5vw, 1.25rem);
	line-height: 1.35;
}

.lnh-realisation-card__cats {
	margin: 0;
	color: var(--lnh-muted);
	font-size: 14px;
	font-weight: 500;
}

.lnh-realisation-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.lnh-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(58, 158, 71, 0.1);
	color: var(--lnh-green-dark);
	font-size: 12px;
	font-weight: 700;
}

.lnh-lightbox {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(8, 9, 8, 0.88);
}

.lnh-lightbox[hidden] {
	display: none !important;
}

.lnh-lightbox__close {
	position: absolute;
	top: 18px;
	right: 22px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.lnh-lightbox__figure {
	margin: 0;
	max-width: min(1100px, 100%);
	text-align: center;
}

.lnh-lightbox__image {
	display: block;
	max-width: 100%;
	max-height: min(78vh, 820px);
	margin: 0 auto;
	object-fit: contain;
}

.lnh-lightbox__caption {
	display: grid;
	gap: 6px;
	margin-top: 16px;
	color: #fff;
}

.lnh-lightbox__title {
	font-size: 1.1rem;
}

.lnh-lightbox__meta {
	opacity: 0.78;
	font-size: 0.95rem;
}

body.lnh-lightbox-open {
	overflow: hidden;
}

.lnh-clients {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.lnh-clients__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 72px;
	padding: 14px 12px;
	background: var(--lnh-white);
	border: 1px solid var(--lnh-border);
	border-radius: var(--lnh-radius-md);
	color: var(--lnh-black);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-align: center;
}

.lnh-sticky-call {
	display: none;
}

/* Contact */
.lnh-contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
}

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

.lnh-contact-channels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 24px 0;
}

.lnh-contact-channel {
	display: block;
	padding: 18px;
	border: 1px solid var(--lnh-border);
	border-radius: 10px;
	text-decoration: none;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.lnh-contact-channel:hover {
	border-color: var(--lnh-green);
	background: rgba(58, 158, 71, 0.04);
}

.lnh-contact-channel__label {
	display: block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--lnh-muted);
	margin-bottom: 6px;
}

.lnh-contact-channel strong {
	color: var(--lnh-black);
	font-size: 16px;
}

.lnh-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.lnh-form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

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

.lnh-form-field label {
	font-size: 14px;
	font-weight: 600;
	color: var(--lnh-black);
}

.lnh-form-field input,
.lnh-form-field select,
.lnh-form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--lnh-border);
	border-radius: 8px;
	font: inherit;
	background: var(--lnh-white);
}

.lnh-form-field textarea {
	min-height: 140px;
	resize: vertical;
}

.lnh-form-notice {
	padding: 14px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-weight: 600;
}

.lnh-form-notice--success {
	background: rgba(58, 158, 71, 0.12);
	color: var(--lnh-green-dark);
}

.lnh-form-notice--error {
	background: rgba(200, 40, 40, 0.1);
	color: #a01818;
}

.lnh-map-shell {
	border-radius: var(--lnh-radius);
	overflow: hidden;
	border: 1px solid var(--lnh-border);
	box-shadow: var(--lnh-shadow);
}

.lnh-map-shell iframe {
	display: block;
	width: 100%;
	min-height: 420px;
	border: 0;
}

/* CTA band */
.lnh-cta {
	position: relative;
	padding: 76px 0;
	background: linear-gradient(135deg, #0d0f0d 0%, #171a17 60%, #0d0f0d 100%);
	color: var(--lnh-white);
	overflow: hidden;
}

.lnh-cta::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -80px;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(58, 158, 71, 0.35), transparent 70%);
	filter: blur(10px);
	pointer-events: none;
}

.lnh-cta__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.lnh-cta h2,
.lnh-cta p {
	color: var(--lnh-white);
}

.lnh-cta p {
	opacity: 0.82;
	margin: 0;
}

.lnh-cta .lnh-button--primary {
	box-shadow: 0 16px 40px rgba(58, 158, 71, 0.4);
}

/* Partners */
.lnh-partners-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.lnh-partner-card {
	display: grid;
	grid-template-columns: 180px 1fr;
	gap: 24px;
	align-items: start;
	padding: 28px;
	background: var(--lnh-white);
	border: 1px solid var(--lnh-border);
	border-radius: var(--lnh-radius-lg);
	box-shadow: var(--lnh-shadow-sm);
}

.lnh-partner-card__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 120px;
	padding: 20px;
	background: #f7f7f7;
	border-radius: var(--lnh-radius-md);
}

.lnh-partner-card__logo img {
	display: block;
	width: 100%;
	max-width: 160px;
	height: auto;
	max-height: 72px;
	object-fit: contain;
}

.lnh-partner-card__body h3 {
	margin: 0 0 6px;
	font-size: 1.25rem;
}

.lnh-partner-card__role {
	margin: 0 0 12px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--lnh-green);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

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

.lnh-partners-logos {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 16px;
	align-items: center;
}

.lnh-partners-logos__item {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 96px;
	margin: 0;
	padding: 18px 16px;
	background: var(--lnh-white);
	border: 1px solid var(--lnh-border);
	border-radius: var(--lnh-radius-md);
}

.lnh-partners-logos__item img {
	display: block;
	width: 100%;
	max-width: 140px;
	height: auto;
	max-height: 56px;
	object-fit: contain;
}

.lnh-partners--compact .lnh-section__header {
	margin-bottom: 28px;
}

/* Footer */
.lnh-footer {
	background: #0d0d0d;
	color: rgba(255, 255, 255, 0.72);
}

.lnh-footer__main {
	padding: 64px 0 32px;
}

.lnh-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 32px;
}

.lnh-footer__brand img {
	display: block;
	width: auto;
	height: 96px;
	max-width: min(300px, 100%);
	margin-bottom: 16px;
	object-fit: contain;
}

.lnh-footer h3 {
	color: var(--lnh-white);
	font-size: 15px;
	margin-bottom: 16px;
}

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

.lnh-footer li {
	margin-bottom: 10px;
}

.lnh-footer a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.lnh-footer a:hover {
	color: var(--lnh-white);
}

.lnh-footer__bottom {
	padding: 20px 0 28px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 14px;
}

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

.lnh-check-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 10px;
}

.lnh-check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--lnh-green);
	font-weight: 800;
}

.lnh-realisation-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 36px;
}

.lnh-filter-btn {
	border: 1px solid var(--lnh-border);
	background: var(--lnh-white);
	color: var(--lnh-black);
	border-radius: 999px;
	padding: 10px 16px;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.lnh-filter-btn:hover,
.lnh-filter-btn.is-active {
	background: var(--lnh-green);
	border-color: var(--lnh-green);
	color: var(--lnh-white);
}

.lnh-realisation-card.is-hidden {
	display: none;
}

/* Scroll reveal */
.lnh-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.lnh-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.lnh-reveal-stagger.is-visible > * {
	animation: lnh-fade-up 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.lnh-reveal-stagger.is-visible > *:nth-child(1) { animation-delay: 0.02s; }
.lnh-reveal-stagger.is-visible > *:nth-child(2) { animation-delay: 0.09s; }
.lnh-reveal-stagger.is-visible > *:nth-child(3) { animation-delay: 0.16s; }
.lnh-reveal-stagger.is-visible > *:nth-child(4) { animation-delay: 0.23s; }
.lnh-reveal-stagger.is-visible > *:nth-child(5) { animation-delay: 0.3s; }
.lnh-reveal-stagger.is-visible > *:nth-child(6) { animation-delay: 0.37s; }

@keyframes lnh-fade-up {
	from { opacity: 0; transform: translateY(22px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	.lnh-reveal,
	.lnh-reveal-stagger > * {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Section polish: accent underline + soft backdrops */
.lnh-section__header {
	position: relative;
}

.lnh-section {
	position: relative;
}

.lnh-section--soft::before,
.lnh-hero-glow {
	pointer-events: none;
}

/* Stat card icons */
.lnh-stat-card {
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	overflow: hidden;
}

.lnh-stat-card::after {
	content: '';
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, var(--lnh-green-light), var(--lnh-green-dark));
	opacity: 0;
	transition: opacity 0.25s ease;
}

.lnh-stat-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--lnh-shadow-lg);
	border-color: rgba(58, 158, 71, 0.35);
}

.lnh-stat-card:hover::after {
	opacity: 1;
}

/* Cards: image zoom on hover */
.lnh-card__image {
	transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lnh-card {
	position: relative;
}

.lnh-card__image-wrap {
	overflow: hidden;
}

.lnh-card:hover .lnh-card__image {
	transform: scale(1.06);
}

.lnh-realisation-card {
	transition: none;
}

.lnh-realisation-card:hover {
	transform: none;
	box-shadow: none;
}

/* Process steps connecting line */
.lnh-process-grid {
	position: relative;
}

.lnh-process-step {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lnh-process-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--lnh-shadow);
}

.lnh-process-step::after {
	content: '';
	position: absolute;
	top: 30px;
	right: -30px;
	width: 20px;
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--lnh-border) 0 6px, transparent 6px 10px);
	display: none;
}

@media (min-width: 1025px) {
	.lnh-process-step:not(:last-child)::after {
		display: block;
	}
}

/* Feature cards */
.lnh-feature-card {
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	border: 1px solid transparent;
}

.lnh-feature-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--lnh-shadow);
	border-color: rgba(58, 158, 71, 0.2);
}

/* Decorative glow blobs */
.lnh-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.35;
	pointer-events: none;
	z-index: 0;
}

.lnh-section {
	isolation: isolate;
}

/* Trust strip under hero */
.lnh-trust-strip {
	background: var(--lnh-black);
	padding: 22px 0;
	overflow: hidden;
}

.lnh-trust-strip__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}

.lnh-trust-strip__item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.lnh-trust-strip__item strong {
	color: var(--lnh-white);
	font-size: 16px;
}

.lnh-trust-strip__dot {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--lnh-green-light);
}
