:root {
	color-scheme: dark;
	--bg: #050816;
	--bg-soft: #0b1221;
	--panel: #0d1628;
	--panel-2: #111c31;
	--line: rgba(132, 160, 255, 0.16);
	--text: #edf4ff;
	--muted: #9cb0d0;
	--accent: #2f8cff;
	--accent-2: #70b1ff;
	--radius: 18px;
	--shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
}

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

ul,
ol {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

.topbar__brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.brand-logo {
	display: block;
	width: min(240px, 45vw);
	height: auto;
}

.footer-logo {
	display: block;
	width: min(210px, 70vw);
	height: auto;
	margin-bottom: 14px;
}

.landing {
	padding: 0 clamp(32px, 4vw, 64px);
}

.section {
	padding: 28px 0;
	border-bottom: 1px solid rgba(132, 160, 255, 0.09);
}

.hero {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	padding-top: 0;
}

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 0;
}

.topbar__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	color: var(--muted);
	font-size: 0.92rem;
}

.topbar__nav a:hover {
	color: var(--text);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 18px;
	border-radius: 12px;
	border: 1px solid var(--line);
	font-weight: 600;
}

.button--primary {
	border-color: transparent;
	background: linear-gradient(135deg, var(--accent), #176dff);
	color: white;
	box-shadow: var(--shadow);
}

.button--secondary {
	background: rgba(255, 255, 255, 0.02);
	color: var(--text);
}

.hero__content,
.section--split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 28px;
	align-items: center;
}

.hero__content {
	flex: 1;
}

.eyebrow {
	display: inline-flex;
	margin: 0 0 16px;
	padding: 8px 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--accent-2);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hero h1,
.section-header h2,
.cta h2,
.footer h3 {
	margin: 0;
}

.hero h1 {
	max-width: 11ch;
	font-size: clamp(2.8rem, 5vw, 5.2rem);
	line-height: 0.95;
}

.lead {
	max-width: 560px;
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 1.06rem;
	line-height: 1.7;
}

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

.hero__highlights,
.check-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
	color: var(--muted);
}

.hero__highlights li,
.check-list li {
	padding-left: 14px;
	position: relative;
}

.hero__highlights li::before,
.check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-2);
}

.panel,
.card,
.icon-card,
.solution-step,
.tech-chip,
.faq-item {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.lucide {
	width: 22px;
	height: 22px;
	stroke-width: 1.8;
	flex: 0 0 auto;
}

.panel {
	min-height: 320px;
	padding: 16px;
	box-shadow: var(--shadow);
}

.panel--large {
	min-height: 420px;
}

.panel--large {
	overflow: hidden;
}

.hero__visual--plain {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
	min-height: 0;
}

.dashboard-image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 388px;
	object-fit: contain;
	object-position: center right;
}

.dashboard-image--hero {
	min-height: 0;
	height: auto;
	width: min(120%, 860px);
	max-width: none;
	justify-self: end;
}

.visual-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 288px;
	border-radius: calc(var(--radius) - 4px);
	border: 1px dashed rgba(148, 179, 255, 0.3);
	color: var(--muted);
	text-align: center;
}

.section-header {
	display: grid;
	gap: 10px;
	margin-bottom: 20px;
}

.section-header--center {
	text-align: center;
}

.section-header h2,
.cta h2 {
	font-size: clamp(1.7rem, 2.5vw, 2.6rem);
}

.section-header p,
.cta p,
.footer p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
}

.problem-section {
	padding-top: 36px;
}

