/* ==========================================================================
   LogicWise — design system
   Indigo #4F46E5 · Teal #14B8A6 · Graphite #12181B · Indigo tint #EEF0FE · Manrope
   ========================================================================== */

:root {
	/* Brand — "Aurora": indigo → teal */
	--lw-primary: #4f46e5;
	--lw-primary-600: #4338ca;
	--lw-primary-700: #3730a3;
	--lw-primary-300: #a5a0f0;
	--lw-primary-tint: #eef0fe;
	--lw-primary-tint-2: #e3e1fb;
	--lw-teal: #14b8a6;
	--lw-teal-600: #0f9488;
	/* -700 is the deepest teal; white text only ever sits on this one (5.2:1). */
	--lw-teal-700: #0b7a72;
	--lw-teal-tint: #e6fbf8;
	--lw-gradient: linear-gradient(135deg, var(--lw-primary), var(--lw-teal));
	--lw-ink: #12181b;
	--lw-ink-800: #1c242a;
	--lw-ink-700: #2b343b;
	--lw-grey: #5b6172;
	--lw-grey-400: #9298a6;
	--lw-line: #e4e6f0;
	--lw-white: #ffffff;
	--lw-off: #fafafb;

	/* Semantic */
	--lw-text: var(--lw-ink);
	--lw-text-muted: #5d636e;
	--lw-text-subtle: var(--lw-grey);
	--lw-bg: var(--lw-white);
	--lw-surface: var(--lw-primary-tint);

	/* Type scale */
	--lw-font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--lw-h1: clamp(2.25rem, 1.35rem + 3.9vw, 4rem);
	--lw-h2: clamp(1.75rem, 1.25rem + 2.1vw, 2.75rem);
	--lw-h3: clamp(1.25rem, 1.06rem + 0.8vw, 1.6rem);
	--lw-lead: clamp(1.02rem, 0.96rem + 0.28vw, 1.18rem);

	/* Layout */
	--lw-container: 1200px;
	--lw-container-narrow: 860px;
	--lw-gutter: clamp(1.25rem, 0.9rem + 1.6vw, 2.5rem);
	--lw-section-y: clamp(4rem, 2.6rem + 5.6vw, 7.5rem);

	/* Radii + shadow */
	--lw-radius-sm: 10px;
	--lw-radius: 16px;
	--lw-radius-lg: 24px;
	--lw-radius-xl: 32px;
	--lw-shadow-sm: 0 1px 2px rgba(18, 24, 27, 0.06), 0 2px 8px rgba(18, 24, 27, 0.04);
	--lw-shadow: 0 4px 12px rgba(18, 24, 27, 0.06), 0 12px 32px rgba(18, 24, 27, 0.07);
	--lw-shadow-lg: 0 8px 24px rgba(18, 24, 27, 0.08), 0 28px 64px rgba(18, 24, 27, 0.12);
	--lw-shadow-primary: 0 10px 24px rgba(79, 70, 229, 0.22), 0 2px 6px rgba(79, 70, 229, 0.14);

	--lw-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */

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

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	margin: 0;
	font-family: var(--lw-font);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--lw-text);
	background: var(--lw-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.6em;
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.02em;
	color: var(--lw-ink);
}

h1 { font-size: var(--lw-h1); letter-spacing: -0.035em; }
h2 { font-size: var(--lw-h2); letter-spacing: -0.03em; }
h3 { font-size: var(--lw-h3); }
h4 { font-size: 1.125rem; }

p { margin: 0 0 1.15rem; }
p:last-child { margin-bottom: 0; }

a {
	color: var(--lw-primary);
	text-decoration: none;
	transition: color 0.2s var(--lw-ease), opacity 0.2s var(--lw-ease);
}

a:hover { color: var(--lw-primary-700); }

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

