.lang-switch-wrap {
	background: var(--secondary);
	border-bottom: 1px solid var(--border);
}

.lang-switch {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: var(--space-sm) 0;
	font-size: .95rem;
}

#boost-terminal-light .lang-switch a {
	font-weight: 900;
	text-decoration: underline;
}

@media (max-width: 900px) {}

.hero-section {
	background-size: cover;
	background-position: center;
	padding: var(--space-4xl) 0;
	position: relative;
	overflow: hidden;
	min-height: 72vh;
	display: flex;
	align-items: center;
}

.hero-section::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 980px;
	margin: 0 auto;
}

.hero-title {
	color: white;
}

.hero-subtitle {
	font-size: 1.15rem;
	max-width: 840px;
	margin: 0 auto var(--space-xl) auto;
}

.hero-trust-banner {
	display: inline-flex;
	align-items: center;
	gap: var(--space-lg);
	backdrop-filter: blur(12px);
	border-radius: var(--radius-lg);
	padding: var(--space-md) var(--space-xl);
	margin-bottom: var(--space-xl);
	font-size: .9rem;
}

.hero-trust-banner .trust-number {
	font-family: var(--font-mono);
	font-weight: 900;
	font-size: 1.6rem;
	color: white;
	line-height: 1;
}

.hero-trust-banner .trust-divider {
	opacity: .35;
	font-size: 1.3rem;
	font-weight: 200;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-md);
}

.motion-orb {
	position: absolute;
	inset: auto;
	width: 420px;
	height: 420px;
	border-radius: 999px;
	filter: blur(10px);
	opacity: .65;
	pointer-events: none;
	transform: translateZ(0);
}

.wp-prose {
	max-width: 900px;
	margin: 0 auto;
}

.wp-prose h3 {
	margin-top: var(--space-xl);
}

.wp-prose ul, .wp-prose ol {
	padding-left: 1.25rem;
	margin: 0 0 var(--space-lg) 0;
}

.wp-prose li {
	margin: .25rem 0;
}

.wp-prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 var(--space-lg) 0;
}

.wp-prose th, .wp-prose td {
	border: 1px solid var(--border);
	padding: .65rem .75rem;
	vertical-align: top;
}

.wp-prose th {
	background: var(--muted);
	text-align: left;
}

.wp-prose code {
	font-family: var(--font-mono);
	font-size: .9em;
}

@media (max-width: 768px) {}

#boost-terminal-light .btn-icon {
	width: 18px;
	height: 18px;
	vertical-align: middle;
	margin-right: 4px;
}

#boost-terminal-light .cta-contact-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: var(--space-2xl);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-md);
}

.footer-links a {
	display: inline-block;
	padding: .15rem 0;
}

.footer-fineprint {
	color: var(--muted-foreground);
	font-size: .95rem;
}

.footer-legal {
	font-family: var(--font-mono);
	font-size: .85rem;
	color: var(--muted-foreground);
	margin-top: var(--space-md);
}

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-links {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.hero-trust-banner {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.motion-orb {
		display: none;
	}
	
	.hero-section {
		min-height: 64vh;
	}
}

@media print {}