:root {
	--color-navy: #0a1633;
	--color-ink: #071126;
	--color-blue: #3366ff;
	--color-blue-dark: #214bd1;
	--color-sky: #38aeea;
	--color-bg: #f5f7fb;
	--color-white: #ffffff;
	--color-text: #243047;
	--color-muted: #61708a;
	--color-border: #dce4f2;
	--shadow-soft: 0 20px 60px rgba(10, 22, 51, 0.12);
	--shadow-card: 0 18px 44px rgba(10, 22, 51, 0.08);
	--radius: 8px;
	--container: 1160px;
}

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

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

body {
	margin: 0;
	color: var(--color-text);
	background: var(--color-white);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--color-blue);
}

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

.section {
	padding: 80px 0;
}

.skip-link,
.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;
}

.skip-link:focus {
	top: 12px;
	left: 12px;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	color: var(--color-white);
	background: var(--color-navy);
}

.top-bar {
	display: none;
	color: rgba(255, 255, 255, 0.76);
	background: var(--color-ink);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 18px;
	font-size: 0.86rem;
}

.top-bar-inner div {
	display: flex;
	align-items: center;
	gap: 10px;
}

.top-bar a {
	color: var(--color-white);
	font-weight: 700;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(220, 228, 242, 0.9);
	backdrop-filter: blur(16px);
	box-shadow: 0 10px 30px rgba(10, 22, 51, 0.04);
}

body.admin-bar .site-header {
	top: 32px;
}

body {
	padding-top: 76px;
}

body.admin-bar {
	padding-top: 76px;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 18px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: max-content;
	color: var(--color-navy);
	font-weight: 800;
	flex: 0 0 auto;
	max-width: 220px;
	overflow: hidden;
}

.custom-logo-brand {
	min-width: 0;
}

.custom-logo-link img {
	display: block;
	width: auto;
	max-height: 54px;
}

.brand-image {
	display: block;
	width: auto;
	height: 52px;
	object-fit: contain;
}

.brand-logo {
	display: block;
	width: 220px;
	max-width: 220px;
	height: 48px;
	object-fit: contain;
	object-position: left center;
}

.brand-mark {
	position: relative;
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 42px;
	border: 4px solid var(--color-navy);
	border-top: 0;
	border-radius: 7px 7px 4px 4px;
	background: linear-gradient(135deg, #45b5ec, #2f8ed8);
	box-shadow: 0 10px 24px rgba(56, 174, 234, 0.26);
}

.brand-mark::before {
	content: "";
	position: absolute;
	top: -22px;
	width: 28px;
	height: 28px;
	border: 8px solid var(--color-sky);
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	background: var(--color-white);
}

.brand-lock {
	position: relative;
	z-index: 1;
	width: 10px;
	height: 16px;
	background: var(--color-navy);
	border-radius: 8px 8px 3px 3px;
}

.brand-lock::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 9px;
	width: 2px;
	height: 8px;
	background: var(--color-navy);
	box-shadow: 0 -5px 0 4px var(--color-navy);
}

.brand-text {
	color: var(--color-navy);
	font-size: 1.45rem;
	letter-spacing: 0;
	line-height: 1;
}

.brand-text span {
	color: var(--color-sky);
}

.primary-navigation {
	display: none;
	position: absolute;
	top: 76px;
	left: 0;
	right: 0;
	padding: 16px;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-soft);
}

.primary-navigation.is-open {
	display: block;
}

.menu,
.footer-menu {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu a {
	display: block;
	padding: 10px 12px;
	color: var(--color-navy);
	font-weight: 700;
	border-radius: var(--radius);
}

.menu a:hover {
	background: var(--color-bg);
	color: var(--color-blue);
}

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	cursor: pointer;
}

.nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--color-navy);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.phone-link {
	display: none;
	color: var(--color-navy);
	font-weight: 800;
	white-space: nowrap;
}

.header-actions .button {
	display: none;
}

.language-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 9px 12px;
	color: var(--color-navy);
	font-weight: 900;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	cursor: pointer;
}

.language-toggle:hover {
	color: var(--color-blue);
	border-color: rgba(51, 102, 255, 0.35);
}

.remote-help-button {
	display: none;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 12px 18px;
	color: var(--color-navy);
	font-weight: 800;
	line-height: 1.1;
	border: 1px solid transparent;
	border-radius: var(--radius);
	transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
	transform: translateY(-1px);
}

.button-primary {
	color: var(--color-white);
	background: linear-gradient(135deg, var(--color-blue), #2453e8);
	box-shadow: 0 14px 28px rgba(51, 102, 255, 0.22);
}

.button-primary:hover {
	color: var(--color-white);
	background: var(--color-blue-dark);
}

.button-secondary {
	color: var(--color-navy);
	background: var(--color-white);
	border-color: var(--color-border);
}

.button-light {
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.26);
}

.button-light:hover {
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.18);
}

.hero {
	position: relative;
	overflow: hidden;
	padding-top: 82px;
	padding-bottom: 88px;
	background:
		linear-gradient(145deg, rgba(7, 17, 38, 0.98), rgba(10, 22, 51, 0.92) 52%, rgba(16, 36, 78, 0.94)),
		radial-gradient(circle at 84% 20%, rgba(51, 102, 255, 0.34), transparent 32%);
	color: var(--color-white);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 86%);
}

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

.hero-grid {
	display: grid;
	gap: 44px;
	align-items: center;
}

.hero-content {
	max-width: 660px;
}

