/* ==========================================================================
   Industry category template
   Scoped entirely under `.lp-industry` so nothing here can affect other pages.
   Reuses the theme tokens (--primary, --primary-dark, --radius, .container, .btn).
   ========================================================================== */

.lp-industry {
	--lp-green: var(--primary, #67a058);
	--lp-green-dark: #0f5a2e;
	--lp-ink: var(--text, #303030);
	--lp-radius: var(--radius, 6px);
	--lp-hero-ink-bg: #14181b;
}

/* Defensive: keep our box-sizing predictable without touching globals */
.lp-industry *,
.lp-industry *::before,
.lp-industry *::after {
	box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Section 1 — Hero
   -------------------------------------------------------------------------- */
.lp-hero {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: var(--lp-hero-ink-bg);
	padding: 50px 5%;
}

.lp-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.lp-hero__overlay {
	position: absolute;
	inset: 0;
	/* Even dark wash across the whole photo, slightly heavier on the left for
	   text legibility — matches the design. */
	background:
		linear-gradient(90deg, rgba(8, 11, 13, 0.88) 0%, rgba(8, 11, 13, 0.68) 52%, rgba(8, 11, 13, 0.55) 100%),
		rgba(8, 11, 13, 0.18);
}

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

.lp-hero__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 48px;
	align-items: center;
	padding: 72px 0;
}

/* Intro (left) */
.lp-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--lp-green);
    width: fit-content;
    padding: 4px 10px;
    border-radius: 3px;
}

.lp-hero__title {
	margin: 0 0 6px;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.08;
	font-weight: 700;
	color: #fff;
}

.lp-hero__subtitle {
	margin: 0 0 15px;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--lp-green);
}

.lp-hero__desc {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.86);
}

.lp-hero__desc p {
	margin: 0 0 1em;
}

.lp-hero__desc p:last-child {
	margin-bottom: 0;
}

.lp-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

/* Panel (right) */
.lp-hero__panel {
	background: rgb(50 50 50 / 22%);
	border-radius: var(--lp-radius);
	padding: 28px 30px 30px;
	backdrop-filter: blur(2px);
}

.lp-hero__panel-title {
	margin: 0;
    padding-bottom: 16px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--lp-green);
}

.lp-hero__benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-hero__benefit {
	position: relative;
	padding-left: 30px;
	font-size: 0.95rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.92);
}

.lp-hero__benefit::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--lp-green);
	/* white check mark */
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

/* --------------------------------------------------------------------------
   Trust strip (sits directly under the hero)
   -------------------------------------------------------------------------- */
.lp-trust {
	background: var(--lp-green);
	color: #fff;
}

.lp-trust__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 48px;
	margin: 0;
	padding: 16px 5%;
	list-style: none;
}

.lp-trust__item {
	position: relative;
	padding-left: 28px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
}

.lp-trust__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px 18px;
}

/* --------------------------------------------------------------------------
   Section 2 — Trade-account band
   -------------------------------------------------------------------------- */
.lp-trade {
	background: #e9f8e5;
	color: var(--lp-ink);
}

.lp-trade__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px 40px;
	padding: 38px 5%;
}

.lp-trade__content {
	flex: 1 1 520px;
}

.lp-trade__title {
	margin: 0 0 8px;
	font-size: clamp(1.5rem, 2.4vw, 2rem);
	line-height: 1.15;
	font-weight: 700;
	color: #173a16;
}

.lp-trade__subtitle {
	margin: 0 0 16px;
	font-size: 1.0625rem;
	line-height: 1.55;
	color: #3d5536;
	max-width: 70ch;
}

.lp-trade__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-trade__item {
	position: relative;
	padding-left: 28px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.3;
	color: #2c4726;
}

.lp-trade__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--lp-green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11px 11px;
}

.lp-trade__action {
	flex: 0 0 auto;
}

.lp-trade__cta span {
	margin-left: 4px;
}

/* --------------------------------------------------------------------------
   Sector page — "Why choose us" (image + benefits)
   -------------------------------------------------------------------------- */
.lp-why {
	padding: 64px 5%;
	background: #fff;
}