ul, ol { margin: 0 0 1.15rem; padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

strong, b { font-weight: 600; }

hr {
	border: 0;
	border-top: 1px solid var(--lw-line);
	margin: 2.5rem 0;
}

:focus-visible {
	outline: 3px solid var(--lw-primary);
	outline-offset: 3px;
	border-radius: 4px;
}

::selection {
	background: var(--lw-primary);
	color: #fff;
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.lw-container {
	width: 100%;
	max-width: var(--lw-container);
	margin-inline: auto;
	padding-inline: var(--lw-gutter);
}

.lw-container--narrow { max-width: var(--lw-container-narrow); }

.lw-section { padding-block: var(--lw-section-y); }
.lw-section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
.lw-section--tint { background: var(--lw-primary-tint); }
.lw-section--off { background: var(--lw-off); }

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

.lw-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	padding: 0.85rem 1.4rem;
	background: var(--lw-ink);
	color: #fff;
	border-radius: 0 0 var(--lw-radius-sm) 0;
	font-weight: 500;
}

.lw-skip-link:focus {
	left: 0;
	color: #fff;
}

/* --------------------------------------------------------------------------
   Section headings
   -------------------------------------------------------------------------- */

.lw-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	padding: 0.4rem 0.9rem;
	border-radius: 999px;
	background: var(--lw-primary-tint);
	color: var(--lw-primary-700);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lw-eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--lw-primary);
}

.lw-section-head {
	max-width: 720px;
	margin-bottom: clamp(2.5rem, 1.8rem + 2.6vw, 4rem);
}

.lw-section-head--center {
	margin-inline: auto;
	text-align: center;
}

.lw-section-head p {
	font-size: var(--lw-lead);
	color: var(--lw-text-muted);
	margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.lw-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 0.9rem 1.6rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: inherit;
	font-size: 0.97rem;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: transform 0.2s var(--lw-ease), box-shadow 0.2s var(--lw-ease),
		background-color 0.2s var(--lw-ease), color 0.2s var(--lw-ease), border-color 0.2s var(--lw-ease);
}

.lw-btn svg { flex: none; }

.lw-btn:hover { transform: translateY(-2px); }
.lw-btn:active { transform: translateY(0); }

.lw-btn--primary {
	/* Gradient echoes the logo mark: indigo into teal, left to right. */
	background: linear-gradient(100deg, var(--lw-primary) 0%, var(--lw-teal-700) 100%);
	color: #fff;
	box-shadow: var(--lw-shadow-primary);
}

.lw-btn--primary:hover {
	background: linear-gradient(100deg, var(--lw-primary-600) 0%, var(--lw-teal-700) 100%);
	color: #fff;
	box-shadow: 0 14px 30px rgba(79, 70, 229, 0.3), 0 3px 8px rgba(20, 184, 166, 0.2);
}

.lw-btn--ghost {
	background: #fff;
	color: var(--lw-ink);
	border-color: var(--lw-line);
	box-shadow: var(--lw-shadow-sm);
}

.lw-btn--ghost:hover {
	color: var(--lw-primary-700);
	border-color: var(--lw-primary-300);
	background: #fff;
}

.lw-btn--onDark {
	background: #fff;
	color: var(--lw-ink);
}

.lw-btn--onDark:hover { background: #fff; color: var(--lw-primary-700); }

.lw-btn--outlineLight {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.lw-btn--outlineLight:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.6);
}

.lw-btn--sm { padding: 0.65rem 1.2rem; font-size: 0.9rem; }
.lw-btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }

.lw-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

/* Text link with arrow */
.lw-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 500;
	font-size: 0.95rem;
	color: var(--lw-primary);
}

.lw-link-arrow svg {
	transition: transform 0.2s var(--lw-ease);
}

.lw-link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.lw-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.86);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.25s var(--lw-ease), box-shadow 0.25s var(--lw-ease),
		background-color 0.25s var(--lw-ease);
}

.lw-header.is-stuck {
	border-bottom-color: var(--lw-line);
	box-shadow: 0 1px 20px rgba(18, 24, 27, 0.06);
}

.lw-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 78px;
}

.lw-brand {
	display: inline-flex;
	align-items: center;
	flex: none;
}

