:root {
	--lh-primary: #0057d9;
	--lh-primary-bright: #0066ff;
	--lh-text: #0b1220;
	--lh-muted: #4b5563;
	--lh-surface: #f6f8fb;
	--lh-white: #ffffff;
	--lh-border: #e5e7eb;
	--lh-shadow: 0 24px 60px rgba(11, 18, 32, 0.08);
	--lh-radius: 24px;
	--lh-radius-sm: 18px;
	--lh-container: 1200px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--lh-text);
	background:
		radial-gradient(circle at top right, rgba(0, 102, 255, 0.08), transparent 30%),
		linear-gradient(180deg, #ffffff 0%, #ffffff 45%, #f9fbff 100%);
	line-height: 1.6;
}

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

a {
	color: var(--lh-primary);
	text-decoration: none;
}

a:hover,
a:focus-visible {
	color: var(--lh-primary-bright);
}

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

.container {
	width: min(calc(100% - 2rem), var(--lh-container));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: 88px;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 0.9rem;
	color: var(--lh-text);
	flex: 0 1 auto;
	min-width: 0;
}

.site-branding__mark {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: linear-gradient(180deg, var(--lh-primary-bright), var(--lh-primary));
	color: var(--lh-white);
	font-size: 1.75rem;
	font-weight: 700;
	box-shadow: 0 16px 30px rgba(0, 87, 217, 0.24);
}

.site-branding__text {
	display: grid;
	gap: 0.15rem;
}

.site-branding__text strong {
	font-size: 1.5rem;
	line-height: 1;
}

.site-branding__text small {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lh-muted);
}

.primary-nav ul,
.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.primary-nav {
	grid-column: 1 / -1;
	display: none;
}

.primary-nav.is-open {
	display: block;
	padding: 0.75rem 0 1rem;
}

.primary-nav ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(229, 231, 235, 0.9);
	border-radius: 20px;
	box-shadow: 0 20px 45px rgba(11, 18, 32, 0.08);
}

.primary-nav li {
	width: 100%;
}

.primary-nav a {
	display: block;
	width: 100%;
	padding: 0.8rem 0.2rem;
	color: var(--lh-text);
	font-weight: 500;
	font-size: 1rem;
}

.primary-nav .current-menu-item > a,
.primary-nav a:hover,
.primary-nav a:focus-visible {
	color: var(--lh-primary);
}

.button,
button,
input[type="submit"],
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.45rem;
	border: 1px solid transparent;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--lh-primary), var(--lh-primary-bright));
	color: var(--lh-white);
	font-weight: 600;
	box-shadow: 0 18px 35px rgba(0, 87, 217, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
	color: var(--lh-white);
	transform: translateY(-1px);
	box-shadow: 0 22px 40px rgba(0, 87, 217, 0.24);
}

.header-cta {
	flex: 1 1 auto;
	width: auto;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}

.button-secondary {
	background: var(--lh-white);
	color: var(--lh-text);
	border-color: var(--lh-border);
	box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
	color: var(--lh-primary);
	box-shadow: 0 14px 28px rgba(11, 18, 32, 0.08);
}

.button-light {
	background: var(--lh-white);
	color: var(--lh-primary);
	box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
	color: var(--lh-primary-bright);
}

.nav-toggle {
	display: inline-flex;
	border: 1px solid var(--lh-border);
	background: var(--lh-white);
	border-radius: 14px;
	width: 52px;
	height: 52px;
	padding: 0;
	box-shadow: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
	color: var(--lh-text);
	flex: 0 0 auto;
	margin-left: auto;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2.5px;
	background: currentColor;
	border-radius: 999px;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	background: var(--lh-white);
	border-color: rgba(0, 87, 217, 0.2);
	color: var(--lh-primary);
	box-shadow: 0 12px 28px rgba(11, 18, 32, 0.08);
	transform: none;
}

.hero-section,
.content-section,
.cta-band {
	padding: 5.5rem 0;
}

.hero-grid,
.why-grid,
.cta-band__inner,
.footer-grid {
	display: grid;
	gap: 2.5rem;
}

.hero-grid {
	grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
	align-items: center;
}

.eyebrow {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--lh-primary);
}

.eyebrow--center,
.section-title {
	text-align: center;
}

.hero-copy h1,
.section-title,
.why-grid h2,
.cta-band h2,
.entry-title {
	margin: 0;
	line-height: 1.08;
}

.hero-copy h1 {
	font-size: clamp(2.8rem, 5vw, 4.8rem);
	max-width: 12ch;
}

.hero-text,
.section-text {
	font-size: 1.18rem;
	color: var(--lh-muted);
	max-width: 42rem;
}

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

.check-list {
	display: grid;
	gap: 0.9rem;
	margin-top: 2rem;
}

.check-list li {
	position: relative;
	padding-left: 2rem;
	font-size: 1.06rem;
	color: var(--lh-text);
}

.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35rem;
	width: 1.15rem;
	height: 1.15rem;
	border-radius: 999px;
	border: 2px solid var(--lh-primary);
	box-shadow: inset 0 0 0 3px var(--lh-white);
	background: var(--lh-primary);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.25rem;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2rem;
	margin-top: 2rem;
	color: var(--lh-muted);
	font-weight: 500;
}

.trust-list li {
	position: relative;
	padding-left: 1.35rem;
}

.trust-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45rem;
	width: 0.65rem;
	height: 0.65rem;
	border-radius: 999px;
	background: var(--lh-primary);
}

.hero-visual {
	position: relative;
	min-height: 420px;
}

.device {
	position: absolute;
	background: var(--lh-white);
	border: 1px solid rgba(229, 231, 235, 0.75);
	border-radius: 28px;
	box-shadow: var(--lh-shadow);
}