.lp-why__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.lp-why__media img {
	width: 100%;
	height: 100%;
	max-height: 460px;
	object-fit: cover;
	border-radius: var(--lp-radius);
	display: block;
}

.outline__eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	font-size: 0.78rem;
	letter-spacing: 0.15em;
	border: 0.5px solid var(--lp-green);
	padding: 5px 12px;
	border-radius: 50px;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--lp-green);
}

.lp-why__title {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	line-height: 1.14;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-why__text {
	margin: 0 0 22px;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #5d6b58;
	max-width: 56ch;
}

.lp-why__benefits {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
}

.lp-why__benefit {
	position: relative;
	padding-left: 30px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--lp-ink);
}

.lp-why__benefit::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--lp-green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

/* --------------------------------------------------------------------------
   Sector page — Recommended lux levels (bar table)
   -------------------------------------------------------------------------- */
.lp-lux {
	padding: 64px 5%;
	background: #f5f5f5;
}

.lp-lux__head {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 34px;
	padding: 0 5%;
}

.lp-lux__title {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-lux__subtitle {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #5d6b58;
}

/* Bar-chart card */
.lp-lux__panel {
	background: #fff;
	border: 1px solid #e4e8e2;
	border-radius: var(--lp-radius);
	padding: 26px 28px;
	box-shadow: 0 8px 24px rgba(20, 40, 16, 0.06);
	margin-bottom: 22px;
}

.lp-lux__panel-title {
	font-size: 1.05rem;
	margin-bottom: 5px;
	font-weight: 700;
	color: var(--lp-ink);
}

p.lp-lux__panel-sub {
    font-size: 0.9em;
    color: grey;
}

p.lp-lux__source{
    font-size: 0.9em;
    color: grey;
	padding: 20px 10px 0px;
}

.lp-lux__bars {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lp-lux__bar-row {
	display: grid;
	grid-template-columns: 200px 1fr 70px;
	gap: 16px;
	align-items: center;
}

.lp-lux__bar-label {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--lp-ink);
}

.lp-lux__bar-track {
	height: 24px;
	border-radius: 3px;
	background: #eef1ee;
	overflow: hidden;
}

.lp-lux__bar-fill {
	display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 15px;
    height: 100%;
    border-radius: 3px;
	background: var(--lp-green);
	min-width: 75px;
}

.lp-lux__bar-val {
	font-size: 0.8rem;
    font-weight: 700;
    color: white;
	text-align: right;
	white-space: nowrap;
}

span.lp-lux__scale-track {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.7em;
    color: grey;
}

/* Detailed table */
.lp-lux__table {
	background: #fff;
	border: 1px solid #e4e8e2;
	border-radius: var(--lp-radius);
	overflow: hidden;
}

.lp-lux__row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 16px;
	align-items: center;
	padding: 13px 22px;
	border-top: 1px solid #eef1ee;
}

.lp-lux__row:first-child {
	border-top: 0;
}

.lp-lux__row--head {
	background: #1e3a2f;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 700;
}

.lp-lux__row--head .lp-lux__cell {
	color: #fff;
}

.lp-lux__col-area {
    font-weight: 600;
}

.lp-lux__cell {
	font-size: 0.85em;	
}

.lp-lux__cell--area {
	font-weight: 600;
	color: var(--lp-ink);
}

.lp-lux__cell--val {
	font-weight: 700;
	color: var(--lp-green-dark);
	white-space: nowrap;
}

.lp-lux__cell--notes {
	color: #6b7568;
	font-size: 0.9rem;
}

/* Key points */
.lp-lux__points {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px 32px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.lp-lux__point {
	position: relative;
	padding-left: 28px;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--lp-ink);
}

.lp-lux__point::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: var(--lp-green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 11px 11px;
}

.lp-lux__source {
    font-size: 0.8em;
    margin-top: 20px;
}
/* --------------------------------------------------------------------------
   Sector page — Lighting design service (intro + numbered steps)
   -------------------------------------------------------------------------- */
.lp-service {
	padding: 64px 5%;
	background: #fff;
}