.lw-brand img,
.lw-brand svg { height: 38px; width: auto; }

.lw-brand__fallback {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: -0.03em;
	color: var(--lw-ink);
}

.lw-nav { margin-left: auto; }

.lw-nav__list {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lw-nav__list li { margin: 0; position: relative; }

.lw-nav__list a {
	display: block;
	padding: 0.6rem 0.95rem;
	border-radius: var(--lw-radius-sm);
	color: var(--lw-ink);
	font-size: 0.95rem;
	font-weight: 500;
}

.lw-nav__list a:hover,
.lw-nav__list .current-menu-item > a,
.lw-nav__list .current_page_item > a,
.lw-nav__list .current-menu-ancestor > a {
	color: var(--lw-primary-700);
	background: var(--lw-primary-tint);
}

/* Dropdowns */
.lw-nav__list .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 0.45rem;
	border-right: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	opacity: 0.6;
}

.lw-nav__list ul.sub-menu {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 268px;
	margin: 0;
	padding: 0.5rem;
	list-style: none;
	background: #fff;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	box-shadow: var(--lw-shadow-lg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.2s var(--lw-ease), transform 0.2s var(--lw-ease), visibility 0.2s;
}

.lw-nav__list li:hover > ul.sub-menu,
.lw-nav__list li:focus-within > ul.sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lw-nav__list ul.sub-menu a {
	padding: 0.6rem 0.8rem;
	font-size: 0.92rem;
	font-weight: 400;
	color: var(--lw-text-muted);
}

.lw-nav__list ul.sub-menu a:hover {
	color: var(--lw-primary-700);
	background: var(--lw-primary-tint);
}

.lw-header__cta { flex: none; }

/* Burger */
.lw-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius-sm);
	cursor: pointer;
}

.lw-burger span {
	display: block;
	width: 20px;
	height: 2px;
	margin-inline: auto;
	background: var(--lw-ink);
	border-radius: 2px;
	transition: transform 0.25s var(--lw-ease), opacity 0.2s var(--lw-ease);
}

.lw-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lw-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.lw-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
	.lw-burger { display: flex; }
	.lw-header__cta { display: none; }

	.lw-nav {
		position: fixed;
		inset: 78px 0 auto 0;
		max-height: calc(100dvh - 78px);
		overflow-y: auto;
		margin: 0;
		padding: 1rem var(--lw-gutter) 2rem;
		background: #fff;
		border-bottom: 1px solid var(--lw-line);
		box-shadow: var(--lw-shadow-lg);
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.25s var(--lw-ease), transform 0.25s var(--lw-ease), visibility 0.25s;
	}

	.lw-nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.lw-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.15rem;
	}

	.lw-nav__list a {
		padding: 0.85rem 0.9rem;
		font-size: 1.02rem;
	}

	.lw-nav__list ul.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--lw-primary-tint-2);
		border-radius: 0;
		margin-left: 0.9rem;
		padding: 0.15rem 0 0.15rem 0.5rem;
		min-width: 0;
	}

	.lw-nav__mobile-cta {
		display: block;
		margin-top: 1rem;
	}

	.lw-nav__mobile-cta .lw-btn { width: 100%; }
}

@media (min-width: 992px) {
	.lw-nav__mobile-cta { display: none; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.lw-hero {
	position: relative;
	padding-block: clamp(3.5rem, 2rem + 6vw, 6.5rem) clamp(3.5rem, 2rem + 5vw, 6rem);
	background:
		radial-gradient(760px 460px at 88% -8%, rgba(79, 70, 229, 0.13), transparent 62%),
		radial-gradient(620px 420px at -6% 8%, rgba(79, 70, 229, 0.08), transparent 60%),
		var(--lw-white);
	overflow: hidden;
}

.lw-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(79, 70, 229, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(79, 70, 229, 0.045) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
	mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 72%);
	pointer-events: none;
	z-index: 0;
}

.lw-hero > * { position: relative; z-index: 1; }

.lw-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
}