.eyebrow {
	margin: 0 0 14px;
	color: var(--color-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero .eyebrow,
.contact-cta .eyebrow {
	color: #86d7ff;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--color-navy);
	line-height: 1.12;
	letter-spacing: 0;
}

.hero h1 {
	max-width: 780px;
	color: var(--color-white);
	font-size: clamp(2.35rem, 7vw, 4.7rem);
}

.hero-lead {
	max-width: 620px;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.22rem;
}

.hero-proof {
	display: grid;
	gap: 10px;
	margin-top: 28px;
}

.hero-proof div {
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	min-width: 0;
}

.hero-proof strong,
.hero-proof span {
	display: block;
}

.hero-proof strong {
	color: var(--color-white);
	font-size: 0.98rem;
	white-space: nowrap;
}

.hero-proof span {
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
	white-space: nowrap;
}

.hero-actions,
.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.trust-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 28px 0 0;
	list-style: none;
}

.trust-list li {
	padding: 8px 12px;
	color: rgba(255, 255, 255, 0.86);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
}

.hero-panel {
	position: relative;
	min-height: 360px;
	padding: 24px;
	overflow: visible;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
		rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--radius);
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.panel-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.86rem;
}

.panel-topline strong {
	color: #8cf2c0;
}

.status-card,
.metric-row > div {
	background: var(--color-white);
	border: 1px solid rgba(220, 228, 242, 0.7);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.status-card-main {
	padding: 22px;
	color: var(--color-text);
}

.status-card strong {
	display: block;
	margin: 8px 0;
	color: var(--color-navy);
	font-size: 1.2rem;
}

.status-card p,
.metric-row p {
	margin: 0;
	color: var(--color-muted);
}

.status-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #20c997;
	border-radius: 999px;
	box-shadow: 0 0 0 8px rgba(32, 201, 151, 0.14);
	animation: it-pulse-dot 2.2s ease-in-out infinite;
}

.metric-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 16px;
}

.metric-row > div {
	padding: 18px;
}

.metric-row span {
	display: block;
	color: var(--color-blue);
	font-size: 1.55rem;
	font-weight: 900;
}

.ticket-list {
	display: grid;
	gap: 10px;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.78);
}

.ticket-list div {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
}

.ticket-list span {
	width: 9px;
	height: 9px;
	background: #8cf2c0;
	border-radius: 999px;
	box-shadow: 0 0 0 0 rgba(140, 242, 192, 0.4);
	animation: it-pulse-small 2.2s ease-in-out infinite;
}

@keyframes it-pulse-dot {
	0%,
	100% {
		box-shadow: 0 0 0 8px rgba(32, 201, 151, 0.14);
		transform: scale(1);
	}

	50% {
		box-shadow: 0 0 0 14px rgba(32, 201, 151, 0.04);
		transform: scale(1.08);
	}
}

@keyframes it-pulse-small {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(140, 242, 192, 0.35);
		transform: scale(1);
	}

	50% {
		box-shadow: 0 0 0 7px rgba(140, 242, 192, 0.05);
		transform: scale(1.12);
	}
}

.tech-lines {
	display: grid;
	gap: 12px;
	margin-top: 24px;
}

.tech-lines span {
	display: block;
	height: 12px;
	background: rgba(255, 255, 255, 0.18);
	border-radius: 999px;
}

.tech-lines span:nth-child(2) {
	width: 72%;
}

.tech-lines span:nth-child(3) {
	width: 86%;
}

.tech-lines span:nth-child(4) {
	width: 58%;
}

.activity-widget {
	display: grid;
	gap: 12px;
	margin-top: 22px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
}

.activity-bars {
	display: flex;
	align-items: end;
	gap: 8px;
	height: 54px;
	padding: 8px 0;
}

.activity-bars span {
	display: block;
	width: 100%;
	height: 24px;
	background: linear-gradient(180deg, #8cf2c0, var(--color-blue));
	border-radius: 999px 999px 4px 4px;
	opacity: 0.82;
	animation: it-activity-bars 1.8s ease-in-out infinite;
}

.activity-bars span:nth-child(2) {
	animation-delay: 0.15s;
}

.activity-bars span:nth-child(3) {
	animation-delay: 0.3s;
}

.activity-bars span:nth-child(4) {
	animation-delay: 0.45s;
}

.activity-bars span:nth-child(5) {
	animation-delay: 0.6s;
}

.activity-bars span:nth-child(6) {
	animation-delay: 0.75s;
}

.activity-row {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.92rem;
}

.activity-row span {
	width: 8px;
	height: 8px;
	background: #8cf2c0;
	border-radius: 999px;
	animation: it-pulse-small 2.2s ease-in-out infinite;
}

.activity-row strong {
	font-weight: 800;
}

@keyframes it-activity-bars {
	0%,
	100% {
		height: 18px;
		opacity: 0.62;
	}

	50% {
		height: 48px;
		opacity: 1;
	}
}

.quick-contact {
	position: relative;
	z-index: 2;
	margin-top: -34px;
}

.line-icon {
	position: relative;
	display: inline-block;
	width: 42px;
	height: 42px;
	color: var(--color-blue);
}

.icon-monitor {
	border: 4px solid currentColor;
	border-radius: 4px;
}

.icon-monitor::before {
	content: "";
	position: absolute;
	left: 15px;
	bottom: -13px;
	width: 4px;
	height: 12px;
	background: currentColor;
}

.icon-monitor::after {
	content: "";
	position: absolute;
	left: 7px;
	bottom: -17px;
	width: 22px;
	height: 4px;
	background: currentColor;
	border-radius: 999px;
}

.icon-wifi::before,
.icon-wifi::after {
	content: "";
	position: absolute;
	left: 50%;
	border: 4px solid currentColor;
	border-bottom: 0;
	border-radius: 40px 40px 0 0;
	transform: translateX(-50%);
}

.icon-wifi::before {
	top: 6px;
	width: 38px;
	height: 22px;
}

.icon-wifi::after {
	top: 18px;
	width: 22px;
	height: 13px;
}

.icon-wifi {
	border-bottom: 8px solid currentColor;
	border-radius: 999px;
}

.icon-server {
	border: 4px solid currentColor;
	border-radius: 5px;
	box-shadow: inset 0 12px 0 rgba(51, 102, 255, 0.12), inset 0 -12px 0 rgba(51, 102, 255, 0.12);
}

.icon-server::before,
.icon-server::after {
	content: "";
	position: absolute;
	right: 6px;
	width: 6px;
	height: 6px;
	background: currentColor;
	border-radius: 999px;
}

.icon-server::before {
	top: 7px;
}

.icon-server::after {
	bottom: 7px;
}

.icon-shield {
	background: currentColor;
	clip-path: polygon(50% 0, 88% 14%, 82% 66%, 50% 100%, 18% 66%, 12% 14%);
}

.icon-shield::after {
	content: "";
	position: absolute;
	left: 15px;
	top: 14px;
	width: 14px;
	height: 8px;
	border-left: 4px solid var(--color-white);
	border-bottom: 4px solid var(--color-white);
	transform: rotate(-45deg);
}

.icon-headset {
	border: 4px solid currentColor;
	border-bottom-color: transparent;
	border-radius: 24px 24px 8px 8px;
}

.icon-headset::before,
.icon-headset::after {
	content: "";
	position: absolute;
	top: 19px;
	width: 8px;
	height: 14px;
	background: currentColor;
	border-radius: 3px;
}

.icon-headset::before {
	left: -2px;
}

.icon-headset::after {
	right: -2px;
}

.icon-cloud {
	border-bottom: 4px solid currentColor;
	border-radius: 999px;
}

.icon-cloud::before,
.icon-cloud::after {
	content: "";
	position: absolute;
	background: currentColor;
	border-radius: 999px;
}

.icon-cloud::before {
	left: 4px;
	top: 16px;
	width: 34px;
	height: 18px;
}

.icon-cloud::after {
	left: 12px;
	top: 8px;
	width: 20px;
	height: 20px;
}

.icon-backup {
	border: 4px solid currentColor;
	border-radius: 999px;
}

.icon-backup::before {
	content: "";
	position: absolute;
	left: 10px;
	top: 8px;
	width: 16px;
	height: 16px;
	border-left: 4px solid currentColor;
	border-bottom: 4px solid currentColor;
	transform: rotate(-45deg);
}

.quick-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	overflow: hidden;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.quick-contact-grid > div {
	padding: 22px;
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border);
	min-width: 0;
}