.lp-service__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.lp-service__title {
	margin: 0 0 14px;
	text-transform: capitalize;
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	line-height: 1.14;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-service__text {
	margin: 0 0 22px;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #5d6b58;
}

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

.lp-service__benefit {
	position: relative;
	padding-left: 30px;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.4;
	color: var(--lp-ink);
}

.lp-service__benefit::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--lp-green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 12px 12px;
}

.lp-service__steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.lp-service__step {
	position: relative;
	display: flex;
	gap: 18px;
	padding-bottom: 26px;
}

.lp-service__step:last-child {
	padding-bottom: 0;
}

/* connector line between step numbers */
.lp-service__step:not(:last-child)::before {
	content: "";
	position: absolute;
	left: 19px;
	top: 40px;
	bottom: 0;
	width: 2px;
	background: #e4e8e2;
}

.lp-service__step-num {
	position: relative;
	z-index: 1;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--lp-green);
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lp-service__step-body {
	padding-top: 6px;
}

.lp-service__step-title {
	margin: 0 0 4px;
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--lp-ink);
}

.lp-service__step-text {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #5d6b58;
}

/* --------------------------------------------------------------------------
   Sector page — Gallery
   -------------------------------------------------------------------------- */
.lp-gallery {
	padding: 64px 5%;
	background: #fff;
}

.lp-gallery__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 34px;
}

.lp-gallery__title {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-gallery__subtitle {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #5d6b58;
}

.lp-gallery__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
}

.lp-gallery__item {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: var(--lp-radius);
	overflow: hidden;
}

.lp-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.lp-gallery__item:hover img,
.lp-gallery__item:focus-visible img {
	transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   Section 3 — "What sector are you in?" (child-category grid)
   -------------------------------------------------------------------------- */
.lp-sectors {
	padding: 64px 5%;
	background: #F7F7F7;
}

.lp-sectors__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 40px;
}

.lp-sectors__title {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-sectors__subtitle {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #5d6b58;
}

.lp-sectors__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
}

.lp-sector {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	padding: 26px 18px;
	background: #fff;
	border: 1px solid #e4e8e2;
	border-radius: var(--lp-radius);
	text-decoration: none;
	color: var(--lp-ink);
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lp-sector:hover,
.lp-sector:focus-visible {
	border-color: var(--lp-green);
	box-shadow: 0 8px 22px rgba(20, 40, 16, 0.10);
	transform: translateY(-3px);
}

.lp-sector__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #e9f8e5;
	color: var(--lp-green);
	font-size: 26px;
	overflow: hidden;
}

.lp-sector__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	width: 22px;
	border-radius: 50%;
}

.lp-sector__name {
	font-size: 1.02rem;
	font-weight: 700;
	line-height: 1.25;
}

.lp-sector__desc {
	font-size: 0.85rem;
	line-height: 1.45;
	color: #6b7568;
}

/* --------------------------------------------------------------------------
   Section 4 — Product loop
   Uses WooCommerce's own grid/card styles; we only add section chrome + spacing.
   -------------------------------------------------------------------------- */
.lp-products {
	padding: 60px 5%;
	background: #fff;
}

.lp-products__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 30px;
}

.lp-products__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
	line-height: 1.14;
	font-weight: 700;
	color: var(--lp-ink);
}

/* Filter chips */
.lp-filters {
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding-bottom: 25px;
    border-bottom: 1px solid #c8c8c8;
}

.lp-filters__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	font-weight: 700;
	margin-right: 4px;
}

.lp-filter {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	border: 1px solid #d5dbd2;
	border-radius: 999px;
	background: #fff;
	color: var(--lp-ink);
	text-decoration: none;
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1;
	transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.lp-filter:hover {
	border-color: var(--lp-green);
}

.lp-filter.is-active {
	background: var(--lp-green);
	border-color: var(--lp-green);
	color: #fff;
}

.lp-filter__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 20px;
	padding: 0 7px;
	border-radius: 999px;
	background: #eef1ee;
	color: #5d6b58;
	font-size: 0.75rem;
	font-weight: 700;
}