.lw-hero h1 { margin-bottom: 1.25rem; }

.lw-hero h1 .lw-accent {
	/* Gradient TEXT, so it stops at -600 rather than the brighter --lw-teal:
	   #14B8A6 on white is only 2.49:1 and fails even the large-text bar. */
	background: linear-gradient(100deg, var(--lw-primary) 10%, var(--lw-teal-600) 95%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.lw-hero__lead {
	font-size: clamp(1.05rem, 0.98rem + 0.36vw, 1.25rem);
	color: var(--lw-text-muted);
	max-width: 56ch;
	margin-bottom: 2rem;
}

.lw-hero__art { position: relative; }

.lw-hero__art img,
.lw-hero__art svg {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 30px 60px rgba(18, 24, 27, 0.13));
}

/* Trust strip under hero */
.lw-hero__trust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 1.75rem;
	margin-top: 2.5rem;
	padding-top: 1.75rem;
	border-top: 1px solid var(--lw-line);
}

.lw-hero__trust span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--lw-text-muted);
}

.lw-hero__trust svg { color: var(--lw-primary); flex: none; }

@media (max-width: 900px) {
	.lw-hero__grid { grid-template-columns: 1fr; }
	.lw-hero__art { order: -1; max-width: 520px; margin-inline: auto; }
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.lw-page-hero {
	position: relative;
	padding-block: clamp(3rem, 2rem + 4vw, 5rem);
	background:
		radial-gradient(620px 320px at 82% 0%, rgba(79, 70, 229, 0.12), transparent 62%),
		var(--lw-primary-tint);
	border-bottom: 1px solid var(--lw-primary-tint-2);
	text-align: center;
}

.lw-page-hero h1 { margin-bottom: 0.75rem; }

.lw-page-hero p {
	max-width: 62ch;
	margin-inline: auto;
	font-size: var(--lw-lead);
	color: var(--lw-text-muted);
}

.lw-breadcrumb {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.1rem;
	font-size: 0.86rem;
	color: var(--lw-text-subtle);
}

.lw-breadcrumb a { color: var(--lw-text-muted); font-weight: 500; }
.lw-breadcrumb a:hover { color: var(--lw-primary); }
.lw-breadcrumb span[aria-hidden] { opacity: 0.5; }

/* --------------------------------------------------------------------------
   Cards / services
   -------------------------------------------------------------------------- */

.lw-grid {
	display: grid;
	gap: clamp(1.15rem, 0.9rem + 1vw, 1.75rem);
}

.lw-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lw-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.lw-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 980px) {
	.lw-grid--3, .lw-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
	.lw-grid--2, .lw-grid--3, .lw-grid--4 { grid-template-columns: minmax(0, 1fr); }
}

.lw-card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(1.5rem, 1.2rem + 0.9vw, 2rem);
	background: #fff;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius-lg);
	box-shadow: var(--lw-shadow-sm);
	transition: transform 0.3s var(--lw-ease), box-shadow 0.3s var(--lw-ease),
		border-color 0.3s var(--lw-ease);
	overflow: hidden;
}

.lw-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--lw-primary), #8b7bf0);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s var(--lw-ease);
}

.lw-card:hover {
	transform: translateY(-6px);
	border-color: var(--lw-primary-tint-2);
	box-shadow: var(--lw-shadow-lg);
}

.lw-card:hover::before { transform: scaleX(1); }

.lw-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 1.25rem;
	border-radius: var(--lw-radius);
	background: var(--lw-primary-tint);
	color: var(--lw-primary);
	transition: background-color 0.3s var(--lw-ease), color 0.3s var(--lw-ease);
}

.lw-card:hover .lw-card__icon {
	background: var(--lw-primary);
	color: #fff;
}

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

.lw-card h3 { margin-bottom: 0.6rem; }

.lw-card p {
	color: var(--lw-text-muted);
	font-size: 0.96rem;
	margin-bottom: 1.25rem;
}

.lw-card .lw-link-arrow { margin-top: auto; }