.quick-contact-grid > div:last-child {
	border-bottom: 0;
}

.quick-contact-grid span {
	display: block;
	margin-bottom: 4px;
	color: var(--color-muted);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
}

.quick-contact-grid a,
.quick-contact-grid strong {
	color: var(--color-navy);
	font-size: clamp(0.92rem, 1.12vw, 1.05rem);
	font-weight: 900;
	line-height: 1.25;
	white-space: nowrap;
}

.services {
	background:
		linear-gradient(180deg, var(--color-white), var(--color-bg));
}

.audience {
	background: var(--color-white);
}

.audience-grid,
.price-grid,
.blog-grid {
	display: grid;
	gap: 18px;
}

.audience-card {
	position: relative;
	overflow: hidden;
	padding: 34px;
	color: rgba(255, 255, 255, 0.78);
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.25), transparent 48%),
		var(--color-navy);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.audience-card h2,
.audience-card .eyebrow {
	color: var(--color-white);
}

.audience-card.light {
	color: var(--color-text);
	background:
		linear-gradient(135deg, rgba(56, 174, 234, 0.2), transparent 42%),
		var(--color-bg);
	border: 1px solid var(--color-border);
}

.audience-card.light h2 {
	color: var(--color-navy);
}

.audience-card.light .eyebrow {
	color: var(--color-blue);
}

.owner-section {
	background: var(--color-white);
}

.owner-grid {
	display: grid;
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
	max-width: 1040px;
}

.owner-grid h2 {
	font-size: clamp(2rem, 5vw, 3rem);
}

.owner-grid p {
	color: var(--color-muted);
}

.owner-profile {
	justify-self: center;
	display: grid;
	gap: 16px;
	padding: 24px;
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.1), transparent 44%),
		var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.owner-profile img {
	width: 100%;
	max-width: 300px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: 0 18px 44px rgba(10, 22, 51, 0.14);
}

.owner-profile strong,
.owner-profile span {
	display: block;
}

.owner-profile strong {
	color: var(--color-navy);
	font-size: 1.35rem;
}

.owner-profile span {
	color: var(--color-muted);
}

.prices {
	background:
		linear-gradient(180deg, var(--color-bg), var(--color-white));
}

.price-card,
.blog-card {
	position: relative;
	padding: 28px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.price-card span,
.blog-card span {
	display: inline-flex;
	margin-bottom: 12px;
	color: var(--color-blue);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.price-card strong {
	display: block;
	margin: 18px 0 8px;
	color: var(--color-navy);
	font-size: 2rem;
	line-height: 1;
}

.price-card.featured {
	color: rgba(255, 255, 255, 0.78);
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.28), transparent 48%),
		var(--color-navy);
	border-color: rgba(255, 255, 255, 0.12);
}

.price-card.featured h3,
.price-card.featured strong {
	color: var(--color-white);
}

.price-card p,
.blog-card p {
	color: var(--color-muted);
}

.price-card.featured p {
	color: rgba(255, 255, 255, 0.72);
}

.detailed-prices .price-card h2 {
	font-size: 1.2rem;
}

.price-note {
	display: grid;
	gap: 12px;
	margin-top: 24px;
	padding: 24px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.price-note strong {
	color: var(--color-navy);
	font-size: 1.15rem;
}

.price-note p {
	margin: 0;
	color: var(--color-muted);
}

.shop-preview {
	background: var(--color-white);
}

.shop-box {
	display: grid;
	gap: 24px;
	align-items: center;
	padding: 34px;
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.1), transparent 42%),
		var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.shop-box h2 {
	font-size: clamp(2rem, 5vw, 3rem);
}