.lp-filter.is-active .lp-filter__count {
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
}

.lp-products .woocommerce-result-count {
	margin-bottom: 1.25rem;
}

.lp-products .woocommerce-pagination {
	margin-top: 2.25rem;
	text-align: center;
}

/* --------------------------------------------------------------------------
   Section 5 — FAQ accordion
   -------------------------------------------------------------------------- */
.lp-faq {
	padding: 64px 5%;
	background: #F5F5F5;
}

.lp-faq__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 36px;
}

.lp-faq__title {
	margin: 0 0 12px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-faq__subtitle {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #5d6b58;
}

.lp-faq__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px 24px;
	align-items: start;
}

.lp-faq__item {
	border: 1px solid #e4e8e2;
	border-radius: var(--lp-radius);
	background: #fff;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.lp-faq__item[open] {
	border-color: var(--lp-green);
	box-shadow: 0 6px 18px rgba(20, 40, 16, 0.07);
}

.lp-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--lp-ink);
	list-style: none;
}

.lp-faq__q::-webkit-details-marker {
	display: none;
}

.lp-faq__q::after {
	content: "";
	flex: 0 0 auto;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background-color: var(--lp-green);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px 14px;
	transition: transform .2s ease;
}

.lp-faq__item[open] .lp-faq__q::after {
	transform: rotate(180deg);
}

.lp-faq__a {
	padding: 0 20px 20px;
	font-size: 0.95rem;
	line-height: 1.65;
	color: #5d6b58;
}

.lp-faq__a p {
	margin: 0 0 0.8em;
}

.lp-faq__a p:last-child {
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Section 6 — Blog carousel
   Cards reuse the global `.blog-card` styles from /blog/; we only lay them out.
   -------------------------------------------------------------------------- */
.lp-blog {
	padding: 64px 5%;
	background: #f7f8f9;
}

.lp-blog__head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 34px;
}

.lp-blog__title {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.12;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-blog__viewport {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
	margin: 0 -4px;
	padding: 4px;
}

.lp-blog__viewport::-webkit-scrollbar {
	display: none;
}

.lp-blog__track {
	display: flex;
	gap: 24px;
	align-items: stretch;
}

.lp-blog__slide {
	flex: 0 0 calc((100% - 48px) / 3);
	scroll-snap-align: start;
}

/* Make the reused blog cards fill each slide at equal height. */
.lp-industry .lp-blog__slide > .blog-card {
	width: 100%;
	height: 100%;
	margin: 0;
}

/* Controls */
.lp-blog__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 28px;
}

.lp-blog__nav {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--lp-green);
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	cursor: pointer;
	transition: background-color .18s ease, opacity .18s ease;
}

.lp-blog__nav--prev {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367a058' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.lp-blog__nav--next {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367a058' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

.lp-blog__nav:hover:not(:disabled) {
	background-color: #e9f8e5;
}

.lp-blog__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.lp-blog__dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.lp-blog__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #c4cdbf;
	cursor: pointer;
	transition: background-color .18s ease, width .18s ease;
}

.lp-blog__dot[aria-current="true"] {
	background: var(--lp-green);
	width: 24px;
	border-radius: 6px;
}

.lp-blog__foot {
	text-align: center;
	margin-top: 32px;
}

/* --------------------------------------------------------------------------
   Section 7 — "Can't find?" CTA band
   -------------------------------------------------------------------------- */
.lp-cta {
	background: #1e3a2f;
	color: #fff;
}

.lp-cta__inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 60px 5%;
	text-align: center;
}

.lp-cta__title {
	margin: 0 0 14px;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	line-height: 1.12;
	font-weight: 700;
	color: #fff;
}

.lp-cta__text {
	margin: 0 auto 26px;
	max-width: 56ch;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
}

.lp-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
}

/* --------------------------------------------------------------------------
   Section 8 — Newsletter strip
   -------------------------------------------------------------------------- */
.lp-newsletter {
	padding: 48px 5%;
	background: #F0F7EE;
    border-top: 7px solid var(--lp-green);
}

.lp-newsletter__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px 48px;
}