/* Whole-card link overlay */
.lw-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Feature list inside cards */
.lw-card__list {
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.lw-card__list li {
	position: relative;
	padding-left: 1.6rem;
	margin-bottom: 0.5rem;
	font-size: 0.93rem;
	color: var(--lw-text-muted);
}

.lw-card__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 9px;
	height: 5px;
	border-left: 2px solid var(--lw-primary);
	border-bottom: 2px solid var(--lw-primary);
	transform: rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Process (Plan → Design → Build → Deploy)
   -------------------------------------------------------------------------- */

.lw-process {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.15rem, 0.8rem + 1.2vw, 1.75rem);
	counter-reset: lw-step;
}

.lw-process__step {
	position: relative;
	padding: clamp(1.5rem, 1.2rem + 0.8vw, 2rem);
	background: #fff;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius-lg);
	box-shadow: var(--lw-shadow-sm);
	counter-increment: lw-step;
	transition: transform 0.3s var(--lw-ease), box-shadow 0.3s var(--lw-ease);
}

.lw-process__step:hover {
	transform: translateY(-5px);
	box-shadow: var(--lw-shadow);
}

/* Connector line between steps */
.lw-process__step::after {
	content: "";
	position: absolute;
	top: calc(clamp(1.5rem, 1.2rem + 0.8vw, 2rem) + 22px);
	right: calc(clamp(1.15rem, 0.8rem + 1.2vw, 1.75rem) * -1);
	width: clamp(1.15rem, 0.8rem + 1.2vw, 1.75rem);
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--lw-primary-300) 0 6px, transparent 6px 12px);
}

.lw-process__step:last-child::after { display: none; }

.lw-process__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 1.1rem;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--lw-primary) 0%, var(--lw-teal-700) 100%);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0;
}

.lw-process__num::before {
	content: "0" counter(lw-step);
}

.lw-process__step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }

.lw-process__step p {
	font-size: 0.93rem;
	color: var(--lw-text-muted);
	margin: 0;
}

@media (max-width: 980px) {
	.lw-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lw-process__step:nth-child(2)::after { display: none; }
}

@media (max-width: 600px) {
	.lw-process { grid-template-columns: minmax(0, 1fr); }
	.lw-process__step::after { display: none; }
}

/* --------------------------------------------------------------------------
   Stats band
   -------------------------------------------------------------------------- */

.lw-stats {
	position: relative;
	padding-block: clamp(3rem, 2.2rem + 3vw, 4.5rem);
	background:
		radial-gradient(600px 300px at 12% 0%, rgba(79, 70, 229, 0.5), transparent 62%),
		radial-gradient(600px 340px at 88% 100%, rgba(20, 184, 166, 0.32), transparent 62%),
		var(--lw-ink);
	color: #fff;
	overflow: hidden;
}

.lw-stats::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 64px 64px;
	pointer-events: none;
}

.lw-stats > * { position: relative; }

.lw-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(1.5rem, 1rem + 2vw, 2.5rem);
	text-align: center;
}

.lw-stat__value {
	display: block;
	font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.4rem);
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.04em;
	color: #fff;
}

.lw-stat__label {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 760px) {
	.lw-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   Split / media sections
   -------------------------------------------------------------------------- */

.lw-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: clamp(2rem, 1.4rem + 3.4vw, 4.5rem);
}

.lw-split--reverse .lw-split__media { order: 2; }

.lw-split__media img,
.lw-split__media svg {
	width: 100%;
	border-radius: var(--lw-radius-lg);
}

@media (max-width: 900px) {
	.lw-split { grid-template-columns: 1fr; }
	.lw-split--reverse .lw-split__media { order: 0; }
}

/* Why-us list */
.lw-why {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.25rem, 1rem + 1.2vw, 2rem);
}

.lw-why__item { display: flex; gap: 1rem; }

.lw-why__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--lw-primary-tint);
	color: var(--lw-primary);
}

.lw-why__icon svg { width: 24px; height: 24px; }

.lw-why__item h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }

.lw-why__item p {
	font-size: 0.93rem;
	color: var(--lw-text-muted);
	margin: 0;
}

@media (max-width: 700px) {
	.lw-why { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Tech marquee / logo strip
   -------------------------------------------------------------------------- */

.lw-tech {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.7rem;
}

.lw-tech__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.6rem 1.15rem;
	background: #fff;
	border: 1px solid var(--lw-line);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--lw-text-muted);
	box-shadow: var(--lw-shadow-sm);
	transition: transform 0.2s var(--lw-ease), border-color 0.2s var(--lw-ease), color 0.2s var(--lw-ease);
}

.lw-tech__pill:hover {
	transform: translateY(-3px);
	border-color: var(--lw-primary-300);
	color: var(--lw-primary-700);
}

.lw-tech__pill span[aria-hidden] {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lw-primary);
	opacity: 0.55;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.lw-quote {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(1.75rem, 1.4rem + 1.2vw, 2.4rem);
	background: #fff;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius-lg);
	box-shadow: var(--lw-shadow-sm);
}

.lw-quote__stars {
	display: flex;
	gap: 3px;
	margin-bottom: 1rem;
	color: #f5a623;
}

.lw-quote__stars svg { width: 18px; height: 18px; }

.lw-quote blockquote {
	margin: 0 0 1.5rem;
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--lw-text);
}

.lw-quote__author {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: auto;
}

.lw-quote__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	flex: none;
	border-radius: 50%;
	background: var(--lw-primary-tint);
	color: var(--lw-primary-700);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

.lw-quote__name { font-weight: 600; font-size: 0.95rem; }
.lw-quote__role { font-size: 0.86rem; color: var(--lw-text-subtle); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.lw-cta {
	position: relative;
	padding-block: clamp(3.25rem, 2.4rem + 3.4vw, 5rem);
	background: linear-gradient(120deg, var(--lw-primary-700) 0%, var(--lw-primary) 50%, var(--lw-teal-700) 100%);
	color: #fff;
	overflow: hidden;
}

.lw-cta::before {
	content: "";
	position: absolute;
	top: -40%;
	right: -10%;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%);
	pointer-events: none;
}

.lw-cta > * { position: relative; }

.lw-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 2rem;
}

.lw-cta h2 { color: #fff; margin-bottom: 0.6rem; max-width: 20ch; }

.lw-cta p {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--lw-lead);
	margin: 0;
	max-width: 52ch;
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.lw-contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 1.4rem + 3vw, 4rem);
	align-items: start;
}

@media (max-width: 900px) {
	.lw-contact-grid { grid-template-columns: 1fr; }
}

.lw-contact-item {
	display: flex;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--lw-line);
}

.lw-contact-item:last-of-type { border-bottom: 0; }

.lw-contact-item__icon {
	flex: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: var(--lw-primary-tint);
	color: var(--lw-primary);
}

.lw-contact-item__icon svg { width: 22px; height: 22px; }

.lw-contact-item h3 {
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--lw-text-subtle);
	margin-bottom: 0.3rem;
}

.lw-contact-item a,
.lw-contact-item address {
	font-size: 1.02rem;
	font-style: normal;
	font-weight: 500;
	color: var(--lw-ink);
	line-height: 1.5;
}

.lw-contact-item a:hover { color: var(--lw-primary); }

/* Form */
.lw-form {
	padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.5rem);
	background: #fff;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius-lg);
	box-shadow: var(--lw-shadow);
}

.lw-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

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

.lw-field { margin-bottom: 1.1rem; }

.lw-field label {
	display: block;
	margin-bottom: 0.45rem;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--lw-ink);
}

.lw-field .lw-req { color: var(--lw-primary); }

.lw-field input,
.lw-field select,
.lw-field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	font-family: inherit;
	font-size: 0.97rem;
	color: var(--lw-ink);
	background: var(--lw-off);
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius-sm);
	transition: border-color 0.2s var(--lw-ease), box-shadow 0.2s var(--lw-ease), background-color 0.2s var(--lw-ease);
}

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