.blog-preview {
	background: linear-gradient(180deg, var(--color-white), var(--color-bg));
}

.blog-card h3 {
	font-size: 1.34rem;
}

.blog-card a {
	display: inline-flex;
	margin-top: 12px;
	color: var(--color-blue);
	font-weight: 900;
}

.article-detail {
	max-width: 860px;
	padding: 34px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.article-detail h1 {
	font-size: clamp(2rem, 5vw, 3.2rem);
}

.article-detail p {
	color: var(--color-muted);
}

.article-lead {
	color: var(--color-text);
	font-size: 1.15rem;
}

.back-link {
	display: inline-flex;
	margin-bottom: 22px;
	color: var(--color-blue);
	font-weight: 900;
}

.article-sources {
	padding-top: 22px;
	margin-top: 28px;
	border-top: 1px solid var(--color-border);
}

.article-sources strong {
	display: block;
	margin-bottom: 10px;
	color: var(--color-navy);
}

.article-sources ul {
	padding-left: 18px;
	margin: 0;
}

.article-sources a {
	color: var(--color-blue);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.process {
	background: var(--color-bg);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.cta-box h2,
.page-header h1 {
	font-size: clamp(2rem, 5vw, 3rem);
}

.section-heading p:last-child,
.split p,
.cta-box p {
	color: var(--color-muted);
}

.card-grid {
	display: grid;
	gap: 18px;
}

.service-card,
.step,
.post-card {
	position: relative;
	padding: 26px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.step:hover {
	transform: translateY(-3px);
	border-color: rgba(51, 102, 255, 0.34);
	box-shadow: 0 24px 58px rgba(10, 22, 51, 0.12);
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--color-blue), var(--color-sky));
	border-radius: var(--radius) var(--radius) 0 0;
}

.service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin-bottom: 18px;
	color: var(--color-blue);
	background: #edf3ff;
	border-radius: var(--radius);
}

.service-icon .line-icon {
	transform: scale(0.78);
}

.service-card h3,
.step h3,
.post-card h2 {
	font-size: 1.2rem;
}

.service-card p,
.step p,
.post-card p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.service-card ul {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 18px 0 0;
	color: var(--color-text);
	font-size: 0.94rem;
	list-style: none;
}

.service-card li {
	position: relative;
	padding-left: 20px;
}

.service-card li::before,
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.7em;
	width: 8px;
	height: 8px;
	background: var(--color-blue);
	border-radius: 999px;
}

.split {
	display: grid;
	gap: 34px;
	align-items: start;
}

.feature-list {
	display: grid;
	gap: 14px;
}

.feature-list > div {
	padding: 20px;
	background: linear-gradient(180deg, var(--color-white), var(--color-bg));
	border-left: 4px solid var(--color-blue);
	border-radius: var(--radius);
	box-shadow: 0 14px 34px rgba(10, 22, 51, 0.06);
}

.feature-list strong {
	display: block;
	color: var(--color-navy);
	font-size: 1.08rem;
}

.numbers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 28px;
}

.numbers div {
	padding: 16px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.numbers strong,
.numbers span {
	display: block;
}

.numbers strong {
	color: var(--color-blue);
	font-size: 2rem;
	line-height: 1;
}

.numbers span {
	margin-top: 8px;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.35;
}

.detail-band {
	background: linear-gradient(180deg, var(--color-white), #eef3fb);
}

.detail-grid {
	display: grid;
	gap: 18px;
}

.detail-card {
	padding: 30px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.detail-card.dark {
	color: rgba(255, 255, 255, 0.78);
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.18), transparent 46%),
		var(--color-navy);
	border-color: rgba(255, 255, 255, 0.12);
}

.detail-card.dark h2,
.detail-card.dark .eyebrow {
	color: var(--color-white);
}

.detail-card h2 {
	font-size: clamp(2rem, 5vw, 3rem);
}

.detail-card h3 {
	margin-bottom: 18px;
}

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

.check-list li {
	position: relative;
	padding-left: 22px;
	color: var(--color-text);
}

.steps {
	display: grid;
	gap: 18px;
}

.step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	color: var(--color-blue);
	font-weight: 900;
	background: #edf3ff;
	border-radius: var(--radius);
}

.contact-cta {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.22), transparent 38%),
		var(--color-navy);
	color: var(--color-white);
}

.contact-cta::after {
	content: "";
	position: absolute;
	right: -120px;
	bottom: -160px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
}

.contact-cta .container {
	position: relative;
	z-index: 1;
}

.cta-box {
	display: grid;
	gap: 24px;
	align-items: center;
}

.cta-box h2 {
	color: var(--color-white);
}

.cta-box p {
	color: rgba(255, 255, 255, 0.75);
}

.site-footer {
	padding: 56px 0 24px;
	color: rgba(255, 255, 255, 0.76);
	background: #0d1b34;
}

.footer-grid {
	display: grid;
	gap: 30px;
}

.footer-brand {
	margin-bottom: 14px;
	color: var(--color-white);
}

.footer-logo {
	height: 50px;
	padding: 8px 10px;
	background: var(--color-white);
	border-radius: var(--radius);
}

.footer-logo-image {
	height: 54px;
	max-width: 230px;
	padding: 0;
	background: transparent;
	border-radius: 0;
}

.site-footer .brand-text {
	color: var(--color-white);
}

.site-footer h2 {
	margin-bottom: 14px;
	color: var(--color-white);
	font-size: 1rem;
}

.footer-list,
.footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-list li,
.footer-menu li {
	margin-bottom: 8px;
}

.footer-menu a,
.footer-list a {
	color: rgba(255, 255, 255, 0.84);
}