.lp-newsletter__content {
	flex: 1 1 360px;
}

.lp-newsletter__title {
	margin: 0 0 6px;
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	line-height: 1.15;
	font-weight: 700;
	color: var(--lp-ink);
}

.lp-newsletter__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: #5d6b58;
	max-width: 60ch;
}

.lp-newsletter__form {
	flex: 1 1 360px;
	max-width: 480px;
}

.lp-newsletter__placeholder {
	display: flex;
	gap: 10px;
}

.lp-newsletter__placeholder input[type="text"] {
	flex: 1 1 auto;
	min-width: 0;
	padding: 12px 16px;
	border: 1px solid #cdd5c8;
	border-radius: var(--lp-radius);
	font-size: 1rem;
	background: #fff;
}

.lp-newsletter .gform_wrapper.gravity-theme .gform_footer input{
	background: var(--primary);
    color: #fff;
    border-color: var(--primary);
	padding: 12px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.2;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1200px) {
		.lp-hero__panel {
    padding: 0;
	}
}
@media (max-width: 900px) {
	.lp-trade__action {
    margin-top: 20px;
}
	.lp-hero__grid {
		grid-template-columns: 1fr;
		gap: 32px;
		padding: 52px 0;
	}

	.lp-hero__overlay {
		background: linear-gradient(180deg, rgba(10, 13, 15, 0.8) 0%, rgba(10, 13, 15, 0.9) 100%);
	}

	.lp-hero__desc {
		max-width: none;
	}

	.lp-faq__grid {
		grid-template-columns: 1fr;
	}

	.lp-blog__slide {
		flex-basis: calc((100% - 24px) / 2);
	}

	.lp-why__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.lp-service__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
}

@media (max-width: 560px) {
	.lp-hero__benefits {
		grid-template-columns: 1fr;
	}

	.lp-hero__buttons .btn {
		flex: 1 1 auto;
		text-align: center;
	}

	.lp-trust__list {
		justify-content: flex-start;
		gap: 12px 28px;
	}

	.lp-trade__action,
	.lp-trade__cta {
		width: 100%;
		text-align: center;
	}

	.lp-blog__slide {
		flex-basis: 86%;
	}

	.lp-cta__buttons .btn {
		flex: 1 1 auto;
		text-align: center;
	}

	.lp-newsletter__placeholder {
		flex-direction: column;
	}

	.lp-newsletter__placeholder .btn {
		width: 100%;
		text-align: center;
	}

	.lp-why__benefits {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	.lp-lux__bar-row {
		grid-template-columns: 1fr auto;
		gap: 4px 12px;
	}

	.lp-lux__bar-track {
		grid-column: 1 / -1;
		order: 3;
	}

	.lp-lux__row {
		grid-template-columns: 1fr auto;
		gap: 4px 14px;
		padding: 13px 18px;
	}

	.lp-lux__cell--notes {
		grid-column: 1 / -1;
		order: 3;
	}

	.lp-lux__row--head .lp-lux__cell--notes {
		display: none;
	}
	.lp-lux{
    padding: 64px 0;
}
	.lp-lux__panel {
    padding: 26px 5%;
	}
	    .lp-hero__grid {
        padding: 0;
    }
.lp-lux__source {
	padding: 0 5%;
}
}





/* ---- Product filter/pagination loading spinner ---- */
#lp-products {
	position: relative; /* anchor the overlay */
}

/* Dim the results and stop clicks while loading */
#lp-products.is-loading .lp-products__results {
	opacity: 0.45;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

/* The spinner overlay, centred over the results area */
#lp-products.is-loading .lp-products__results::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	margin: -22px 0 0 -22px;
	border: 4px solid rgba(0, 0, 0, 0.15);
	border-top-color: #e30613; /* match your brand accent (red); change as needed */
	border-radius: 50%;
	animation: lp-spin 0.7s linear infinite;
	z-index: 5;
}

@keyframes lp-spin {
	to { transform: rotate(360deg); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
	#lp-products.is-loading .lp-products__results::after {
		animation-duration: 2s;
	}
}