.lw-field input:focus,
.lw-field select:focus,
.lw-field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--lw-primary);
	box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.14);
}

.lw-field input::placeholder,
.lw-field textarea::placeholder { color: var(--lw-grey-400); }

.lw-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	margin-bottom: 1.4rem;
	font-size: 0.86rem;
	color: var(--lw-text-muted);
}

.lw-form__consent input {
	width: auto;
	margin-top: 0.2rem;
	flex: none;
	accent-color: var(--lw-primary);
}

.lw-form .lw-btn { width: 100%; }

.lw-notice {
	padding: 0.95rem 1.15rem;
	margin-bottom: 1.25rem;
	border-radius: var(--lw-radius-sm);
	font-size: 0.93rem;
	border: 1px solid transparent;
}

.lw-notice--ok {
	background: #eaf7ef;
	border-color: #bfe5cd;
	color: #1c6b3a;
}

.lw-notice--error {
	background: #fdeced;
	border-color: #f6c3c7;
	color: #a32330;
}

/* Honeypot */
.lw-hp {
	position: absolute !important;
	left: -9999px;
	opacity: 0;
	height: 0;
	width: 0;
	overflow: hidden;
}

/* --------------------------------------------------------------------------
   FAQ / accordion
   -------------------------------------------------------------------------- */

.lw-faq { max-width: 820px; margin-inline: auto; }

.lw-faq__item {
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius);
	background: #fff;
	margin-bottom: 0.85rem;
	overflow: hidden;
	transition: border-color 0.2s var(--lw-ease), box-shadow 0.2s var(--lw-ease);
}

.lw-faq__item[open] {
	border-color: var(--lw-primary-tint-2);
	box-shadow: var(--lw-shadow-sm);
}

.lw-faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.35rem;
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	list-style: none;
	color: var(--lw-ink);
}

.lw-faq__item summary::-webkit-details-marker { display: none; }

.lw-faq__item summary::after {
	content: "";
	flex: none;
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--lw-primary);
	border-bottom: 2px solid var(--lw-primary);
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.25s var(--lw-ease);
}

.lw-faq__item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }

.lw-faq__body {
	padding: 0 1.35rem 1.35rem;
	color: var(--lw-text-muted);
	font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   Content / editor styles
   -------------------------------------------------------------------------- */

.lw-content > *:first-child { margin-top: 0; }
.lw-content h2 { margin-top: 2.5rem; }
.lw-content h3 { margin-top: 2rem; }
.lw-content p, .lw-content li { color: var(--lw-text-muted); }
.lw-content ul, .lw-content ol { padding-left: 1.35rem; }

.lw-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.5rem;
	border-left: 3px solid var(--lw-primary);
	background: var(--lw-primary-tint);
	border-radius: 0 var(--lw-radius) var(--lw-radius) 0;
}

.lw-content blockquote p:last-child { margin-bottom: 0; }

.lw-content table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5rem;
}

.lw-content th, .lw-content td {
	padding: 0.75rem 1rem;
	border: 1px solid var(--lw-line);
	text-align: left;
}

.lw-content th { background: var(--lw-primary-tint); font-weight: 600; }

.lw-content img { border-radius: var(--lw-radius); }

.lw-content code {
	padding: 0.15em 0.4em;
	background: var(--lw-primary-tint);
	border-radius: 5px;
	font-size: 0.9em;
}

/* WP core alignment classes */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { margin-inline: auto; }
.alignwide { max-width: 1100px; margin-inline: auto; }
.alignfull { max-width: none; }

.wp-caption { max-width: 100%; }
.wp-caption-text, figcaption {
	font-size: 0.86rem;
	color: var(--lw-text-subtle);
	text-align: center;
	margin-top: 0.5rem;
}