.site-footer a:hover {
	color: #86d7ff;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1fr;
	gap: 6px;
	padding-top: 24px;
	margin-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.86);
}

.scroll-up {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 120;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	color: var(--color-white);
	font-size: 1.35rem;
	font-weight: 900;
	background: var(--color-blue);
	border: 0;
	border-radius: var(--radius);
	box-shadow: 0 16px 36px rgba(51, 102, 255, 0.3);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.scroll-up.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-up:hover {
	background: var(--color-blue-dark);
}

.content-wrap {
	max-width: 850px;
}

.page-header {
	margin-bottom: 28px;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content a {
	color: var(--color-blue);
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.page-featured-image {
	margin-bottom: 24px;
	border-radius: var(--radius);
}

.post-list {
	display: grid;
	gap: 18px;
}

.nav-links {
	display: flex;
	gap: 12px;
	margin-top: 24px;
}

@media (min-width: 700px) {
	.container {
		width: min(100% - 48px, var(--container));
	}

	.card-grid,
	.steps,
	.audience-grid,
	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero-proof {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.quick-contact-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.quick-contact-grid > div {
		border-right: 1px solid var(--color-border);
	}

	.quick-contact-grid > div:last-child {
		border-right: 0;
	}

	.quick-contact-grid > div:last-child:nth-child(odd) {
		grid-column: auto;
	}

	.quick-contact-grid > div:last-child {
		border-right: 0;
	}

	.owner-grid {
		grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
	}

	.footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.footer-bottom {
		grid-template-columns: 1fr auto 1fr;
		align-items: center;
	}

	.footer-bottom p:nth-child(2) {
		text-align: center;
	}

	.footer-bottom p:last-child {
		text-align: right;
	}
}

@media (min-width: 980px) {
	.section {
		padding: 104px 0;
	}

	.top-bar {
		display: block;
	}

	.header-inner {
		min-height: 84px;
	}

	body {
		padding-top: 84px;
	}

	body.admin-bar {
		padding-top: 116px;
	}

	.nav-toggle {
		display: none;
	}

	.primary-navigation {
		position: static;
		display: block;
		padding: 0;
		background: transparent;
		border: 0;
		box-shadow: none;
	}

	.menu {
		flex-direction: row;
		align-items: center;
		gap: 2px;
	}

	.menu a {
		padding: 10px 11px;
		font-size: 0.95rem;
	}

	.header-actions {
		display: flex;
	}

	.phone-link,
	.header-actions .button {
		display: inline-flex;
	}

	.remote-help-button {
		display: inline-flex;
	}

	.hero {
		padding-top: 112px;
		padding-bottom: 122px;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
		column-gap: clamp(42px, 6vw, 88px);
	}

	.quick-contact-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.quick-contact-grid > div {
		border-bottom: 0;
		border-right: 1px solid var(--color-border);
	}

	.quick-contact-grid > div:last-child {
		border-right: 0;
	}

	.owner-grid {
		grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
	}

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

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

	.shop-box {
		grid-template-columns: 1fr auto;
	}

	.split,
	.cta-box,
	.detail-grid {
		grid-template-columns: 0.95fr 1.05fr;
	}

	.cta-actions {
		justify-content: flex-end;
		margin-top: 0;
	}
}

@media (max-width: 420px) {
	body.admin-bar .site-header {
		top: 0;
	}

	body,
	body.admin-bar {
		padding-top: 76px;
	}

	.brand-text {
		font-size: 1.08rem;
	}

	.brand-mark {
		width: 38px;
		height: 34px;
	}

	.button {
		width: 100%;
	}

	.metric-row {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 699px) {
	.site-footer {
		text-align: left;
		padding: 38px 0 20px;
	}

	.footer-grid {
		justify-items: start;
		gap: 26px;
	}

	.footer-grid > div {
		width: 100%;
		max-width: 300px;
	}

	.footer-brand {
		justify-content: flex-start;
		margin-bottom: 10px;
	}

	.footer-text-logo {
		font-size: 1.35rem;
	}

	.site-footer h2 {
		margin-bottom: 10px;
		font-size: 0.95rem;
	}

	.site-footer p,
	.footer-list li,
	.footer-menu li {
		margin-bottom: 7px;
		font-size: 0.98rem;
		line-height: 1.5;
	}

	.footer-list,
	.footer-menu {
		text-align: left;
	}

	.social-links {
		justify-content: flex-start;
		gap: 9px;
		margin-top: 10px;
	}

	.social-link {
		width: 34px;
		height: 34px;
		font-size: 0.9rem;
	}

	.footer-bottom {
		justify-items: start;
		text-align: left;
		gap: 8px;
		padding-top: 20px;
		margin-top: 28px;
	}

	.footer-bottom p,
	.footer-bottom a {
		font-size: 0.98rem;
		line-height: 1.4;
	}

	.scroll-up {
		right: 14px;
		bottom: 14px;
		width: 42px;
		height: 42px;
		font-size: 1.2rem;
	}
}

@media (min-width: 700px) and (max-width: 1120px) {
	.quick-contact-grid > div {
		padding: 18px;
	}

	.quick-contact-grid span {
		font-size: 0.72rem;
	}

	.quick-contact-grid a,
	.quick-contact-grid strong {
		font-size: 0.9rem;
		line-height: 1.25;
		white-space: normal;
		overflow-wrap: break-word;
	}
}

/* Final layout refinements. */
.owner-profile {
	align-self: center;
	justify-self: center;
	width: min(100%, 356px);
}

.footer-logo-image {
	height: 58px;
	max-width: 245px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	filter: drop-shadow(0 0 10px rgba(56, 174, 234, 0.24));
}

.footer-social-column {
	order: 4;
}

.social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 900;
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 0.74);
	border-radius: 999px;
	transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-link:hover {
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--color-white);
	transform: translateY(-1px);
}

.social-twitter {
	font-family: Georgia, serif;
}

.social-instagram {
	font-size: 1.28rem;
}

.social-youtube {
	font-size: 0.85rem;
}

.article-nav {
	display: grid;
	gap: 14px;
	padding-top: 24px;
	margin-top: 28px;
	border-top: 1px solid var(--color-border);
}

.article-nav-link {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4px 12px;
	align-items: center;
	padding: 16px;
	color: var(--color-navy);
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.article-nav-link span {
	grid-row: 1 / span 2;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--color-white);
	background: var(--color-blue);
	border-radius: 999px;
}

.article-nav-link small {
	color: var(--color-muted);
	font-weight: 800;
	text-transform: uppercase;
}

.article-nav-link strong {
	line-height: 1.3;
}

@media (min-width: 700px) {
	.footer-grid {
		grid-template-columns: 1.3fr 0.75fr 1fr 1fr;
	}

	.footer-social-column {
		order: 0;
	}

	.article-nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.article-nav-link.next {
		text-align: right;
	}

	.article-nav-link.next span {
		grid-column: 2;
		grid-row: 1 / span 2;
	}
}

/* Replace dashboard bars with a quieter network scan. */
.activity-widget {
	padding: 14px 16px;
	min-height: 58px;
	overflow: hidden;
}

.activity-bars,
.activity-row {
	display: none;
}

.network-scan {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 30px;
}

.network-scan::before {
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(140, 242, 192, 0.6), transparent);
	transform: translateY(-50%);
}

.network-scan::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 38%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
	transform: translateY(-50%);
	animation: it-network-scan 2.4s ease-in-out infinite;
}

.network-scan span {
	position: relative;
	z-index: 1;
	width: 9px;
	height: 9px;
	background: #8cf2c0;
	border: 2px solid rgba(255, 255, 255, 0.76);
	border-radius: 999px;
	box-shadow: 0 0 0 5px rgba(140, 242, 192, 0.08);
	animation: it-node-pulse 2.4s ease-in-out infinite;
}

.network-scan span:nth-child(2) {
	animation-delay: 0.18s;
}

.network-scan span:nth-child(3) {
	animation-delay: 0.36s;
}

.network-scan span:nth-child(4) {
	animation-delay: 0.54s;
}

.network-scan span:nth-child(5) {
	animation-delay: 0.72s;
}

@keyframes it-network-scan {
	0% {
		left: -40%;
		opacity: 0;
	}

	20%,
	80% {
		opacity: 1;
	}

	100% {
		left: 100%;
		opacity: 0;
	}
}

@keyframes it-node-pulse {
	0%,
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 5px rgba(140, 242, 192, 0.08);
	}

	50% {
		transform: scale(1.18);
		box-shadow: 0 0 0 8px rgba(140, 242, 192, 0.03);
	}
}