.problem-shell {
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid rgba(132, 160, 255, 0.14);
	border-radius: calc(var(--radius) + 6px);
	background:
		radial-gradient(circle at top left, rgba(47, 140, 255, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(7, 14, 30, 0.96), rgba(8, 15, 31, 0.88));
	box-shadow: var(--shadow);
}

.problem-header {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 28px;
	align-items: start;
	margin-bottom: 18px;
}

.problem-heading {
	display: grid;
	gap: 10px;
}

.problem-heading h2 {
	margin: 0;
	width: 100%;
	max-width: none;
	font-size: clamp(2rem, 3.2vw, 3.55rem);
	line-height: 1.02;
}

.problem-heading p {
	margin: 0;
	color: var(--muted);
	line-height: 1.7;
	font-size: 1rem;
}

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

.problem-card {
	display: grid;
	grid-template-columns: 52px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	padding: 20px;
	min-height: 160px;
	border: 1px solid rgba(132, 160, 255, 0.1);
	border-radius: 22px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.problem-card__icon {
	display: inline-grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(47, 140, 255, 0.14);
	color: var(--accent);
}

.problem-card__icon .lucide {
	width: 24px;
	height: 24px;
	stroke-width: 1.9;
}

.problem-card h3 {
	margin: 4px 0 10px;
	font-size: 1.05rem;
}

.problem-card p {
	margin: 0;
	color: var(--muted);
	line-height: 1.55;
}

.services-section__header {
	margin-bottom: 24px;
}

.benefits-section__header {
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 28px;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.benefit-card {
	display: grid;
	gap: 12px;
	min-height: 300px;
	padding: 18px 18px 16px;
	border: 1px solid rgba(132, 160, 255, 0.14);
	border-radius: calc(var(--radius) + 4px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at top, rgba(47, 140, 255, 0.06), transparent 42%);
	box-shadow: var(--shadow);
	justify-items: start;
}

.benefit-card__icon {
	display: inline-grid;
	place-items: center;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1px solid rgba(47, 140, 255, 0.18);
	background: rgba(47, 140, 255, 0.08);
	color: var(--accent);
}

.benefit-card__icon .lucide {
	width: 30px;
	height: 30px;
}

.benefit-card h3 {
	margin: 4px 0 0;
	max-width: 14ch;
	font-size: clamp(1.25rem, 1.38vw, 1.65rem);
	line-height: 1.12;
}

.benefit-card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.benefit-card__list {
	display: grid;
	gap: 8px;
	margin-top: auto;
	color: var(--text);
}

.benefit-card__list li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.3;
}

.benefit-card__list .lucide {
	width: 16px;
	height: 16px;
	color: var(--accent);
	flex: 0 0 auto;
}

.benefits-banner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
	gap: 20px;
	align-items: center;
	margin-top: 18px;
	padding: 16px 18px;
	min-height: 112px;
	border: 1px solid rgba(132, 160, 255, 0.14);
	border-radius: calc(var(--radius) + 4px);
	background:
		linear-gradient(135deg, rgba(47, 140, 255, 0.12), rgba(255, 255, 255, 0.03)),
		radial-gradient(circle at left center, rgba(47, 140, 255, 0.08), transparent 34%);
	box-shadow: var(--shadow);
}

.benefits-banner__copy {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 16px;
	align-items: center;
}

.benefits-banner__icon {
	display: inline-grid;
	place-items: center;
	width: 68px;
	height: 68px;
	border-radius: 50%;
	border: 1px solid rgba(47, 140, 255, 0.18);
	background: rgba(47, 140, 255, 0.08);
	color: var(--accent);
}

.benefits-banner__icon .lucide {
	width: 30px;
	height: 30px;
}

.benefits-banner__copy h3 {
	margin: 0 0 8px;
	font-size: clamp(1.08rem, 1.25vw, 1.45rem);
	line-height: 1.1;
}

.benefits-banner__copy p {
	margin: 0;
	max-width: 36ch;
	color: var(--muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.benefits-banner__chart {
	display: grid;
	place-items: end center;
	min-height: 100px;
	padding: 6px 4px 0 0;
}

.benefits-banner__chart svg {
	display: block;
	width: min(100%, 380px);
	height: auto;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.service-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(160px, 0.76fr);
	gap: 12px;
	min-height: 250px;
	padding: 12px;
	border: 1px solid rgba(132, 160, 255, 0.14);
	border-radius: calc(var(--radius) + 4px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
		radial-gradient(circle at top right, rgba(47, 140, 255, 0.08), transparent 38%);
	box-shadow: var(--shadow);
	overflow: hidden;
	align-items: stretch;
}

.service-card--reverse .service-card__copy {
	order: 1;
}

.service-card--reverse .service-card__visual {
	order: 2;
}

.service-card__copy {
	display: grid;
	grid-template-rows: auto 1fr auto;
	gap: 10px;
	padding: 6px 4px 6px 6px;
}

.service-card__icon {
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(47, 140, 255, 0.12);
	color: var(--accent);
	box-shadow: inset 0 0 0 1px rgba(112, 177, 255, 0.12);
}

.service-card__icon .lucide {
	width: 22px;
	height: 22px;
	stroke-width: 1.9;
}

.service-card__content {
	display: grid;
	align-content: start;
	gap: 10px;
}

.service-card__content h3 {
	margin: 0;
	font-size: clamp(1.12rem, 1.2vw, 1.4rem);
	line-height: 1.15;
}

.service-card__content p {
	margin: 0;
	max-width: 24ch;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.service-card__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	color: var(--accent);
	font-weight: 600;
}

.service-card__link .lucide {
	width: 18px;
	height: 18px;
}

.service-card__visual {
	display: grid;
	place-items: center;
	min-height: 100%;
	padding: 4px;
	background: transparent;
}

.service-card__visual img {
	display: block;
	width: min(100%, 255px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.34));
}

.icon-row,
.card-grid,
.tech-grid,
.faq-grid {
	display: grid;
	gap: 14px;
}

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

.icon-card,
.solution-step {
	gap: 12px;
	align-content: center;
}

.icon-card__icon,
.card__icon,
.solution-step__icon,
.timeline__icon,
.footer-contact__icon,
.card__title-icon {
	display: inline-grid;
	place-items: center;
	color: var(--accent-2);
}

.card--centered {
	display: grid;
	gap: 14px;
	justify-items: center;
	align-content: center;
	text-align: center;
}

.card--centered h3 {
	margin: 0;
}

.card__title-icon {
	margin-right: 10px;
	vertical-align: -0.18em;
}
.icon-row--wrapped {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-card,
.solution-step,
.tech-chip,
.faq-item {
	display: grid;
	place-items: center;
	min-height: 88px;
	padding: 16px;
	text-align: center;
	color: var(--text);
}

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

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

.card {
	min-height: 140px;
	padding: 18px;
}

.card h3 {
	margin: 0 0 12px;
}

.card ul {
	display: grid;
	gap: 8px;
	color: var(--muted);
}

.card--tall {
	min-height: 220px;
}

.process-section__header {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 28px;
}

.process-eyebrow {
	display: inline-flex;
	justify-self: center;
	margin: 0;
}

.process-steps {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin-top: 6px;
}

.process-steps::before {
	content: "";
	position: absolute;
	left: 5%;
	right: 5%;
	top: 46px;
	height: 1px;
	background-image: linear-gradient(to right, rgba(47, 140, 255, 0.05) 0 3px, transparent 3px 8px);
	background-size: 8px 1px;
	background-repeat: repeat-x;
	opacity: 0.95;
}

.process-step {
	position: relative;
	display: grid;
	justify-items: center;
	gap: 14px;
	padding: 0 8px;
	text-align: center;
}

.process-step__number {
	display: inline-grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(47, 140, 255, 0.42);
	background: rgba(8, 16, 34, 0.92);
	box-shadow: inset 0 0 0 1px rgba(47, 140, 255, 0.08);
	color: var(--text);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.04em;
	z-index: 1;
}

.process-step__icon {
	display: inline-grid;
	place-items: center;
	color: var(--accent-2);
}

.process-step__icon .lucide {
	width: 22px;
	height: 22px;
	stroke-width: 2;
}

.process-step__body {
	display: grid;
	gap: 8px;
	align-content: start;
	min-height: 118px;
}

.process-step__body h3 {
	margin: 0;
	font-size: clamp(0.98rem, 1.1vw, 1.2rem);
	line-height: 1.15;
}

.process-step__body p {
	margin: 0;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.process-banner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	max-width: 860px;
	margin: 20px auto 0;
	padding: 18px 20px;
	border: 1px solid rgba(132, 160, 255, 0.14);
	border-radius: calc(var(--radius) + 4px);
	background: linear-gradient(135deg, rgba(47, 140, 255, 0.08), rgba(255, 255, 255, 0.03));
	box-shadow: var(--shadow);
}

.process-banner__icon {
	display: inline-grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: 1px solid rgba(47, 140, 255, 0.16);
	background: rgba(47, 140, 255, 0.08);
	color: var(--accent);
}

.process-banner__icon .lucide {
	width: 26px;
	height: 26px;
}

.process-banner h3 {
	margin: 0 0 6px;
	font-size: clamp(1.1rem, 1.3vw, 1.45rem);
	line-height: 1.15;
}

.process-banner p {
	margin: 0;
	color: var(--muted);
	line-height: 1.55;
}

.solution-path {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.solution-step {
	min-height: 94px;
}

.timeline {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.timeline li {
	display: grid;
	gap: 10px;
	justify-items: center;
	align-content: center;
	min-height: 94px;
	padding: 18px;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.02);
	color: var(--text);
	text-align: center;
}

.timeline li span:last-child {
	line-height: 1.4;
}

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

.tech-chip {
	min-height: 70px;
	padding: 12px;
}

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

.faq-item {
	display: grid;
	gap: 0;
	padding: 0;
	overflow: hidden;
	text-align: left;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px;
	min-height: 72px;
	list-style: none;
	cursor: pointer;
	font-weight: 600;
	color: var(--text);
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-toggle {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	color: var(--accent-2);
	transition: transform 180ms ease;
}

.faq-toggle .lucide {
	width: 20px;
	height: 20px;
}

.faq-item[open] .faq-toggle {
	transform: rotate(45deg);
}

.faq-answer {
	padding: 0 18px 18px;
	color: var(--muted);
	line-height: 1.7;
}

.faq-answer p {
	margin: 0;
}

.cta {
	padding: 0;
}

.cta__content {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 24px;
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: calc(var(--radius) + 4px);
	background: linear-gradient(135deg, rgba(47, 140, 255, 0.16), rgba(255, 255, 255, 0.03));
}

.cta__copy {
	display: grid;
	gap: 12px;
	align-content: start;
}

.contact-form {
	display: grid;
	gap: 16px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.contact-form label {
	display: grid;
	gap: 8px;
	text-align: left;
	font-size: 0.92rem;
	color: var(--text);
}

.contact-form span {
	color: var(--muted);
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(5, 8, 22, 0.55);
	color: var(--text);
	font: inherit;
	outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: rgba(156, 176, 208, 0.72);
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: rgba(112, 177, 255, 0.75);
	box-shadow: 0 0 0 3px rgba(47, 140, 255, 0.14);
}

.contact-form__message {
	display: grid;
	gap: 8px;
}

.contact-form__actions {
	display: flex;
	justify-content: flex-start;
}

.footer {
	display: grid;
	grid-template-columns: minmax(240px, 1.1fr) minmax(0, 1fr);
	gap: 28px;
	border-bottom: 0;
}

.footer__columns {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.footer__columns div {
	display: grid;
	gap: 10px;
	align-content: start;
}

.footer__columns a,
.footer__columns span {
	color: var(--muted);
}

.footer__columns a,
.footer__columns span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.footer__brand {
	display: grid;
	align-content: start;
}

@media (max-width: 960px) {
	.brand-logo {
		width: min(220px, 62vw);
	}

	.footer-logo {
		width: min(190px, 70vw);
	}
}

@media (max-width: 640px) {
	.brand-logo {
		width: min(190px, 72vw);
	}

	.footer-logo {
		width: min(170px, 76vw);
	}

	.topbar {
		align-items: center;
		gap: 12px;
	}

	.topbar__brand {
		justify-content: center;
		width: 100%;
	}

	.topbar__nav {
		justify-content: flex-start;
		width: calc(100vw - 32px);
		max-width: 100%;
		padding: 4px 2px 8px;
		gap: 20px;
		overflow-x: auto;
		flex-wrap: nowrap;
		white-space: nowrap;
		font-size: 0.88rem;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.topbar__nav::-webkit-scrollbar {
		display: none;
	}
}

@media (max-width: 1280px) {
	.benefits-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.benefits-banner {
		grid-template-columns: 1fr;
	}

	.card-grid--six,
	.icon-row,
	.solution-path,
	.timeline,
	.tech-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

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

	.process-steps::before {
		top: 44px;
	}

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

@media (max-width: 960px) {
	.problem-header {
		grid-template-columns: 1fr;
	}

	.benefit-card {
		min-height: 0;
	}

	.benefit-card h3 {
		max-width: none;
	}

	.service-card,
	.service-card--reverse {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 10px;
	}

	.service-card--reverse .service-card__copy,
	.service-card--reverse .service-card__visual {
		order: initial;
	}

	.service-card__visual,
	.service-card--reverse .service-card__visual {
		border: 0;
		padding: 12px 4px 4px;
	}

	.service-card__content p {
		max-width: none;
	}

	.problem-heading h2 {
		max-width: none;
	}

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

	.process-steps::before {
		display: none;
	}

	.process-step__body {
		min-height: 0;
	}

	.process-banner {
		grid-template-columns: 1fr;
		justify-items: start;
	}

	.hero__content,
	.section--split,
	.footer,
	.cta__content {
		grid-template-columns: 1fr;
		display: grid;
	}

	.topbar {
		flex-direction: column;
		align-items: flex-start;
	}

	.topbar__nav {
		justify-content: flex-start;
	}

	.card-grid--four,
	.card-grid--six,
	.problem-grid,
	.benefits-grid,
	.process-steps,
	.services-grid,
	.icon-row,
	.solution-path,
	.timeline,
	.tech-grid,
	.faq-grid,
	.footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.landing {
		padding: 16px;
	}

	.card-grid--four,
	.card-grid--six,
	.problem-grid,
	.benefits-grid,
	.process-steps,
	.services-grid,
	.icon-row,
	.solution-path,
	.timeline,
	.tech-grid,
	.faq-grid,
	.footer__columns {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		max-width: none;
	}

	.cta__content {
		padding: 22px;
	}

	.dashboard-image--hero {
		width: 100%;
		max-width: 100%;
		justify-self: center;
	}

	.service-card__visual img {
		width: min(100%, 300px);
		max-width: 100%;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}
}