.sticky, .gallery-caption, .bypostauthor { display: block; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.lw-footer {
	position: relative;
	padding-top: clamp(3.5rem, 2.6rem + 3.4vw, 5rem);
	background: var(--lw-ink);
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.94rem;
}

.lw-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
	gap: clamp(2rem, 1.4rem + 2.4vw, 3.5rem);
	padding-bottom: 3rem;
}

@media (max-width: 900px) {
	.lw-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.lw-footer__brand img { height: 40px; width: auto; margin-bottom: 1.25rem; }

.lw-footer__brand p { max-width: 38ch; margin-bottom: 1.5rem; }

.lw-footer h3 {
	margin-bottom: 1.1rem;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

.lw-footer ul { list-style: none; margin: 0; padding: 0; }
.lw-footer li { margin-bottom: 0.7rem; }

.lw-footer a { color: rgba(255, 255, 255, 0.68); }
.lw-footer a:hover { color: #fff; }

.lw-footer__contact li {
	display: flex;
	gap: 0.7rem;
	align-items: flex-start;
}

.lw-footer__contact svg {
	flex: none;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	color: var(--lw-primary-300);
}

.lw-footer__contact address { font-style: normal; }

.lw-social {
	display: flex;
	gap: 0.55rem;
}

.lw-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	transition: background-color 0.2s var(--lw-ease), transform 0.2s var(--lw-ease);
}

.lw-social a:hover {
	background: var(--lw-primary);
	transform: translateY(-2px);
}

.lw-social svg { width: 18px; height: 18px; }

.lw-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding-block: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.87rem;
}

.lw-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 1.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lw-footer__legal li { margin: 0; }

/* Back to top */
.lw-top {
	position: fixed;
	right: clamp(1rem, 0.6rem + 1.2vw, 2rem);
	bottom: clamp(1rem, 0.6rem + 1.2vw, 2rem);
	z-index: 90;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 50%;
	background: var(--lw-primary);
	color: #fff;
	cursor: pointer;
	box-shadow: var(--lw-shadow-primary);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity 0.25s var(--lw-ease), transform 0.25s var(--lw-ease), visibility 0.25s,
		background-color 0.2s var(--lw-ease);
}

.lw-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.lw-top:hover { background: var(--lw-primary-700); }

/* --------------------------------------------------------------------------
   Pagination / posts
   -------------------------------------------------------------------------- */

.lw-pagination {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	margin-top: 3rem;
}

.lw-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 0.7rem;
	border: 1px solid var(--lw-line);
	border-radius: var(--lw-radius-sm);
	color: var(--lw-text-muted);
	font-weight: 500;
	font-size: 0.93rem;
	background: #fff;
}

.lw-pagination .page-numbers:hover,
.lw-pagination .page-numbers.current {
	background: var(--lw-primary);
	border-color: var(--lw-primary);
	color: #fff;
}

.lw-post-card__thumb {
	margin: calc(clamp(1.5rem, 1.2rem + 0.9vw, 2rem) * -1) calc(clamp(1.5rem, 1.2rem + 0.9vw, 2rem) * -1) 1.35rem;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: var(--lw-primary-tint);
}

.lw-post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--lw-ease);
}

.lw-card:hover .lw-post-card__thumb img { transform: scale(1.04); }

.lw-meta {
	font-size: 0.84rem;
	color: var(--lw-text-subtle);
	margin-bottom: 0.6rem;
}

/* 404 */
.lw-404 { text-align: center; padding-block: clamp(4rem, 3rem + 5vw, 7rem); }
.lw-404__code {
	font-size: clamp(4.5rem, 3rem + 8vw, 9rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -0.05em;
	background: linear-gradient(100deg, var(--lw-primary), #8b7bf0);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */

.lw-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.6s var(--lw-ease), transform 0.6s var(--lw-ease);
}

.lw-reveal.is-in { opacity: 1; transform: none; }

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

	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.lw-reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Print
   -------------------------------------------------------------------------- */

@media print {
	.lw-header, .lw-footer, .lw-cta, .lw-top, .lw-burger { display: none !important; }
	body { color: #000; }
	.lw-section { padding-block: 1rem; }
}