@media (min-width: 700px) {
	.footer-grid {
		grid-template-columns: 1.15fr 0.85fr 1.15fr 1fr;
	}

	.footer-grid > div:nth-child(3) {
		padding-left: clamp(20px, 4vw, 72px);
	}
}

/* Binary data flow variant. */
.network-scan {
	display: none;
}

.binary-stream {
	position: relative;
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	gap: 6px 10px;
	min-height: 42px;
	align-items: center;
	padding: 3px 0;
	overflow: hidden;
}

.binary-stream::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(140, 242, 192, 0.16), transparent);
	animation: it-binary-sweep 2.8s ease-in-out infinite;
}

.binary-stream span {
	position: relative;
	z-index: 1;
	color: rgba(255, 255, 255, 0.62);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	text-align: center;
	text-shadow: 0 0 10px rgba(140, 242, 192, 0.22);
	animation: it-binary-flow 2.4s ease-in-out infinite;
}

.binary-stream span:nth-child(2n) {
	color: rgba(140, 242, 192, 0.78);
	animation-delay: 0.16s;
}

.binary-stream span:nth-child(3n) {
	animation-delay: 0.32s;
}

.binary-stream span:nth-child(5n) {
	animation-delay: 0.48s;
}

@keyframes it-binary-sweep {
	0% {
		transform: translateX(-80%);
		opacity: 0;
	}

	35%,
	70% {
		opacity: 1;
	}

	100% {
		transform: translateX(80%);
		opacity: 0;
	}
}

@keyframes it-binary-flow {
	0%,
	100% {
		opacity: 0.38;
		transform: translateY(0);
	}

	50% {
		opacity: 1;
		transform: translateY(-1px);
	}
}

/* Node-based binary data flow. */
.binary-stream,
.network-scan {
	display: none;
}

.data-flow {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	padding: 8px 4px;
	overflow: hidden;
}

.data-flow::before {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, rgba(140, 242, 192, 0.08), rgba(140, 242, 192, 0.52), rgba(140, 242, 192, 0.08));
	transform: translateY(-50%);
}

.flow-node {
	position: relative;
	z-index: 2;
	width: 10px;
	height: 10px;
	background: #8cf2c0;
	border: 2px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	box-shadow: 0 0 0 5px rgba(140, 242, 192, 0.08);
	animation: it-node-pulse 2.4s ease-in-out infinite;
}

.flow-bit {
	position: absolute;
	z-index: 3;
	top: 50%;
	color: rgba(255, 255, 255, 0.78);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
	text-shadow: 0 0 8px rgba(140, 242, 192, 0.36);
	transform: translateY(-50%);
	animation: it-flow-bit 3.2s linear infinite;
}

.bit-one { animation-delay: 0s; }
.bit-two { animation-delay: -0.45s; }
.bit-three { animation-delay: -0.9s; }
.bit-four { animation-delay: -1.35s; }
.bit-five { animation-delay: -1.8s; }
.bit-six { animation-delay: -2.25s; }
.bit-seven { animation-delay: -2.7s; }