.device--laptop {
	inset: 1rem 0 2.5rem 2rem;
	padding: 1rem;
}

.device--phone {
	right: -1rem;
	bottom: 0;
	width: 180px;
	padding: 1.2rem 1rem;
	text-align: center;
}

.device__bar {
	height: 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, rgba(11, 18, 32, 0.12), rgba(11, 18, 32, 0.05));
	margin-bottom: 1rem;
}

.device__screen {
	min-height: 280px;
	border-radius: 18px;
	background:
		linear-gradient(180deg, rgba(0, 102, 255, 0.05), rgba(0, 87, 217, 0.02)),
		var(--lh-surface);
	display: grid;
	place-items: center;
}

.wp-mark {
	display: grid;
	place-items: center;
	width: 110px;
	height: 110px;
	border-radius: 999px;
	border: 4px solid var(--lh-primary);
	color: var(--lh-primary);
	font-size: 3.8rem;
	font-weight: 700;
}

.shield-mark {
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 1rem;
	border-radius: 20px;
	background: rgba(0, 87, 217, 0.08);
	color: var(--lh-primary);
}

.shield-mark svg,
.icon-badge svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}

.service-card,
.entry-card,
.value-item {
	background: var(--lh-white);
	border: 1px solid rgba(229, 231, 235, 0.82);
	border-radius: var(--lh-radius);
	box-shadow: 0 20px 50px rgba(11, 18, 32, 0.05);
}

.service-card {
	padding: 2rem;
}

.service-card h3,
.value-item h3 {
	margin: 0 0 0.75rem;
	font-size: 1.4rem;
}

.service-card p,
.value-item p,
.footer-brand p,
.device--phone p {
	color: var(--lh-muted);
}

.service-card a {
	display: inline-flex;
	margin-top: 1rem;
	font-weight: 600;
}

.content-section--muted {
	background: linear-gradient(180deg, rgba(246, 248, 251, 0.9), rgba(255, 255, 255, 0));
}

.why-grid {
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: start;
}

.value-stack {
	display: grid;
	gap: 1rem;
}

.value-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding: 1.4rem;
}

.icon-badge {
	display: grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 24px;
	background: rgba(0, 87, 217, 0.08);
	color: var(--lh-primary);
}

.icon-badge--small {
	width: 60px;
	height: 60px;
	border-radius: 18px;
}

.cta-band {
	background: linear-gradient(135deg, var(--lh-primary), var(--lh-primary-bright));
	color: var(--lh-white);
}

.cta-band__inner {
	grid-template-columns: 1fr auto;
	align-items: center;
}

.cta-band p,
.cta-band h2 {
	margin-top: 0;
	color: var(--lh-white);
}

.site-footer {
	padding: 4rem 0 2rem;
	background: var(--lh-white);
}

.footer-grid {
	grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
	align-items: start;
}

.site-branding--footer {
	margin-bottom: 1rem;
}

.site-footer h2 {
	margin: 0 0 1rem;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--lh-muted);
}

.footer-links {
	display: grid;
	gap: 0.8rem;
}

.footer-bottom {
	margin-top: 2.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--lh-border);
	color: var(--lh-muted);
	font-size: 0.95rem;
}

.content-section .prose {
	max-width: 860px;
}

.entry-card {
	padding: 2.5rem;
}

.entry-header {
	margin-bottom: 1.5rem;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content p,
.entry-content li,
.entry-content ol,
.entry-content ul {
	color: var(--lh-muted);
}

@media (max-width: 1100px) {
	.hero-grid,
	.why-grid,
	.footer-grid,
	.cards-grid,
	.cta-band__inner {
		grid-template-columns: 1fr;
	}

	.hero-visual {
		min-height: 360px;
	}

	.device--laptop {
		inset: 1rem 3rem 3rem 1rem;
	}

	.device--phone {
		right: 1rem;
	}

	.site-header__inner {
		gap: 1rem;
	}

	.site-branding__text strong {
		font-size: 1.3rem;
	}

	.header-cta {
		max-width: 320px;
		padding: 0.85rem 1rem;
		font-size: 0.92rem;
	}
}

@media (max-width: 1040px) {
	.site-header__inner {
		gap: 0.75rem;
	}

	.site-branding__text small {
		font-size: 0.72rem;
	}

	.header-cta {
		width: min(100%, 280px);
	}
}

@media (max-width: 700px) {
	.site-header__inner {
		gap: 0.5rem;
		min-height: 80px;
	}

	.site-branding {
		gap: 0.65rem;
	}

	.site-branding__mark {
		width: 44px;
		height: 44px;
		font-size: 1.45rem;
	}

	.site-branding__text strong {
		font-size: 1.05rem;
	}

	.site-branding__text small {
		font-size: 0.63rem;
		letter-spacing: 0.06em;
	}

	.header-cta {
		flex: 1 1 auto;
		max-width: 210px;
		margin-inline: 0;
		padding: 0.8rem 0.85rem;
		font-size: 0.84rem;
		border-radius: 12px;
	}

	.nav-toggle {
		width: 46px;
		height: 46px;
	}

	.hero-section,
	.content-section,
	.cta-band,
	.site-footer {
		padding: 4rem 0;
	}

	.hero-copy h1 {
		font-size: clamp(2.2rem, 10vw, 3.3rem);
	}

	.hero-text,
	.section-text {
		font-size: 1rem;
	}

	.hero-visual {
		min-height: 280px;
	}

	.device--laptop {
		inset: 0 1.5rem 2rem 0;
	}

	.device__screen {
		min-height: 180px;
	}

	.device--phone {
		width: 140px;
	}

	.wp-mark {
		width: 88px;
		height: 88px;
		font-size: 3rem;
	}

	.entry-card,
	.service-card {
		padding: 1.5rem;
	}
}