@keyframes it-flow-bit {
	0% {
		left: 7%;
		opacity: 0;
	}

	12%,
	82% {
		opacity: 1;
	}

	100% {
		left: 91%;
		opacity: 0;
	}
}

/* Mobile overflow and footer polish. */
html,
body {
	overflow-x: hidden;
}

.footer-text-logo {
	display: inline-block;
	color: var(--color-white);
	font-size: 1.65rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0;
}

.footer-text-logo span {
	color: var(--color-sky);
}

.footer-social-column {
	justify-self: start;
	order: initial;
}

.owner-profile {
	text-align: center;
}

.owner-profile img {
	margin-inline: auto;
}

.hero-proof strong,
.hero-proof span,
.quick-contact-grid a,
.quick-contact-grid strong {
	white-space: normal;
	overflow-wrap: anywhere;
}

.numbers {
	grid-template-columns: 1fr;
}

.numbers div,
.feature-list > div,
.service-card,
.price-card,
.blog-card,
.step {
	min-width: 0;
}

.feature-list p,
.numbers span,
.service-card p,
.service-card li,
.quick-contact-grid strong {
	overflow-wrap: break-word;
}

@media (min-width: 700px) {
	.footer-social-column {
		justify-self: end;
		text-align: right;
	}

	.social-links {
		justify-content: flex-end;
	}

	.hero-proof strong,
	.hero-proof span,
	.quick-contact-grid a,
	.quick-contact-grid strong {
		white-space: nowrap;
		overflow-wrap: normal;
	}

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

/* Content upgrades: customer groups, common problems, remote help and detailed prices. */
.section-action {
	margin-top: 24px;
}

.problem-section {
	background: linear-gradient(180deg, var(--color-white), var(--color-bg));
}

.problem-grid {
	display: grid;
	gap: 18px;
}

.problem-grid article {
	position: relative;
	padding: 26px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	min-width: 0;
}

.problem-grid .line-icon {
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	color: var(--color-blue);
	transform: scale(0.82);
	transform-origin: left center;
}

.problem-grid h3 {
	font-size: 1.15rem;
}

.problem-grid p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.remote-help {
	color: rgba(255, 255, 255, 0.76);
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.2), transparent 44%),
		var(--color-navy);
}

.remote-help-grid {
	display: grid;
	gap: 26px;
	align-items: center;
}

.remote-help h2,
.remote-help .eyebrow {
	color: var(--color-white);
}

.remote-help p {
	color: rgba(255, 255, 255, 0.76);
}

.remote-help-panel {
	display: grid;
	gap: 12px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.remote-help-panel > div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius);
}

.remote-help-panel strong {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	color: var(--color-blue);
	background: var(--color-white);
	border-radius: var(--radius);
}

.remote-help-panel span {
	color: rgba(255, 255, 255, 0.86);
	font-weight: 800;
}

.price-section {
	margin-top: 42px;
}

.price-section:first-of-type {
	margin-top: 0;
}

.price-section-heading {
	max-width: 760px;
	margin-bottom: 22px;
}

.price-section-heading h2 {
	font-size: clamp(1.75rem, 4vw, 2.6rem);
}

.travel-costs {
	display: grid;
	gap: 24px;
	align-items: center;
	margin-top: 42px;
	padding: 30px;
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.09), transparent 46%),
		var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.travel-costs p {
	color: var(--color-muted);
}

.travel-list {
	display: grid;
	gap: 10px;
}

.travel-list div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 16px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.travel-list strong {
	color: var(--color-navy);
}

.travel-list span {
	color: var(--color-blue);
	font-weight: 900;
}

.page-prices .price-card h3 {
	font-size: 1.25rem;
}

@media (min-width: 700px) {
	.problem-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.remote-help-grid,
	.travel-costs {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
	}
}

@media (min-width: 980px) {
	.audience-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

/* Refinements after content review. */
.maintenance-grid {
	display: grid;
	gap: 12px;
}

.maintenance-grid div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2px 12px;
	align-items: start;
	padding: 14px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.maintenance-grid span {
	grid-row: 1 / span 2;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	color: var(--color-blue);
	font-weight: 900;
	background: var(--color-white);
	border: 1px solid rgba(51, 102, 255, 0.2);
	border-radius: var(--radius);
}

.maintenance-grid strong {
	color: var(--color-navy);
	font-size: 1rem;
}

.maintenance-grid p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.94rem;
	line-height: 1.45;
}

.price-window-grid {
	display: grid;
	gap: 22px;
}

.price-window {
	padding: clamp(24px, 4vw, 34px);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.price-window.featured {
	color: rgba(255, 255, 255, 0.78);
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.24), transparent 48%),
		var(--color-navy);
	border-color: rgba(255, 255, 255, 0.12);
}

.price-window.featured h2,
.price-window.featured h3,
.price-window.featured .price-window-head .eyebrow,
.price-window.featured .price-lines strong {
	color: var(--color-white);
}

.price-window.featured .price-window-head p,
.price-window.featured .price-lines p {
	color: rgba(255, 255, 255, 0.72);
}

.price-window-head {
	margin-bottom: 22px;
}

.price-window-head h2 {
	font-size: clamp(1.7rem, 4vw, 2.35rem);
}

.price-window-head p {
	color: var(--color-muted);
}

.price-lines {
	display: grid;
	gap: 12px;
}

.price-lines div {
	padding: 16px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.price-window.featured .price-lines div {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.12);
}

.price-lines span {
	display: block;
	margin-bottom: 6px;
	color: var(--color-blue);
	font-size: 0.76rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.price-lines strong {
	display: block;
	color: var(--color-navy);
	font-size: 1.65rem;
	line-height: 1.1;
}

.price-lines p {
	margin: 8px 0 0;
	color: var(--color-muted);
}

.travel-window {
	display: grid;
	gap: 22px;
	margin-top: 22px;
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.09), transparent 46%),
		var(--color-white);
}

.price-note.compact {
	grid-template-columns: 1fr;
}

.blog-card {
	overflow: hidden;
	padding-top: 0;
}

.blog-visual {
	position: relative;
	height: 168px;
	margin: -28px -28px 24px;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(51, 102, 255, 0.18), transparent 46%),
		var(--color-navy);
}

.blog-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 28px 28px;
	opacity: 0.5;
}

.blog-visual span {
	position: absolute;
	display: block;
	border-radius: var(--radius);
}

.visual-passkeys span:nth-child(1) {
	left: 28px;
	top: 44px;
	width: 70px;
	height: 52px;
	border: 4px solid #8cf2c0;
}

.visual-passkeys span:nth-child(2) {
	left: 48px;
	top: 24px;
	width: 30px;
	height: 28px;
	border: 4px solid #38aeea;
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
}

.visual-passkeys span:nth-child(3) {
	right: 28px;
	bottom: 34px;
	width: 96px;
	height: 12px;
	background: linear-gradient(90deg, #8cf2c0, var(--color-blue));
	box-shadow: 0 -24px 0 rgba(255, 255, 255, 0.16), 0 -48px 0 rgba(255, 255, 255, 0.1);
}

.visual-backup span:nth-child(1) {
	left: 30px;
	bottom: 36px;
	width: 90px;
	height: 58px;
	border: 4px solid #38aeea;
}

.visual-backup span:nth-child(2) {
	left: 52px;
	top: 40px;
	width: 50px;
	height: 50px;
	border: 5px solid #8cf2c0;
	border-left-color: transparent;
	border-radius: 999px;
}

.visual-backup span:nth-child(3) {
	right: 28px;
	top: 42px;
	width: 86px;
	height: 86px;
	background: radial-gradient(circle, rgba(140, 242, 192, 0.95), rgba(51, 102, 255, 0.1) 58%, transparent 59%);
}

.visual-windows span:nth-child(1) {
	left: 34px;
	top: 38px;
	width: 98px;
	height: 74px;
	background:
		linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0.7) 52%, transparent 52%),
		linear-gradient(transparent 48%, rgba(255, 255, 255, 0.7) 48%, rgba(255, 255, 255, 0.7) 52%, transparent 52%),
		linear-gradient(135deg, #38aeea, var(--color-blue));
}

.visual-windows span:nth-child(2) {
	right: 32px;
	top: 44px;
	width: 96px;
	height: 10px;
	background: rgba(255, 255, 255, 0.58);
	box-shadow: 0 24px 0 rgba(255, 255, 255, 0.28), 0 48px 0 rgba(140, 242, 192, 0.5);
}

.visual-windows span:nth-child(3) {
	right: 44px;
	bottom: 30px;
	width: 44px;
	height: 44px;
	border: 4px solid #8cf2c0;
	border-radius: 999px;
}

.visual-homeoffice span:nth-child(1) {
	left: 30px;
	top: 42px;
	width: 84px;
	height: 56px;
	border: 4px solid #38aeea;
}

.visual-homeoffice span:nth-child(2) {
	left: 56px;
	bottom: 32px;
	width: 34px;
	height: 4px;
	background: #38aeea;
	box-shadow: 0 -10px 0 #38aeea;
}

.visual-homeoffice span:nth-child(3) {
	right: 32px;
	top: 38px;
	width: 92px;
	height: 92px;
	background:
		radial-gradient(circle at 50% 50%, #8cf2c0 0 8px, transparent 9px),
		radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.85) 0 5px, transparent 6px),
		radial-gradient(circle at 80% 32%, rgba(255, 255, 255, 0.85) 0 5px, transparent 6px),
		radial-gradient(circle at 68% 78%, rgba(255, 255, 255, 0.85) 0 5px, transparent 6px);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
}

.article-visual {
	height: 260px;
	margin: 0 0 28px;
	border-radius: var(--radius);
}

.article-detail {
	max-width: 900px;
}

.editable-page-content {
	background: linear-gradient(180deg, var(--color-white), var(--color-bg));
}

.editable-page-content .entry-content {
	display: grid;
	gap: 28px;
}

.editable-page-content .editor-hero,
.editable-page-content .editor-remote {
	padding: clamp(34px, 6vw, 72px);
	color: var(--color-white);
	background:
		linear-gradient(145deg, rgba(7, 17, 38, 0.98), rgba(10, 22, 51, 0.94)),
		radial-gradient(circle at 84% 20%, rgba(51, 102, 255, 0.34), transparent 32%);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.editable-page-content .editor-hero h1,
.editable-page-content .editor-hero h2,
.editable-page-content .editor-hero h3,
.editable-page-content .editor-remote h1,
.editable-page-content .editor-remote h2,
.editable-page-content .editor-remote h3,
.editable-page-content .editor-hero .eyebrow,
.editable-page-content .editor-remote .eyebrow {
	color: var(--color-white);
}

.editable-page-content .editor-hero p,
.editable-page-content .editor-remote p {
	color: rgba(255, 255, 255, 0.78);
}

.editable-page-content .editor-section {
	padding: clamp(44px, 7vw, 82px) 0;
}

.editable-page-content .editor-proof .wp-block-column,
.editable-page-content .editor-card-row .wp-block-column {
	min-width: 0;
	padding: 22px;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
}

.editable-page-content .editor-proof .wp-block-column {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.14);
	box-shadow: none;
}

.editable-page-content .editor-proof .wp-block-column p {
	color: rgba(255, 255, 255, 0.68);
}

.editable-page-content .wp-block-button__link {
	border-radius: var(--radius);
	font-weight: 800;
}

@media (min-width: 700px) {
	.maintenance-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.price-window-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.travel-window {
		grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
		align-items: center;
	}
}

@media (min-width: 980px) {
	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
